Skip to content

cyphera-labs/cyphera-ruby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

cyphera

CI Gem License

Data protection SDK for Ruby — format-preserving encryption (FF1/FF3), data masking, and hashing.

gem install cyphera

Usage

require 'cyphera'

# Auto-discover cyphera.json
c = Cyphera::Client.load

# Or load from a specific file
c = Cyphera::Client.from_file('./config/cyphera.json')

# Protect
protected = c.protect('123-45-6789', 'ssn')
# → "T01i6J-xF-07pX" (tagged, dashes preserved)

# Access (tag-based, no policy name needed)
accessed = c.access(protected)
# → "123-45-6789"

Engines

Engine Reversible Description
ff1 Yes NIST SP 800-38G FF1 format-preserving encryption
ff3 Yes NIST SP 800-38G Rev 1 FF3-1 format-preserving encryption
mask No Simple pattern masking (last4, first1, full, etc.)
hash No SHA-256/384/512, HMAC when key provided

Policy File (cyphera.json)

{
  "policies": {
    "ssn": { "engine": "ff1", "key_ref": "my-key", "tag": "T01" },
    "cc": { "engine": "ff1", "key_ref": "my-key", "tag": "T02" },
    "ssn_mask": { "engine": "mask", "pattern": "last4", "tag_enabled": false }
  },
  "keys": {
    "my-key": { "material": "2B7E151628AED2A6ABF7158809CF4F3C" }
  }
}

Cross-Language Compatible

All SDKs produce identical output for the same inputs:

Input:       123-45-6789
Java:        T01i6J-xF-07pX
Rust:        T01i6J-xF-07pX
Node:        T01i6J-xF-07pX
Python:      T01i6J-xF-07pX
Go:          T01i6J-xF-07pX
.NET:        T01i6J-xF-07pX
PHP:         T01i6J-xF-07pX
Ruby:        T01i6J-xF-07pX

Status

Alpha. API is unstable.

License

Apache 2.0 — Copyright 2026 Horizon Digital Engineering LLC

About

Data protection SDK for Ruby — format-preserving encryption (FF1/FF3), data masking, and hashing.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors