|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--net.rim.device.api.crypto.encoder.PublicKeyEncoder
Allows the developer to encode public keys using a variety of supported encoding algorithms.
Once again, the details of creating and using the appropriate algorithm are managed by PublicKeyEncoder
and are completely transparent to the developer.
Encoding a Public Key
Encoding a public key simply involves calling the public static encode() method
with the desired public key. As the following code illustrates, encoding an RSA public key using the
X509 algorithm is straightforward:
RSAPublicKey key = new RSAPublicKey( ... );
EncodedKey encodedKey = PublicKeyEncoder.encode( key, "X509", false );
Of course, the RSA public key must be properly created and initialized.
Decoding a Public Key
Decoding a public key is similar to encoding one. Simply call the public static decode()
method with the encoded key data:
byte[] encodedKeyData = ...;
PublicKey decodedKey = PublicKeyEncoder.decode( encodedKeyData, "X509" );
This code assumes that encodedKey contains a properly encoded public key.
Supported Encoding Algorithms
A complete list of the key encoding algorithms supported by the RIM crypto API can be found here. Currently, RIM provides the following public key encoding algorithms, which can be accessed with the specifed string :
Microsoft Crypto API Use the encoding string "MSCAPI". X509 encoding Use the encoding string "X509". WTLS encoding Use the encoding string "WTLS".
The MSCAPI encoding can be found in MSDN. The X509 encoding is defined in RFC 2459. Finally, the WTLS encoding is found in WAP-199-WTLS from Feb 2000.
If a developer wishes to implement a key encoding algorithm not found in this list, the PublicKeyEncoder class can be extended. This information can be found here.
| Constructor Summary |
| Method Summary | ||
|
static EncodedKey |
encode(PublicKey key)
Encodes a given key using the default X509 encoding scheme. |
|
static EncodedKey |
encode(PublicKey key,
String encodingAlgorithm)
Encodes a given key using the specified encoding scheme. |
|
static EncodedKey |
encode(PublicKey key,
String encodingAlgorithm,
long flags)
Encodes a given key using the specified encoding scheme. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
| Method Detail |
public static EncodedKey encode(PublicKey key) throws NoSuchAlgorithmException, InvalidKeyEncodingException, CryptoTokenException, CryptoUnsupportedOperationException
The crypto system parameters are encoded.
key - The public key to encode.EncodedKey object containing the encoded key.NoSuchAlgorithmException - Thrown if the encoding algorithm cannot be found.InvalidKeyEncodingException - Thrown if the key is improperly
formatted.CryptoTokenException - Thrown if an error occurs with the crypto
token or the crypto token is invalid.CryptoUnsupportedOperationException - Thrown if a call is made to
an unsupported operation.public static EncodedKey encode(PublicKey key, String encodingAlgorithm) throws NoSuchAlgorithmException, InvalidKeyEncodingException, CryptoTokenException, CryptoUnsupportedOperationException
key - The public key to encode.encodingAlgorithm - A string representing the encoding Algorithm to use, eg "X509".EncodedKey object containing the encoded key.NoSuchAlgorithmException - Thrown if the encoding algorithm cannot be found.InvalidKeyEncodingException - Thrown if the key is improperly
formatted.CryptoTokenException - Thrown if an error occurs with the crypto
token or the crypto token is invalid.CryptoUnsupportedOperationException - Thrown if a call is made to
an unsupported operation.public static EncodedKey encode(PublicKey key, String encodingAlgorithm, long flags) throws NoSuchAlgorithmException, InvalidKeyEncodingException, CryptoTokenException, CryptoUnsupportedOperationException
key - The public key to encode.encodingAlgorithm - A string representing the encoding Algorithm to use, eg "X509".flags - Flags passed to the encoder. See PublicKeyEncoderFlags.EncodedKey object containing the encoded key.NoSuchAlgorithmException - Thrown if the encoding algorithm cannot be found.InvalidKeyEncodingException - Thrown if the key is improperly
formatted.CryptoTokenException - Thrown if an error occurs with the crypto
token or the crypto token is invalid.CryptoUnsupportedOperationException - Thrown if a call is made to
an unsupported operation.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
Copyright 1999-2002 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Copyright 1993-2000 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.