cipherstash-dynamodb 0.8.3

CipherStash SDK for searchable, in-use encryption for DynamoDB
Documentation
#![allow(unused_imports)]

// Derive Traits
use cipherstash_dynamodb::{Decryptable, Encryptable, Searchable};

// Errors
use cipherstash_dynamodb::{
    errors::{DeleteError, GetError, InitError, PutError, QueryError},
    Error,
};

use cipherstash_dynamodb::traits::TryFromPlaintext;

// Error Dependencies
use cipherstash_dynamodb::errors::{
    BuildError, ConfigError, EncryptionError, SealError, WriteConversionError,
};

// Encrypted Table
use cipherstash_dynamodb::EncryptedTable;

fn main() {}