Uses of Class
org.snmp4j.security.DecryptParams

Packages that use DecryptParams
Package
Description
Provides classes and interfaces for authentication and privacy of SNMP(v3) messages.
  • Uses of DecryptParams in org.snmp4j.security

    Methods in org.snmp4j.security with parameters of type DecryptParams
    Modifier and Type
    Method
    Description
    byte[]
    Priv3DES.decrypt(byte[] cryptedData, int offset, int length, byte[] decryptionKey, long engineBoots, long engineTime, DecryptParams decryptParams)
     
    byte[]
    PrivacyProtocol.decrypt(byte[] cryptedData, int offset, int length, byte[] decryptionKey, long engineBoots, long engineTime, DecryptParams decryptParams)
    Decrypts a message using a given decryption key, engine boots count, and engine ID.
    byte[]
    PrivAES.decrypt(byte[] cryptedData, int offset, int length, byte[] decryptionKey, long engineBoots, long engineTime, DecryptParams decryptParams)
     
    byte[]
    PrivDES.decrypt(byte[] cryptedData, int offset, int length, byte[] decryptionKey, long engineBoots, long engineTime, DecryptParams decryptParams)
    Decrypts a message using a given decryption key, engine boots count, and engine ID.
    byte[]
    Priv3DES.encrypt(byte[] unencryptedData, int offset, int length, byte[] encryptionKey, long engineBoots, long engineTime, DecryptParams decryptParams)
     
    byte[]
    PrivacyProtocol.encrypt(byte[] unencryptedData, int offset, int length, byte[] encryptionKey, long engineBoots, long engineTime, DecryptParams decryptParams)
    Encrypts a message using a given encryption key, engine boots count, and engine ID.
    byte[]
    PrivAES.encrypt(byte[] unencryptedData, int offset, int length, byte[] encryptionKey, long engineBoots, long engineTime, DecryptParams decryptParams)
     
    byte[]
    PrivDES.encrypt(byte[] unencryptedData, int offset, int length, byte[] encryptionKey, long engineBoots, long engineTime, DecryptParams decryptParams)