📄 twofishunit.pas
字号:
{*******************************************************}
{ }
{ TwoFish算法 }
{ }
{ 版权所有(C) BieEncrypt安全实验室 2006 }
{ 版本:V1.0 }
{ 主页:http://www.bitencrypt.com }
{ 邮件:bitencrypt@163.com }
{ }
{*******************************************************}
unit TwoFishUnit;
interface
function TwoFishStrEncrypt(lpInStr:PChar;lpKey:PChar;lpOutStr:PChar):Boolean;stdcall;external 'TwoFish.dll';
function TwoFishStrDecrypt(lpInStr:PChar;lpKey:PChar;lpOutStr:PChar):Boolean;stdcall;external 'TwoFish.dll';
function TwoFishFileEncrypt(lpInFile:PChar;lpKey:PChar;lpOutFile:PChar):Boolean;stdcall;external 'TwoFish.dll';
function TwoFishFileDecrypt(lpInFile:PChar;lpKey:PChar;lpOutFile:PChar):Boolean;stdcall;external 'TwoFish.dll';
function GetVersion(lpVersion:PChar):Boolean;stdcall;external 'TwoFish.dll';
implementation
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -