Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NTTObjectIdentifiers.java « ntt « asn1 « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3eced42334ec48e5d7d7c9bdd9999a8d9c18b9af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.spongycastle.asn1.ntt;

import org.spongycastle.asn1.ASN1ObjectIdentifier;

/**
 * From <a href="http://tools.ietf.org/html/rfc3657">RFC 3657</a>
 * 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");
}