Metadata-Version: 2.4
Name: cacheguard
Version: 0.3.0
Summary: A simple, secure Python datastore protected by Sops or Age
Author-email: Michael Buckley <michaelcbuckley@proton.me>
License: MIT
License-File: LICENSE
Requires-Python: >=3.13
Description-Content-Type: text/markdown

# CacheGuard

A simple and secure Python datastore protected by [Sops](https://getsops.io/) or [Age](https://age-encryption.org/).

Comes in two varieties: simple key-value and simple text stores.

## Cache Types

* `KeyCache` - Simple key-value store
* `TextCache` - Simple text file store

## Backends

Cacheguard utilizes backends for encryption.
Default backend is currently set to Sops (as the original cache was Sops only).
The following backends are available:

- [Sops](https://getsops.io/)
- [Age](https://age-encryption.org/)

Cacheguard will call the appropriate binary for the backend chosen.
As such, the files produced are fully compatible with all tooling that either workflow supports

## Requires

This is an integration with either Sops or Age, and will *require* a functional external setup with either program.

For assistance with Sops, see their [documentation](https://getsops.io/docs/).
For assistance with Age, see their [documentation](https://filippo.io/age/age.1).

CURRENTLY SUPPORTED SOPS IDENTITIES: Age, OpenPGP (AKA GPG)

Additional Sops identities are coming soon.

## Age Integration

All age-encrypted material produced by Cacheguard is armored (ascii) and terminal-safe.
No binary blobs are used anywhere as `stdin` and `stdout` are heavily used in the library itself.

Any age-compatible program or tool can interact with the resulting files normally in any compatible workflow.

## Sops Integrations

At-rest files can be examined if they are decrypted by sops, without needing an active Python session.
The type of file is "binary" from a sops perspective, this fully encrypts the body where keys are also not visible without decryption.
Additionally, the binary type does not add newline characters to results, as the other Sops types do.

## Threat Models

This modules protects data at rest.
It does not protect data at run time.
It may be possible for other modules/processes/logging/etc to view it.

Potentially useful for operational caches and other sensitive record keeping that needs to be local and transferred via git.

## Examples

### Basic Logging with TextCache

```python
from cacheguard import TextCache
from datetime import datetime

# Initialize cache with Sops encryption keys
cache = TextCache(
    "logs.sops",
    age_pubkeys=["age1..."],  # List of Age keys, which can include SSH pubkeys as well now 
    pgp_fingerprints=["ABC123..."]  # Your PGP fingerprints
)

# Log some events
cache.append(f"[{datetime.now()}] Application started")
cache.append(f"[{datetime.now()}] User login: user123")
cache.append(f"[{datetime.now()}] Database connection established")

# Save encrypted logs
cache.save()
```

### Key-Value Storage with KeyCache

```python
from cacheguard import KeyCache

# Store sensitive configuration
config_vars = KeyCache("config.sops", age_pubkeys=["age1..."])
config_vars.add({"api_key": "secret123", "db_password": "secure456"})
config_vars.save()

# Load into environment variables
config_vars.deploy()  # Makes api_key and db_password available as env vars
```

### Environment Variables

Besides deploying sensitive environment variables, this library can utilize environment variables for simplifying usage.
The Sops backend will natively use any environment variable that Sops uses.

Age does not utilize as many, so Cacheguard introduces one:

```
CACHEGUARD_AGE_IDENTITY_PATH
```

Which is the file path location to the an age identity file for use with decryption.
The identity path can also be programmatically defined at cache decryption function calls.
