dcrypt.crypto.generators.pbe

Undocumented in source.

Public Imports

dcrypt.crypto.params.keyparameter
public import dcrypt.crypto.params.keyparameter;
Undocumented in source.

Members

Classes

PBEParametersGenerator
class PBEParametersGenerator

super class for all Password Based Encryption (PBE) parameter generator classes.

Functions

PKCS12PasswordToBytes
ubyte[] PKCS12PasswordToBytes(char[] password)

converts a password to a byte array according to the scheme in PKCS12 (unicode, big endian, 2 zero pad bytes at the end).

PKCS5PasswordToBytes
ubyte[] PKCS5PasswordToBytes(char[] password)

converts a password to a byte array according to the scheme in PKCS5 (ascii, no padding)

PKCS5PasswordToUTF8Bytes
ubyte[] PKCS5PasswordToUTF8Bytes(char[] password)

converts a password to a byte array according to the scheme in PKCS5 (UTF-8, no padding)

Meta