Sample Visual Basic
Code to get the fingerprint for a key.
Where Cryptocx is an instance of a Cryptocx Control.
''
'' Get the fingerprint for a Key
''
Dim theResult As String
Dim Cryptocx As New EasyByte_Software.Cryptocxv7
Cryptocx.LicenseKey = "DEMO"
Cryptocx.PublicKey = txtKeyFingerprint.Text
Cryptocx.WorkingFolder = "C:\"
'' Get and display the fingerprint for the key
''
MsgBox Cryptocx.PGPGetFingerPrint
'' Free memory resources
''
Set Cryptocx = Nothing |