Uses of Class
org.mozilla.jss.crypto.KeyWrapAlgorithm
Packages that use KeyWrapAlgorithm
Package
Description
Generic cryptographic operations, such as signing and key pair generation.
-
Uses of KeyWrapAlgorithm in org.mozilla.jss.crypto
Fields in org.mozilla.jss.crypto declared as KeyWrapAlgorithmModifier and TypeFieldDescriptionstatic final KeyWrapAlgorithmKeyWrapAlgorithm.AES_CBCstatic final KeyWrapAlgorithmKeyWrapAlgorithm.AES_CBC_PADstatic final KeyWrapAlgorithmKeyWrapAlgorithm.AES_ECBstatic final KeyWrapAlgorithmKeyWrapAlgorithm.AES_KEY_WRAPstatic final KeyWrapAlgorithmKeyWrapAlgorithm.AES_KEY_WRAP_PADstatic final KeyWrapAlgorithmKeyWrapAlgorithm.AES_KEY_WRAP_PAD_KWPstatic final KeyWrapAlgorithmKeyWrapAlgorithm.DES_CBCstatic final KeyWrapAlgorithmKeyWrapAlgorithm.DES_CBC_PADstatic final KeyWrapAlgorithmKeyWrapAlgorithm.DES_ECBstatic final KeyWrapAlgorithmKeyWrapAlgorithm.DES3_CBCstatic final KeyWrapAlgorithmKeyWrapAlgorithm.DES3_CBC_PADstatic final KeyWrapAlgorithmKeyWrapAlgorithm.DES3_ECBstatic final KeyWrapAlgorithmKeyWrapAlgorithm.PLAINTEXTstatic final KeyWrapAlgorithmKeyWrapAlgorithm.RC2_CBC_PADstatic final KeyWrapAlgorithmKeyWrapAlgorithm.RSAstatic final KeyWrapAlgorithmKeyWrapAlgorithm.RSA_OAEPFields in org.mozilla.jss.crypto with type parameters of type KeyWrapAlgorithmModifier and TypeFieldDescriptionprivate static Hashtable<String,KeyWrapAlgorithm> KeyWrapAlgorithm.nameMapMethods in org.mozilla.jss.crypto that return KeyWrapAlgorithmModifier and TypeMethodDescriptionstatic KeyWrapAlgorithmstatic KeyWrapAlgorithmKeyWrapAlgorithm.fromOID(OBJECT_IDENTIFIER oid) static KeyWrapAlgorithmKeyWrapAlgorithm.fromString(String name) Methods in org.mozilla.jss.crypto with parameters of type KeyWrapAlgorithm -
Uses of KeyWrapAlgorithm in org.mozilla.jss.netscape.security.util
Fields in org.mozilla.jss.netscape.security.util declared as KeyWrapAlgorithmModifier and TypeFieldDescription(package private) KeyWrapAlgorithmWrappingParams.payloadWrapAlgorithm(package private) KeyWrapAlgorithmWrappingParams.skWrapAlgorithmMethods in org.mozilla.jss.netscape.security.util that return KeyWrapAlgorithmModifier and TypeMethodDescriptionWrappingParams.getPayloadWrapAlgorithm()WrappingParams.getSkWrapAlgorithm()Methods in org.mozilla.jss.netscape.security.util with parameters of type KeyWrapAlgorithmModifier and TypeMethodDescriptionvoidWrappingParams.setPayloadWrapAlgorithm(KeyWrapAlgorithm payloadWrapAlgorithm) voidWrappingParams.setSkWrapAlgorithm(KeyWrapAlgorithm skWrapAlgorithm) Constructors in org.mozilla.jss.netscape.security.util with parameters of type KeyWrapAlgorithmModifierConstructorDescriptionWrappingParams(SymmetricKey.Type skType, KeyGenAlgorithm skKeyGenAlgorithm, int skLength, KeyWrapAlgorithm skWrapAlgorithm, EncryptionAlgorithm payloadEncryptionAlgorithm, KeyWrapAlgorithm payloadWrapAlgorithm, IVParameterSpec payloadEncryptIV, IVParameterSpec payloadWrapIV) -
Uses of KeyWrapAlgorithm in org.mozilla.jss.pkcs11
Fields in org.mozilla.jss.pkcs11 declared as KeyWrapAlgorithmMethods in org.mozilla.jss.pkcs11 with parameters of type KeyWrapAlgorithmModifier and TypeMethodDescriptionPK11Token.getKeyWrapper(KeyWrapAlgorithm algorithm) private static PrivateKeyPK11KeyWrapper.nativeUnwrapPrivWithSym(PK11Token token, SymmetricKey unwrappingKey, byte[] wrappedKey, KeyWrapAlgorithm alg, Algorithm type, byte[] publicValue, byte[] IV, boolean temporary) Unwrap a private with a symmetric.private static SymmetricKeyPK11KeyWrapper.nativeUnwrapSymWithPriv(PK11Token token, PrivateKey unwrappingKey, byte[] wrappedKey, KeyWrapAlgorithm alg, Algorithm type, int keyLen, NativeProxy params, long params_size, int usageEnum) Unwrap a symmetric with a private.private static SymmetricKeyPK11KeyWrapper.nativeUnwrapSymWithSym(PK11Token token, SymmetricKey unwrappingKey, byte[] wrappedKey, KeyWrapAlgorithm alg, Algorithm type, int keyLen, byte[] IV, int usageEnum, boolean temporary) Unwrap a symmetric with a symmetric.private static byte[]PK11KeyWrapper.nativeWrapPrivWithSym(PK11Token token, PrivateKey toBeWrapped, SymmetricKey wrappingKey, KeyWrapAlgorithm alg, byte[] IV) Wrap a private with a symmetricprivate static byte[]PK11KeyWrapper.nativeWrapSymWithPub(PK11Token token, SymmetricKey toBeWrapped, PublicKey wrappingKey, KeyWrapAlgorithm alg, NativeProxy params, long params_size) Wrap a symmetric with a publicprivate static byte[]PK11KeyWrapper.nativeWrapSymWithSym(PK11Token token, SymmetricKey toBeWrapped, SymmetricKey wrappingKey, KeyWrapAlgorithm alg, byte[] IV) Wrap a symmetric with a symmetricConstructors in org.mozilla.jss.pkcs11 with parameters of type KeyWrapAlgorithmModifierConstructorDescription(package private)PK11KeyWrapper(PK11Token token, KeyWrapAlgorithm algorithm)