# Sandbox.KeyStore

Allows storing files by hashed keys, rather than by actual filename. This is sometimes useful.

- Kind: class
- Namespace: `Sandbox`
- Assembly: `Sandbox.Engine`
- Modifiers: sealed

## Methods

- [`CreateGlobalCache`](/api/Sandbox.KeyStore/CreateGlobalCache): Creates a keystore which is in a global cache position. The folder can be deleted at any time, and it's all fine and no-one cares.
- [`Exists`](/api/Sandbox.KeyStore/Exists): Check if a key exists
- [`Get`](/api/Sandbox.KeyStore/Get): Get stored bytes, or return null
- [`Remove`](/api/Sandbox.KeyStore/Remove): Remove a key
- [`Set`](/api/Sandbox.KeyStore/Set): Store a bunch of bytes
- [`TryGet`](/api/Sandbox.KeyStore/TryGet): Get stored bytes, or return false
