menu
CryptoAsymmetricEncryptionParameters
import { CryptoAsymmetricEncryptionParameters } from "destack:crypto/binding";
Asymmetric encryption parameters.
1export struct CryptoAsymmetricEncryptionParameters<'a> {2 algorithm: CryptoAsymmetricEncryptionAlgorithm;3 digest: CryptoDigestAlgorithm;4 label: &'a readonly [uint8];5}Members
algorithm: CryptoAsymmetricEncryptionAlgorithmAsymmetric encryption algorithm.
digest: CryptoDigestAlgorithmDigest algorithm.
label: &'a readonly [uint8]OAEP label bytes.