Package burp.api.montoya.utilities
Interface CryptoUtils
-
public interface CryptoUtilsThis interface gives you access to cryptographic features.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ByteArraygenerateDigest(ByteArray data, DigestAlgorithm algorithm)Generate a message digest for the supplied data using the specified algorithm
-
-
-
Method Detail
-
generateDigest
ByteArray generateDigest(ByteArray data, DigestAlgorithm algorithm)
Generate a message digest for the supplied data using the specified algorithm- Parameters:
data- the data to generate the digest fromalgorithm- the messageDigestAlgorithmto use- Returns:
- the generated message digest
-
-