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) Duplicating OpenSSL rsautl (creating RSA signatures)Demonstrates how to duplicate OpenSSL rsautil RSA signatures. The Chilkat RSA component's methods for creating RSA signatures (SignBytes, SignBytesENC, SignString, and SignStringENC) are very different from OpenSSL's rsautl command. First, we'll explain what Chilkat's signing methods do, and then what OpenSSL's rsautl does. New signing methods have been added to Chilkat RSA to duplicate OpenSSL rsautl: OpenSslSignBytes, OpenSslSignBytesENC, OpenSslSignString, and OpenSslSignStringENC.
Here's what Chilkat's RSA Sign* methods do:
OpenSSL rsautl is very different. Here's what it does:
' This example assumes the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim pkey As New Chilkat.PrivateKey ' Load the private key from an RSA PEM file: Dim success As Boolean = pkey.LoadPemFile("private.pem") If (success <> True) Then Debug.WriteLine(pkey.LastErrorText) Exit Sub End If Dim pkeyXml As String ' Get the private key in XML format: pkeyXml = pkey.GetXml() Dim rsa As New Chilkat.Rsa ' Import the private key into the RSA component: success = rsa.ImportPrivateKey(pkeyXml) If (success <> True) Then Debug.WriteLine(rsa.LastErrorText) Exit Sub End If ' This example will sign a string, and receive the signature ' in a hex-encoded string. Therefore, set the encoding mode ' to "hex": rsa.EncodingMode = "hex" Dim strData As String = "secret" ' Create an OpenSSL style signature: Dim hexSig As String = rsa.OpenSslSignStringENC(strData) Debug.WriteLine(hexSig) ' Recover the data using the corresponding public key: Dim pubkey As New Chilkat.PublicKey ' Load the public key from a PEM file: success = pubkey.LoadOpenSslPemFile("public.pem") If (success <> True) Then Debug.WriteLine(pubkey.LastErrorText) Exit Sub End If Dim pubkeyXml As String ' Get the public key in XML format: pubkeyXml = pubkey.GetXml() Dim rsa2 As New Chilkat.Rsa ' Import the public key into the RSA component: success = rsa2.ImportPublicKey(pubkeyXml) If (success <> True) Then Debug.WriteLine(rsa2.LastErrorText) Exit Sub End If rsa2.EncodingMode = "hex" ' Recover the original data. Dim originalData As String originalData = rsa2.OpenSslVerifyStringENC(hexSig) Debug.WriteLine(originalData) |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.