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

org.bouncycastle.asn1.ua.UAObjectIdentifiers Maven / Gradle / Ivy

Go to download

The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.4.

There is a newer version: 1.79
Show newest version
package org.bouncycastle.asn1.ua;

import org.bouncycastle.asn1.ASN1ObjectIdentifier;

public interface UAObjectIdentifiers
{
    // Ukrainian object identifiers
    // {iso(1) member-body(2) Ukraine(804 ) root(2) security(1) cryptography(1) pki(1)}

    static final ASN1ObjectIdentifier UaOid = new ASN1ObjectIdentifier("1.2.804.2.1.1.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
    static final ASN1ObjectIdentifier dstu4145le = UaOid.branch("1.3.1.1");
    static final ASN1ObjectIdentifier dstu4145be = UaOid.branch("1.3.1.1.1.1");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy