# CryptoCertificateRevocationMode

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

Revocation policy for certificate verification.

```ds title="CryptoCertificateRevocationMode"
export enum CryptoCertificateRevocationMode {
    Default = 1,
    Strict = 2,
    Disabled = 3,
}
```

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

## Variants

### `Default = 1`

Use host default revocation behavior.

### `Strict = 2`

Require successful revocation checks.

### `Disabled = 3`

Skip revocation checks.
