ddn.crypto.signature.rsa
RSA-PSS Signature Implementation (PKCS#1 v2.1 / RFC 8017).
Types 5
aliasHashFactory = Hash delegate()
Delegate to create a new Hash instance
classRSAPSSSigner : Signer
Fields
private RSAPrivateKey _keyprivate HashFactory _hashFactoryprivate Random _randomprivate size_t _sLenprivate Hash _hashConstructors
this(HashFactory hashFactory, Random random, size_t sLen = size_t.max)classRSAPSSVerifier : Verifier
Fields
private RSAPublicKey _keyprivate HashFactory _hashFactoryprivate size_t _sLenprivate Hash _hashConstructors
this(HashFactory hashFactory, size_t sLen = size_t.max)classRSAPKCS1Signer : Signer
RSA PKCS#1 v1.5 Signature Implementation (RFC 8017).
Constructors
this(HashFactory hashFactory)classRSAPKCS1Verifier : Verifier
RSA PKCS#1 v1.5 Verification Implementation (RFC 8017).
Constructors
this(HashFactory hashFactory)