Data type RSAKey
access this type via: sec.crypto.RSAKeyGen (uses)
This data type represents and RSA key pair.
Constants
byte PKCS_PEM Possible value for 'type', indicating that this key is in the PKCS_PEM format.
byte RSA_PEM Possible value for 'type', indicating that this key is in the RSA_PEM format.
byte ASN1_DER Possible value for 'type', indicating that this key is in the ASN1_DER format.
Fields
char public[] The characters which encode the public key of the key pair. The public key can be shared with others.
char private[] The characters which encode the private key of the key pair. The private key should never be shared with others.
byte type The encoding type of the key pair.