# CryptoSp80056aConcat

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

SP 800-56A concat derivation.

```ds title="CryptoSp80056aConcat"
export struct CryptoSp80056aConcat<'a> {
    digest: CryptoDigestAlgorithm;
    secret: &'a readonly [uint8];
    algorithmId: &'a readonly [uint8];
    partyUInfo: &'a readonly [uint8];
    partyVInfo: &'a readonly [uint8];
    publicInfo: &'a readonly [uint8];
    privateInfo: &'a readonly [uint8];
}
```

[language/library/src/crypto/binding/kdf.ds:79:94](https://github.com/destack-sh/destack/blob/main/language/library/src/crypto/binding/kdf.ds#L79-L94)

## Members

### `digest: CryptoDigestAlgorithm`

Digest algorithm.

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

Shared secret bytes.

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

Algorithm identifier bytes.

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

Party U info bytes.

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

Party V info bytes.

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

Public supplemental info bytes.

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

Private supplemental info bytes.
