PKDecryptor.decrypt

Decrypt a ciphertext.

  1. SecureVector!ubyte decrypt(const(ubyte)* input, size_t length)
    interface PKDecryptor
    public final const
    SecureVector!ubyte
    decrypt
    (
    const(ubyte)* input
    ,
    size_t length
    )
  2. SecureVector!ubyte decrypt(Vector!(ubyte, Alloc) input)

Parameters

input const(ubyte)*

the ciphertext as a ubyte array

length size_t

the length of the above ubyte array

Return Value

Type: SecureVector!ubyte

decrypted message

Meta