⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.txt

📁 Rijndael algorithm修正了CBC下BUG的版本(有源代码)工作在:D5。作者:Sergey Kirichenko。
💻 TXT
字号:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
DELPHI Rijndael algorithm implementation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The implementation is based on an original code.
The CBC-mode bug fixed.
As the example of API usage is complemented by simple functions:

{encode string}
  function EnCryptString(const sMessage: string; sKeyMaterial: string): string;
{decode string}
  function DeCryptString(const sMessage: string; sKeyMaterial: string): string;
{expand KeyMaterial up to iLength digits}
  function ExpandKey(sKey: string; iLength: integer): string;
{randomize KeyMaterial - do not use it :)}
  function RandomKeyMaterial: string;
{encrypt string}
  function StoreCryptString(const sMessage: string; sKeyMaterial: string): string;
{decrypt string}
  function ReadCryptString(const sMessage: string; sKeyMaterial: string): string;

---------------------------------------------
Sergey Kirichenko
  e-mail: ksv@cheerful.com
  Home Page: http://rcolonel.tripod.com      
    

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -