#![doc(
html_favicon_url = "https://cipherstash.com/favicon.ico",
html_logo_url = "https://raw.githubusercontent.com/cipherstash/meta/main/cipherstash-logo.svg"
)]
#![doc = include_str!("../README.md")]
pub mod crypto;
pub mod encrypted_table;
pub mod traits;
pub use encrypted_table::{EncryptedTable, QueryBuilder};
pub use traits::{
Decryptable, Encryptable, Identifiable, IndexType, Pk, PkSk, PrimaryKey, Searchable,
SingleIndex,
};
pub mod errors;
pub use errors::Error;
#[doc(hidden)]
pub use cipherstash_dynamodb_derive::{Decryptable, Encryptable, Identifiable, Searchable};
pub use cipherstash_client::encryption;
pub type Key = [u8; 32];