# CryptoCipherOutput

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

Cipher output.

```ds title="CryptoCipherOutput"
export struct CryptoCipherOutput {
    bytes: uint8[];
    tag: uint8[];
}
```

[language/library/src/crypto/binding/cipher.ds:34:39](https://github.com/destack-sh/destack/blob/main/language/library/src/crypto/binding/cipher.ds#L34-L39)

## Members

### `bytes: uint8[]`

Cipher output bytes.

### `tag: uint8[]`

Authentication tag for AEAD encryption.
