1 20 21 package org.snmp4j.security; 22 23 import org.snmp4j.smi.OID; 24 25 31 public class AuthSHA 32 extends AuthGeneric { 33 34 private static final long serialVersionUID = 2355896418236397919L; 35 36 public static final OID ID = new OID("1.3.6.1.6.3.10.1.1.3"); 37 38 public AuthSHA() { 39 super("SHA-1", 20); 40 } 41 42 public OID getID() { 43 return (OID) ID.clone(); 44 } 45 46 } 47 | Popular Tags |