|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object | +--iaik.security.cipher.PBEKeyBMP
A secret key for PBE (Password Based Encryption).
PKCS#12 breaks with the recommendation of PKCS#5 suggesting passwords to consist of printable ASCII characters. PKCS #12 creates passwords from BMPStrings with a NULL terminator by encoding every character of the original BMPString in 2 bytes in big-endian format (most-significant byte first).
This class returns the password as a byte array of the default ASCII encoding. But
in contrast to PBEKey here the password is created from a BMPstring with
a NULL terminator.
E.g.: User-password "Beavis" would lead to the following string of 14 bytes:
0x00 0x42 0x00 0x65 0x00 0x61 0x00 0x76 0x00 0x69 0x00 0x73 0x00 0x00
You can also use the "PKCS#12" SecretKeyFactory for converting a password to a PBEKeyBMP.
SecretKey,
SecretKey,
PBEKey,
PbeWithSHAAnd3_KeyTripleDES_CBC,
PbeWithSHAAnd40BitRC2_CBC, Serialized Form| Fields inherited from interface java.security.Key |
serialVersionUID |
| Constructor Summary | |
PBEKeyBMP(char[] password)
Creates a new PBEKeyBMP from a char array. |
|
PBEKeyBMP(PBEKeySpec keySpec)
Creates a new PBEKey from a PBEKeySpec. |
|
PBEKeyBMP(java.lang.String password)
Creates a new PBEKeyBMP from a String. |
|
| Method Summary | |
java.lang.String |
getAlgorithm()
Returns the algorithm name. |
byte[] |
getEncoded()
Returns the password as byte array. |
static byte[] |
getEncoded(char[] password)
Converts the ASCII passwort to a 2 bytes big-endian format BMPString. |
java.lang.String |
getFormat()
Returns the format name. |
char[] |
getKey()
Returns the password as char array. |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
| Constructor Detail |
public PBEKeyBMP(java.lang.String password)
password - the password as a stringpublic PBEKeyBMP(char[] password)
password - the password as a char arraypublic PBEKeyBMP(PBEKeySpec keySpec)
keySpec - the password as KeySpec| Method Detail |
public final byte[] getEncoded()
public static final byte[] getEncoded(char[] password)
public char[] getKey()
public java.lang.String getAlgorithm()
public java.lang.String getFormat()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||