Searched refs:SnmpEngineId (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpEngine.java29 * To an engine is associated an {@link SnmpEngineId}.
57 public SnmpEngineId getEngineId();
H A DSnmpEngineParameters.java44 private SnmpEngineId engineId = null;
106 public void setEngineId(SnmpEngineId engineId) {
114 public SnmpEngineId getEngineId() {
H A DSnmpEngineId.java37 * This class is handling an <CODE>SnmpEngineId</CODE> data. It copes with binary as well as <CODE>String</CODE> representation of an engine Id. A string format engine is an hex string starting with 0x.
42 public class SnmpEngineId implements Serializable { class in inherits:Serializable
49 * New <CODE>SnmpEngineId</CODE> with an hex string value. Can handle engine Id format &lt;host&gt:&lt;port&gt.
52 SnmpEngineId(String hexString) { method in class:SnmpEngineId
57 * New <CODE>SnmpEngineId</CODE> with a binary value. You can use <CODE> SnmpTools </CODE> to convert from hex string to binary format.
60 SnmpEngineId(byte[] bin) { method in class:SnmpEngineId
129 public static SnmpEngineId createEngineId(byte[] arr) throws IllegalArgumentException {
132 return new SnmpEngineId(arr);
139 public static SnmpEngineId createEngineId() {
162 return new SnmpEngineId(enginei
[all...]
H A DSnmpUsmKeyHandler.java55 * Localize the passed key using the passed <CODE>SnmpEngineId</CODE>. It MUST be compliant to RFC 2574 description.
62 public byte[] localizeAuthKey(String algoName, byte[] key, SnmpEngineId engineId) throws IllegalArgumentException;
65 * Localize the passed privacy key using the passed <CODE>SnmpEngineId</CODE>. It MUST be compliant to RFC 2574 description.
73 public byte[] localizePrivKey(String algoName, byte[] key, SnmpEngineId engineId,int keysize) throws IllegalArgumentException;
H A DSnmpV3Message.java50 import com.sun.jmx.snmp.SnmpEngineId;
221 SnmpEngineId.createEngineId(contextEngineId))
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/internal/
H A DSnmpEngineImpl.java34 import com.sun.jmx.snmp.SnmpEngineId;
47 * To an engine is associated an {@link com.sun.jmx.snmp.SnmpEngineId}.
108 private SnmpEngineId engineid = null;
150 public SnmpEngineId getEngineId() {
179 * <P> WARNING : The SnmpEngineId is computed as follow:
188 * @param engineid The engine ID to use. If null is provided, an SnmpEngineId is computed using the current time.
193 SnmpEngineId engineid) throws UnknownHostException {
201 this.engineid = SnmpEngineId.createEngineId();
206 "SnmpEngineImpl(SnmpEngineFactory,SnmpLcd,SnmpEngineId)",
212 * <P> WARNING : The SnmpEngineId i
[all...]
H A DSnmpLcd.java28 import com.sun.jmx.snmp.SnmpEngineId;
83 public abstract void storeEngineId(SnmpEngineId id);

Completed in 75 milliseconds