|
For the latest news and information visit The GNU Crypto project |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object gnu.crypto.key.KeyPairCodecFactory
A Factory class to instantiate key encoder/decoder instances.
Method Summary | |
static IKeyPairCodec |
getInstance(byte[] buffer)
Returns an instance of a keypair codec given a byte array that is assumed to contain a previously encoded key (public or private). |
static IKeyPairCodec |
getInstance(java.security.Key key)
Returns an instance of a keypair codec given a key. |
static IKeyPairCodec |
getInstance(java.lang.String name)
Returns an instance of a keypair codec given its name. |
static java.util.Set |
getNames()
Returns a Set of keypair codec names supported by this
Factory. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public static IKeyPairCodec getInstance(java.lang.String name)
Returns an instance of a keypair codec given its name.
name
- the case-insensitive key codec name.
null
if none
found.public static IKeyPairCodec getInstance(byte[] buffer)
Returns an instance of a keypair codec given a byte array that is assumed to contain a previously encoded key (public or private).
buffer
- a byte array containing a previously encoded key.
null
if none
found.public static IKeyPairCodec getInstance(java.security.Key key)
Returns an instance of a keypair codec given a key.
key
- the key to encode.
null
if none
found.public static final java.util.Set getNames()
Returns a Set
of keypair codec names supported by this
Factory.
Set
of keypair codec names (Strings).
|
For the latest news and information visit The GNU Crypto project |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |