All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.open.jwtdependency.org.bouncycastle.asn1.ua.UAObjectIdentifiers Maven / Gradle / Ivy

Go to download

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.ua;

import org.bouncycastle.asn1.ASN1ObjectIdentifier;

/**
 * Ukrainian object identifiers
 * 

* {iso(1) member-body(2) Ukraine(804) root(2) security(1) cryptography(1) pki(1)} *

* { ... pki-alg(1) pki-alg-sym(3) Dstu4145WithGost34311(1) PB(1)} *

* DSTU4145 in polynomial basis has 2 oids, one for little-endian representation and one for big-endian */ public interface UAObjectIdentifiers { /** Base OID: 1.2.804.2.1.1.1 */ static final ASN1ObjectIdentifier UaOid = new ASN1ObjectIdentifier("1.2.804.2.1.1.1"); /** DSTU4145 Little Endian presentation. OID: 1.2.804.2.1.1.1.1.3.1.1 */ static final ASN1ObjectIdentifier dstu4145le = UaOid.branch("1.3.1.1"); /** DSTU4145 Big Endian presentation. OID: 1.2.804.2.1.1.1.1.3.1.1.1 */ static final ASN1ObjectIdentifier dstu4145be = UaOid.branch("1.3.1.1.1.1"); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy