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