Encryption password.

IEncryptionPassword is a type of interface who represents encryption password used by the Fetcher with AES-128/256 algorithm. If your encryption password is not fixed but changes according to the input content, you can utilize the IEncryptionPassword.Closure function type.

Jeongho Nam - https://github.com/samchon

interface IEncryptionPassword {
    iv: string;
    key: string;
}

Properties

Properties

iv: string

Initialization Vector.

key: string

Secret key.