menu

CryptoStoreKind

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

Crypto store kind.

language/library/src/crypto/binding/store.ds:26:35
1export enum CryptoStoreKind {2    System = 1,3    User = 2,4    Machine = 3,5    Ephemeral = 4,6}

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.