public class KeyGenAlgorithm extends Algorithm
Modifier and Type | Class and Description |
---|---|
protected static class |
KeyGenAlgorithm.FixedKeyStrengthValidator |
protected static interface |
KeyGenAlgorithm.KeyStrengthValidator |
Modifier and Type | Field and Description |
---|---|
static KeyGenAlgorithm |
AES |
static KeyGenAlgorithm |
DES |
static KeyGenAlgorithm |
DES3 |
static KeyGenAlgorithm |
DESede |
static KeyGenAlgorithm |
PBA_SHA1_HMAC |
static KeyGenAlgorithm |
RC2 |
static KeyGenAlgorithm |
RC4 |
CKM_AES_CBC, CKM_AES_CBC_PAD, CKM_AES_ECB, CKM_AES_KEY_GEN, CKM_DES_CBC_PAD, CKM_DES_KEY_GEN, CKM_DES3_CBC_PAD, CKM_DES3_ECB, CKM_DES3_KEY_GEN, CKM_DSA_KEY_PAIR_GEN, CKM_EC_KEY_PAIR_GEN, CKM_PBA_SHA1_WITH_SHA1_HMAC, CKM_RC2_CBC_PAD, CKM_RC2_KEY_GEN, CKM_RC4_KEY_GEN, CKM_RSA_PKCS_KEY_PAIR_GEN, CKM_SHA_1_HMAC, oid, oidIndex, SEC_OID_ANSIX9_DSA_SIGNATURE, SEC_OID_ANSIX9_DSA_SIGNATURE_WITH_SHA1_DIGEST, SEC_OID_ANSIX962_EC_PUBLIC_KEY, SEC_OID_ANSIX962_ECDSA_SHA1_SIGNATURE, SEC_OID_ANSIX962_ECDSA_SHA256_SIGNATURE, SEC_OID_ANSIX962_ECDSA_SHA384_SIGNATURE, SEC_OID_ANSIX962_ECDSA_SHA512_SIGNATURE, SEC_OID_ANSIX962_ECDSA_SIGNATURE_SPECIFIED_DIGEST, SEC_OID_DES_CBC, SEC_OID_DES_ECB, SEC_OID_DES_EDE3_CBC, SEC_OID_MD2, SEC_OID_MD5, SEC_OID_PKCS1_MD2_WITH_RSA_ENCRYPTION, SEC_OID_PKCS1_MD5_WITH_RSA_ENCRYPTION, SEC_OID_PKCS1_RSA_ENCRYPTION, SEC_OID_PKCS1_SHA1_WITH_RSA_ENCRYPTION, SEC_OID_PKCS1_SHA256_WITH_RSA_ENCRYPTION, SEC_OID_PKCS1_SHA384_WITH_RSA_ENCRYPTION, SEC_OID_PKCS1_SHA512_WITH_RSA_ENCRYPTION, SEC_OID_PKCS12_V2_PBE_WITH_SHA1_AND_128_BIT_RC2_CBC, SEC_OID_PKCS12_V2_PBE_WITH_SHA1_AND_128_BIT_RC4, SEC_OID_PKCS12_V2_PBE_WITH_SHA1_AND_3KEY_TRIPLE_DES_CBC, SEC_OID_PKCS12_V2_PBE_WITH_SHA1_AND_40_BIT_RC2_CBC, SEC_OID_PKCS12_V2_PBE_WITH_SHA1_AND_40_BIT_RC4, SEC_OID_PKCS5_PBE_WITH_MD2_AND_DES_CBC, SEC_OID_PKCS5_PBE_WITH_MD5_AND_DES_CBC, SEC_OID_PKCS5_PBE_WITH_SHA1_AND_DES_CBC, SEC_OID_PKCS5_PBES2, SEC_OID_PKCS5_PBKDF2, SEC_OID_PKCS5_PBMAC1, SEC_OID_RC2_CBC, SEC_OID_RC4, SEC_OID_SHA1, SEC_OID_SHA256, SEC_OID_SHA384, SEC_OID_SHA512
Modifier | Constructor and Description |
---|---|
protected |
KeyGenAlgorithm(int oidTag,
java.lang.String name,
KeyGenAlgorithm.KeyStrengthValidator keyStrengthValidator,
OBJECT_IDENTIFIER oid,
java.lang.Class paramClass) |
Modifier and Type | Method and Description |
---|---|
static KeyGenAlgorithm |
fromOID(OBJECT_IDENTIFIER oid) |
boolean |
isValidStrength(int strength)
Returns
true if the given strength is valid for this
key generation algorithm. |
getParameterClass, getParameterClasses, isValidParameterObject, toOID, toString
public static final KeyGenAlgorithm DES
public static final KeyGenAlgorithm DES3
public static final KeyGenAlgorithm DESede
public static final KeyGenAlgorithm RC4
public static final KeyGenAlgorithm PBA_SHA1_HMAC
public static final KeyGenAlgorithm AES
public static final KeyGenAlgorithm RC2
protected KeyGenAlgorithm(int oidTag, java.lang.String name, KeyGenAlgorithm.KeyStrengthValidator keyStrengthValidator, OBJECT_IDENTIFIER oid, java.lang.Class paramClass)
public static KeyGenAlgorithm fromOID(OBJECT_IDENTIFIER oid) throws java.security.NoSuchAlgorithmException
java.security.NoSuchAlgorithmException
public boolean isValidStrength(int strength)
true
if the given strength is valid for this
key generation algorithm. Note that PBE algorithms require
PBEParameterSpecs rather than strengths. It is the responsibility
of the caller to verify this.