# CryptoAsymmetricEncryptionAlgorithm

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

Asymmetric encryption algorithm selector.

```ds title="CryptoAsymmetricEncryptionAlgorithm"
export enum CryptoAsymmetricEncryptionAlgorithm {
    RsaPkcs1v15 = 1,
    RsaOaep = 2,
}
```

[language/library/src/crypto/binding/algorithm.ds:118:123](https://github.com/destack-sh/destack/blob/main/language/library/src/crypto/binding/algorithm.ds#L118-L123)

## Variants

### `RsaPkcs1v15 = 1`

RSAES-PKCS1-v1_5.

### `RsaOaep = 2`

RSAES-OAEP.
