Uses of Class
com.nimbusds.jose.jwk.OctetSequenceKey
-
Packages that use OctetSequenceKey Package Description com.nimbusds.jose.crypto Implementations of standard Javascript Object Signing and Encryption (JOSE) algorithms.com.nimbusds.jose.jwk JSON Web Key (JWK) classes.com.nimbusds.jose.jwk.gen JSON Web Key (JWK) generation utilities. -
-
Uses of OctetSequenceKey in com.nimbusds.jose.crypto
Constructors in com.nimbusds.jose.crypto with parameters of type OctetSequenceKey Constructor Description AESDecrypter(OctetSequenceKey octJWK)Creates a new AES decrypter.AESEncrypter(OctetSequenceKey octJWK)Creates a new AES encrypter.DirectDecrypter(OctetSequenceKey octJWK)Creates a new direct decrypter.DirectEncrypter(OctetSequenceKey octJWK)Creates a new direct encrypter.MACSigner(OctetSequenceKey jwk)Creates a new Message Authentication (MAC) signer.MACVerifier(OctetSequenceKey jwk)Creates a new Message Authentication (MAC) verifier.MACVerifier(OctetSequenceKey jwk, Set<String> defCritHeaders)Creates a new Message Authentication (MAC) verifier. -
Uses of OctetSequenceKey in com.nimbusds.jose.jwk
Methods in com.nimbusds.jose.jwk that return OctetSequenceKey Modifier and Type Method Description OctetSequenceKeyOctetSequenceKey.Builder. build()Builds a new octet sequence JWK.static OctetSequenceKeyOctetSequenceKey. load(KeyStore keyStore, String alias, char[] pin)Loads an octet sequence JWK from the specified JCA key store.static OctetSequenceKeyOctetSequenceKey. parse(String s)Parses an octet sequence JWK from the specified JSON object string representation.static OctetSequenceKeyOctetSequenceKey. parse(Map<String,Object> jsonObject)Parses an octet sequence JWK from the specified JSON object representation.OctetSequenceKeyJWK. toOctetSequenceKey()Casts this JWK to an octet sequence JWK.OctetSequenceKeyOctetSequenceKey. toPublicJWK()Octet sequence (symmetric) keys are never considered public, this method always returnsnull.Constructors in com.nimbusds.jose.jwk with parameters of type OctetSequenceKey Constructor Description Builder(OctetSequenceKey octJWK)Creates a new octet sequence JWK builder. -
Uses of OctetSequenceKey in com.nimbusds.jose.jwk.gen
Methods in com.nimbusds.jose.jwk.gen that return OctetSequenceKey Modifier and Type Method Description OctetSequenceKeyOctetSequenceKeyGenerator. generate()
-