├── .circleci └── config.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src ├── error.rs ├── keyring.rs ├── keyring │ ├── keyringsecret.rs │ ├── linux.rs │ ├── macos.rs │ ├── sqlcipher.rs │ └── windows.rs ├── lib.rs └── main.rs └── tests ├── box.rs └── threads.rs /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/README.md -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/keyring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/src/keyring.rs -------------------------------------------------------------------------------- /src/keyring/keyringsecret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/src/keyring/keyringsecret.rs -------------------------------------------------------------------------------- /src/keyring/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/src/keyring/linux.rs -------------------------------------------------------------------------------- /src/keyring/macos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/src/keyring/macos.rs -------------------------------------------------------------------------------- /src/keyring/sqlcipher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/src/keyring/sqlcipher.rs -------------------------------------------------------------------------------- /src/keyring/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/src/keyring/windows.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/tests/box.rs -------------------------------------------------------------------------------- /tests/threads.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelodder7/cryptex/HEAD/tests/threads.rs --------------------------------------------------------------------------------