![JAR search and dependency download from the Maven repository](/logo.png)
com.cloudinary.SignatureAlgorithm Maven / Gradle / Ivy
package com.cloudinary;
/**
* Defines supported algorithms for generating/verifying hashed message authentication codes (HMAC).
*/
public enum SignatureAlgorithm {
SHA1("SHA-1"),
SHA256("SHA-256");
private final String algorithmId;
SignatureAlgorithm(String algorithmId) {
this.algorithmId = algorithmId;
}
public String getAlgorithmId() {
return algorithmId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy