(Visual FoxPro) LastErrorText
How to get RSA debugging information. If any RSA method returns a failed status, check the contents of the LastErrorText string property. Send it to support@chilkatsoft.com if you need further help. Note: This example requires Chilkat v11.0.0 or greater.
LOCAL lnSuccess
LOCAL loRsa
LOCAL loPrivKey
lnSuccess = 0
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
loRsa = CreateObject('Chilkat.Rsa')
loPrivKey = CreateObject('Chilkat.PrivateKey')
lnSuccess = loRsa.GenKey(2048,loPrivKey)
IF (lnSuccess <> 1) THEN
* The LastErrorText provides detailed information about
* any failure. It is standard to all Chilkat components.
* This is good information to send to support@chilkatsoft.com
? loRsa.LastErrorText
RELEASE loRsa
RELEASE loPrivKey
CANCEL
ENDIF
RELEASE loRsa
RELEASE loPrivKey
|