01: package org.bouncycastle.asn1.iana;
02:
03: import org.bouncycastle.asn1.DERObjectIdentifier;
04:
05: public interface IANAObjectIdentifiers {
06: // id-SHA1 OBJECT IDENTIFIER ::=
07: // {iso(1) identified-organization(3) dod(6) internet(1) security(5) mechanisms(5) ipsec(8) isakmpOakley(1)}
08: //
09:
10: static final DERObjectIdentifier isakmpOakley = new DERObjectIdentifier(
11: "1.3.6.1.5.5.8.1");
12:
13: static final DERObjectIdentifier hmacMD5 = new DERObjectIdentifier(
14: isakmpOakley + ".1");
15: static final DERObjectIdentifier hmacSHA1 = new DERObjectIdentifier(
16: isakmpOakley + ".2");
17:
18: static final DERObjectIdentifier hmacTIGER = new DERObjectIdentifier(
19: isakmpOakley + ".3");
20:
21: static final DERObjectIdentifier hmacRIPEMD160 = new DERObjectIdentifier(
22: isakmpOakley + ".4");
23:
24: }
|