# CryptoAsymmetricEncryptionParameters

`import { CryptoAsymmetricEncryptionParameters } from "destack:crypto/binding";`

Asymmetric encryption parameters.

```ds title="CryptoAsymmetricEncryptionParameters"
export struct CryptoAsymmetricEncryptionParameters<'a> {
    algorithm: CryptoAsymmetricEncryptionAlgorithm;
    digest: CryptoDigestAlgorithm;
    label: &'a readonly [uint8];
}
```

[language/library/src/crypto/binding/key.ds:165:172](https://github.com/destack-sh/destack/blob/main/language/library/src/crypto/binding/key.ds#L165-L172)

## Members

### `algorithm: CryptoAsymmetricEncryptionAlgorithm`

Asymmetric encryption algorithm.

### `digest: CryptoDigestAlgorithm`

Digest algorithm.

### `label: &'a readonly [uint8]`

OAEP label bytes.
