?? readme.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 + -