通過Sapphire Encrypt utility,您可以在您的移動通訊設備上加密和解密純文本內容。您可以用密碼密鑰進行加密,并在設備驅動器或者服務器上解密,反之亦然。
功能描述
需要培訓、定制、外包?
請聯系我們!:800018081
慧都專業技術團隊幫助您提高效率,節省成本,降低風險!
* 關于本產品的分類與介紹僅供參考,精準產品資料以介紹為準,如需購買請先行測試。
通過以下功能,Sapphire Encrypt Utility可以輕松得進行數據加密:
該操作是如此簡單的,您只需在您的程序中聲明相應的DLL函數,然后在您需要的地方調用即可。以下是一個VB.NET的示范程序,用于演示如何對純文本字符進行加密和解密。
- 使用的密碼密鑰對文本字符進行加密
- 使用的密碼密鑰對文本字符進行解密
- 使用的密碼密鑰對文件進行加密
- 使用的密碼密鑰對文件進行解密
該操作是如此簡單的,您只需在您的程序中聲明相應的DLL函數,然后在您需要的地方調用即可。以下是一個VB.NET的示范程序,用于演示如何對純文本字符進行加密和解密。
- 加密文本
Dim sEncrypted As Integer
Dim sNew As String
' Fill sNew to force the string variable to a sufficient size for the returned string
sNew = Space(1000)
sEncrypted = sEncryptText(txtOriginal.Text, sNew, txtPassword.Text, _
1234567890, True)
txtEncrypted.Text = StripString(sNew)
If sEncrypted = 0 Then
MsgBox("Encrypted")
Else
MsgBox("Problem")
End If - 解密文本
Dim sDecrypted As Integer
Dim sNew As String
' Fill sNew to force the string variable to a sufficient size for the returned string
sNew = Space(1000)
sDecrypted = sDecryptText(txtEncrypted.Text, sNew, txtPassword.Text, _
1234567890, True)
txtDecrypted.Text = StripString(sNew)
If sDecrypted = 0 Then
MsgBox("Decrypted")
Else
MsgBox("Problem")
End If