Uses of Interface
org.snmp4j.security.SecurityProtocol
-
Packages that use SecurityProtocol Package Description org.snmp4j.security Provides classes and interfaces for authentication and privacy of SNMP(v3) messages.org.snmp4j.security.nonstandard -
-
Uses of SecurityProtocol in org.snmp4j.security
Subinterfaces of SecurityProtocol in org.snmp4j.security Modifier and Type Interface Description interface
AuthenticationProtocol
TheAuthenticationProtocol
interface defines a common interface for all SNMP authentication protocols.interface
PrivacyProtocol
ThePrivacyProtocol
interface defines a common interface for all SNMP privacy protocols.Classes in org.snmp4j.security that implement SecurityProtocol Modifier and Type Class Description class
AuthGeneric
The abstract class AuthGeneric implements common operations for SNMP authentication protocols, such as MD5 and SHA.class
AuthHMAC128SHA224
The classAuthHMAC128SHA224
implements the usmHMAC128SHA224AuthProtocol defined by RFC 7630.class
AuthHMAC192SHA256
The classAuthHMAC192SHA256
implements the usmHMAC192SHA2256AuthProtocol defined by RFC 7630.class
AuthHMAC256SHA384
The classAuthHMAC256SHA384
implements the usmHMAC256SHA3846AuthProtocol defined by RFC 7630.class
AuthHMAC384SHA512
The classAuthHMAC384SHA512
implements the usmHMAC384SHA5126AuthProtocol defined by RFC 7630.class
AuthMD5
The AuthMD5 class implements the MD5 authentication protocol.class
AuthSHA
TheSHA
class implements the Secure Hash Authentication.class
AuthSHA2
TheSHA-2
class implements the Secure Hash Authentication 2.class
Priv3DES
Privacy protocol class for Triple DES (DESEDE).class
PrivacyGeneric
The PrivacyGeneric abstract class implements common functionality of privacy protocols.class
PrivAES
Base class for PrivAES128, PrivAES192 and PrivAES256.class
PrivAES128
Encryption class for AES 128.class
PrivAES192
Encryption class for AES 192.class
PrivAES256
Encryption class for AES 256.class
PrivDES
Privacy protocol class for DES.Methods in org.snmp4j.security that return SecurityProtocol Modifier and Type Method Description SecurityProtocol
SecurityProtocols. getSecurityProtocol(OID protocolID)
Get the security protocol (AuthenticationProtocol
orPrivacyProtocol
) for the specified protocol OID. -
Uses of SecurityProtocol in org.snmp4j.security.nonstandard
Classes in org.snmp4j.security.nonstandard that implement SecurityProtocol Modifier and Type Class Description class
PrivAES192With3DESKeyExtension
This class is provided for interoperability with some broken AES 192bit implementations of major network device manufactures which use a key extension algorithm that was specified forPriv3DES
but was never specified for AES 192 and 256 bit.class
PrivAES256With3DESKeyExtension
This class is provided for interoperability with some broken AES 256bit implementations of major network device manufactures which use a key extension algorithm that was specified forPriv3DES
but was never specified for AES 192 and 256 bit.class
PrivAESWith3DESKeyExtension
This class is provided for interoperability with some broken AES implementations of major network device manufactures which use a key extension algorithm that was specified forPriv3DES
but was never specified for AES 192 and 256 bit.
-