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 KeyWrapAlgorithm
KeyWrapAlgorithm.AES_CBC
static final KeyWrapAlgorithm
KeyWrapAlgorithm.AES_CBC_PAD
static final KeyWrapAlgorithm
KeyWrapAlgorithm.AES_ECB
static final KeyWrapAlgorithm
KeyWrapAlgorithm.AES_KEY_WRAP
static final KeyWrapAlgorithm
KeyWrapAlgorithm.AES_KEY_WRAP_PAD
static final KeyWrapAlgorithm
KeyWrapAlgorithm.AES_KEY_WRAP_PAD_KWP
static final KeyWrapAlgorithm
KeyWrapAlgorithm.DES_CBC
static final KeyWrapAlgorithm
KeyWrapAlgorithm.DES_CBC_PAD
static final KeyWrapAlgorithm
KeyWrapAlgorithm.DES_ECB
static final KeyWrapAlgorithm
KeyWrapAlgorithm.DES3_CBC
static final KeyWrapAlgorithm
KeyWrapAlgorithm.DES3_CBC_PAD
static final KeyWrapAlgorithm
KeyWrapAlgorithm.DES3_ECB
static final KeyWrapAlgorithm
KeyWrapAlgorithm.PLAINTEXT
static final KeyWrapAlgorithm
KeyWrapAlgorithm.RC2_CBC_PAD
static final KeyWrapAlgorithm
KeyWrapAlgorithm.RSA
static final KeyWrapAlgorithm
KeyWrapAlgorithm.RSA_OAEP
Fields in org.mozilla.jss.crypto with type parameters of type KeyWrapAlgorithmModifier and TypeFieldDescriptionprivate static Hashtable
<String, KeyWrapAlgorithm> KeyWrapAlgorithm.nameMap
Methods in org.mozilla.jss.crypto that return KeyWrapAlgorithmModifier and TypeMethodDescriptionstatic KeyWrapAlgorithm
static KeyWrapAlgorithm
KeyWrapAlgorithm.fromOID
(OBJECT_IDENTIFIER oid) static KeyWrapAlgorithm
KeyWrapAlgorithm.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) KeyWrapAlgorithm
WrappingParams.payloadWrapAlgorithm
(package private) KeyWrapAlgorithm
WrappingParams.skWrapAlgorithm
Methods 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 TypeMethodDescriptionvoid
WrappingParams.setPayloadWrapAlgorithm
(KeyWrapAlgorithm payloadWrapAlgorithm) void
WrappingParams.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 PrivateKey
PK11KeyWrapper.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 SymmetricKey
PK11KeyWrapper.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 SymmetricKey
PK11KeyWrapper.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)