Interface DecryptionOptions

interface DecryptionOptions {
    hash: string;
    label: string;
    type: string;
}

Properties

Properties

hash: string

hash 表示 oaep 填充方案使用的哈希算法,默认为 sha256,支持算法的包括 md5 sha1 sha256 sha512 sha3_256 sha3_512 等。

label: string

label 表示 oaep 填充方案使用的 label,默认为空。

type: string