Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(VB.NET UWP/WinRT) RSA Decrypt BinaryWhen something is RSA encrypted, the output is always equal in size to the RSA key. For example, if "Hello World" is encrypted with a 1024-bit RSA key, the output is 128 bytes (because 1024 bits / 8 bits per byte = 128 bytes). You can see that the size of the RSA key imposes a limit on how many bytes can be encrypted. Thus RSA encryption is for small amounts of data. A typical use for RSA encryption is to encrypt a bulk (symmetric) encryption key. In this example, we have a binary file containing the result of RSA encryption. The size of the file tells us the RSA key size. For example, if the file is exactly 256 bytes, we know that the RSA key required to decrypt must be a 2048-bit key.
' This example assumes the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim rsa As New Chilkat.Rsa Dim privKey As New Chilkat.PrivateKey Dim success As Boolean = privKey.LoadPemFile("myPrivateKey.pem") If (success <> True) Then Debug.WriteLine(privKey.LastErrorText) Exit Sub End If success = rsa.ImportPrivateKeyObj(privKey) If (success <> True) Then Debug.WriteLine(rsa.LastErrorText) Exit Sub End If ' Load the encrypted bytes. ' This will typically be a file that is 128, 256, etc. bytes in length. ' For example, maybe it is a file containing an encrypted passphrase... Dim bdEncrypted As New Chilkat.BinData success = bdEncrypted.LoadFile("qa_data/passphrase.enc") If (success <> True) Then Debug.WriteLine("Failed to load file.") Exit Sub End If ' In this case, we know that it was a string that was encrypted, ' so decryption should result in a string. ' To make things easy, we'll pass the RSA encrypted data as a Base64 string ' to the decryptor. rsa.EncodingMode = "base64" Dim passphrase As String = rsa.DecryptStringENC(bdEncrypted.GetEncoded("base64"),True) If (rsa.LastMethodSuccess <> True) Then Debug.WriteLine(rsa.LastErrorText) Exit Sub End If Debug.WriteLine("Decrypted passphrase: " & passphrase) |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.