Package org.snmp4j.security

Examples of org.snmp4j.security.AuthenticationProtocol


  }

  protected int getDigestLength(UsmMIB.UsmTableRow row, MOTableRow changeSet) {
    switch (type) {
      case AUTH_KEY_CHANGE: {
        AuthenticationProtocol a = row.getAuthProtocol(changeSet);
        if (a != null) {
          return a.getDigestLength() * 2;
        }
        break;
      }
      case PRIV_KEY_CHANGE: {
        PrivacyProtocol p = row.getPrivProtocol(changeSet);
View Full Code Here

TOP

Related Classes of org.snmp4j.security.AuthenticationProtocol

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.