?? rc6unit.pas
字號:
{*******************************************************}
{ }
{ RC6算法 }
{ }
{ 版權所有(C) BieEncrypt安全實驗室 2006 }
{ 版本:V1.0 }
{ 主頁:http://www.bitencrypt.com }
{ 郵件:bitencrypt@163.com }
{ }
{*******************************************************}
unit RC6Unit;
interface
function RC6StrEncrypt(lpInStr:PChar;lpKey:PChar;lpOutStr:PChar):Boolean;stdcall;external 'RC6.dll';
function RC6StrDecrypt(lpInStr:PChar;lpKey:PChar;lpOutStr:PChar):Boolean;stdcall;external 'RC6.dll';
function RC6FileEncrypt(lpInFile:PChar;lpKey:PChar;lpOutFile:PChar):Boolean;stdcall;external 'RC6.dll';
function RC6FileDecrypt(lpInFile:PChar;lpKey:PChar;lpOutFile:PChar):Boolean;stdcall;external 'RC6.dll';
function GetVersion(lpVersion:PChar):Boolean;stdcall;external 'RC6.dll';
implementation
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -