Package com.auth0.jwt.algorithms
Class NoneAlgorithm
java.lang.Object
com.auth0.jwt.algorithms.Algorithm
com.auth0.jwt.algorithms.NoneAlgorithm
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyte[]sign(byte[] contentBytes) Deprecated.byte[]sign(byte[] headerBytes, byte[] payloadBytes) Sign the given content using this Algorithm instance.voidverify(DecodedJWT jwt) Verify the given token using this Algorithm instance.Methods inherited from class com.auth0.jwt.algorithms.Algorithm
ECDSA256, ECDSA256, ECDSA256, ECDSA384, ECDSA384, ECDSA384, ECDSA512, ECDSA512, ECDSA512, getDescription, getName, getSigningKeyId, HMAC256, HMAC256, HMAC384, HMAC384, HMAC512, HMAC512, none, RSA256, RSA256, RSA256, RSA384, RSA384, RSA384, RSA512, RSA512, RSA512, toString
-
Constructor Details
-
NoneAlgorithm
NoneAlgorithm()
-
-
Method Details
-
verify
Description copied from class:AlgorithmVerify the given token using this Algorithm instance.- Specified by:
verifyin classAlgorithm- Parameters:
jwt- the already decoded JWT that it's going to be verified.- Throws:
SignatureVerificationException- if the Token's Signature is invalid, meaning that it doesn't match the signatureBytes, or if the Key is invalid.
-
sign
Description copied from class:AlgorithmSign the given content using this Algorithm instance.- Overrides:
signin classAlgorithm- Parameters:
headerBytes- an array of bytes representing the base64 encoded header content to be verified against the signature.payloadBytes- an array of bytes representing the base64 encoded payload content to be verified against the signature.- Returns:
- the signature in a base64 encoded array of bytes
- Throws:
SignatureGenerationException- if the Key is invalid.
-
sign
Deprecated.Description copied from class:AlgorithmSign the given content using this Algorithm instance.- Specified by:
signin classAlgorithm- Parameters:
contentBytes- an array of bytes representing the base64 encoded content to be verified against the signature.- Returns:
- the signature in a base64 encoded array of bytes
- Throws:
SignatureGenerationException- if the Key is invalid.
-