?? twofishunit.bas
字號:
Attribute VB_Name = "TwoFishUnit"
'{*******************************************************}
'{ }
'{ TwoFish算法 }
'{ }
'{ 版權所有(C) BieEncrypt安全實驗室 2006 }
'{ 版本:V1.0 }
'{ 主頁:http://www.bitencrypt.com }
'{ 郵件:bitencrypt@163.com }
'{ }
'{*******************************************************}
Public Declare Function TwoFishStrEncrypt Lib "TwoFish.dll" (ByVal lpInStr As String, ByVal lpKey As String, ByVal lpOutStr As String) As Boolean
Public Declare Function TwoFishStrDecrypt Lib "TwoFish.dll" (ByVal lpInStr As String, ByVal lpKey As String, ByVal lpOutStr As String) As Boolean
Public Declare Function TwoFishFileEncrypt Lib "TwoFish.dll" (ByVal lpInFile As String, ByVal lpKey As String, ByVal lpOutFile As String) As Boolean
Public Declare Function TwoFishFileDecrypt Lib "TwoFish.dll" (ByVal lpInFile As String, ByVal lpKey As String, ByVal lpOutFile As String) As Boolean
Public Declare Function GetVersion Lib "TwoFish.dll" (ByVal lpVersion As String) As Boolean
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -