# CryptoKeyWrapParameters

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

Key-wrap parameters.

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

[language/library/src/crypto/binding/key.ds:183:190](https://github.com/destack-sh/destack/blob/main/language/library/src/crypto/binding/key.ds#L183-L190)

## Members

### `algorithm: CryptoKeyWrapAlgorithm`

Key-wrap algorithm.

### `digest: CryptoDigestAlgorithm`

Digest algorithm for RSA-OAEP wrapping.

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

OAEP label for RSA-OAEP wrapping.
