![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.org.bouncycastle.iana.AEADAlgorithm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
The newest version!
package org.bouncycastle.iana;
/**
* RFC 5116
*/
public class AEADAlgorithm
{
public static final int AEAD_AES_128_GCM = 1;
public static final int AEAD_AES_256_GCM = 2;
public static final int AEAD_AES_128_CCM = 3;
public static final int AEAD_AES_256_CCM = 4;
/*
* RFC 5282
*/
public static final int AEAD_AES_128_GCM_8 = 5;
public static final int AEAD_AES_256_GCM_8 = 6;
public static final int AEAD_AES_128_GCM_12 = 7;
public static final int AEAD_AES_256_GCM_12 = 8;
public static final int AEAD_AES_128_CCM_SHORT = 9;
public static final int AEAD_AES_256_CCM_SHORT = 10;
public static final int AEAD_AES_128_CCM_SHORT_8 = 11;
public static final int AEAD_AES_256_CCM_SHORT_8 = 12;
public static final int AEAD_AES_128_CCM_SHORT_12 = 13;
public static final int AEAD_AES_256_CCM_SHORT_12 = 14;
/*
* RFC 5297
*/
public static final int AEAD_AES_SIV_CMAC_256 = 15;
public static final int AEAD_AES_SIV_CMAC_384 = 16;
public static final int AEAD_AES_SIV_CMAC_512 = 17;
/*
* RFC 6655
*/
public static final int AEAD_AES_128_CCM_8 = 18;
public static final int AEAD_AES_256_CCM_8 = 19;
/*
* RFC 7253
*/
public static final int AEAD_AES_128_OCB_TAGLEN128 = 20;
public static final int AEAD_AES_128_OCB_TAGLEN96 = 21;
public static final int AEAD_AES_128_OCB_TAGLEN64 = 22;
public static final int AEAD_AES_192_OCB_TAGLEN128 = 23;
public static final int AEAD_AES_192_OCB_TAGLEN96 = 24;
public static final int AEAD_AES_192_OCB_TAGLEN64 = 25;
public static final int AEAD_AES_256_OCB_TAGLEN128 = 26;
public static final int AEAD_AES_256_OCB_TAGLEN96 = 27;
public static final int AEAD_AES_256_OCB_TAGLEN64 = 28;
/*
* RFC 7539
*/
public static final int AEAD_CHACHA20_POLY1305 = 29;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy