nl.open.jwtdependency.org.bouncycastle.asn1.ntt.NTTObjectIdentifiers 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.asn1.ntt;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
/**
* From RFC 3657
* Use of the Camellia Encryption Algorithm
* in Cryptographic Message Syntax (CMS)
*/
public interface NTTObjectIdentifiers
{
/** id-camellia128-cbc; OID 1.2.392.200011.61.1.1.1.2 */
static final ASN1ObjectIdentifier id_camellia128_cbc = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.1.2");
/** id-camellia192-cbc; OID 1.2.392.200011.61.1.1.1.3 */
static final ASN1ObjectIdentifier id_camellia192_cbc = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.1.3");
/** id-camellia256-cbc; OID 1.2.392.200011.61.1.1.1.4 */
static final ASN1ObjectIdentifier id_camellia256_cbc = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.1.4");
/** id-camellia128-wrap; OID 1.2.392.200011.61.1.1.3.2 */
static final ASN1ObjectIdentifier id_camellia128_wrap = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.3.2");
/** id-camellia192-wrap; OID 1.2.392.200011.61.1.1.3.3 */
static final ASN1ObjectIdentifier id_camellia192_wrap = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.3.3");
/** id-camellia256-wrap; OID 1.2.392.200011.61.1.1.3.4 */
static final ASN1ObjectIdentifier id_camellia256_wrap = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.3.4");
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy