public enum CryptoOperation {
    case encrypt, decrypt

    public func toCCOperation() -> CCOperation {
        switch self {