Metadata-Version: 2.4
Name: signedshot
Version: 0.1.2
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Rust
Classifier: Topic :: Security :: Cryptography
Summary: Validator for SignedShot media authenticity proofs
Keywords: signedshot,media,authenticity,validation,cryptography
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://signedshot.io
Project-URL: Repository, https://github.com/SignedShot/signedshot-validator

# SignedShot Validator

Validator for SignedShot media authenticity proofs.

## Overview

SignedShot is a media authenticity verification system. This validator checks cryptographic proofs (sidecars) that verify media was captured on a legitimate device.

## Installation

```bash
cargo install signedshot-validator
```

## Usage

```bash
signedshot validate photo.sidecar.json
```

## Development

Run these checks locally before pushing (same as CI):

```bash
cargo fmt --check   # Check formatting
cargo clippy -- -D warnings   # Lint
cargo test   # Run tests
cargo build --release   # Build
```

To fix formatting automatically:

```bash
cargo fmt
```

## License

MIT

