> ## Documentation Index
> Fetch the complete documentation index at: https://core.anylayer.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Privacy Features

> Privacy-preserving features in ZKScore

## Overview

ZKScore implements privacy features including selective disclosure, ZK proofs, and encrypted data storage.

## Privacy Options

### Selective Disclosure

Prove specific claims without revealing all data:

<CodeGroup>
  ```javascript JavaScript theme={null}
  // Prove score > threshold without revealing exact score
  const canAccess = await zkScore.proveScoreThreshold(user, 500);
  ```
</CodeGroup>

### Private Attestations

Create attestations with encrypted data visible only to authorized parties.

## Related Documentation

* [ZK Proofs](/advanced/zk-proofs)
* [Trust Registry](/contracts/trust-registry/overview)
