homomorphic_actors 0.0.1

Homomorphic Actors is a look at homomorphic encryption as run inside an actor model system.
Documentation
#[derive(Debug, Clone)]
pub enum TrustMessage {
    CreateKeys,
    ReplaceKey {
        key: uuid::Uuid,
    },
    RemoveKey {
        key: uuid::Uuid,
    },
}

#[derive(Debug, Clone, PartialEq)]
pub enum TrustResponse {
    Success,
    SuccessWithData {
        id: uuid::Uuid,
        data: Vec<u8>,
    },
    Failure {
        error: String,
    },
}