# CryptoStoreKind

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

Crypto store kind.

```ds title="CryptoStoreKind"
export enum CryptoStoreKind {
    System = 1,
    User = 2,
    Machine = 3,
    Ephemeral = 4,
}
```

[language/library/src/crypto/binding/store.ds:26:35](https://github.com/destack-sh/destack/blob/main/language/library/src/crypto/binding/store.ds#L26-L35)

## Variants

### `System = 1`

Host system trust and key provider.

### `User = 2`

User-scoped host key and certificate store.

### `Machine = 3`

Machine-scoped host key and certificate store.

### `Ephemeral = 4`

Process-scoped ephemeral key and certificate store.
