Package org.bouncycastle.cms
Interface CMSSignatureAlgorithmNameGenerator
-
- All Known Implementing Classes:
DefaultCMSSignatureAlgorithmNameGenerator
public interface CMSSignatureAlgorithmNameGenerator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getSignatureName(org.bouncycastle.asn1.x509.AlgorithmIdentifier digestAlg, org.bouncycastle.asn1.x509.AlgorithmIdentifier encryptionAlg)
Return the digest algorithm using one of the standard string representations rather than the algorithm object identifier (if possible).
-
-
-
Method Detail
-
getSignatureName
java.lang.String getSignatureName(org.bouncycastle.asn1.x509.AlgorithmIdentifier digestAlg, org.bouncycastle.asn1.x509.AlgorithmIdentifier encryptionAlg)
Return the digest algorithm using one of the standard string representations rather than the algorithm object identifier (if possible).- Parameters:
digestAlg
- the digest algorithm id.encryptionAlg
- the encryption, or signing, algorithm id.
-
-