scintia-96 0.3.2

A lightweight, keyed 96-bit permutation based on the Speck cipher, designed for unique ID derivation.
Documentation
# Run all tests with default features
test:
    cargo test

# Run all tests with all features enabled
test-all:
    cargo test --all-features

# Run tests for specific feature sets
test-no-features:
    cargo test --no-default-features

test-cipher:
    cargo test --features cipher

# Run clippy for all features
lint:
    cargo clippy --all-features -- -D warnings

# Check compilation for all features
check:
    cargo check --all-features

# Format the code
fmt *args:
    cargo fmt --all {{args}}