All Downloads are FREE. Search and download functionalities are using the official Maven repository.

a.clickzetta-java.1.2.9.source-code.encryption.proto Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
syntax = "proto3";

package cz.proto;

message EncryptionConfig {
  enum EncryptionType {
    NONE_ENCRYPTION = 0;
    DISABLE = 1;
    FULL_MANAGED = 2;
    BYOK_ALIYUN_KMS = 3;
    BYOK_AES128_KEY = 4;
  }

  enum EncryptionAlgorithm {
    NONE_ALGORITHM = 0;
    AES256 = 1;
    AES128 = 2;
  }
  EncryptionType encryption_type = 1;
  EncryptionAlgorithm encryption_algorithm = 2;
  string encryption_key_id = 3;
  string byok_config = 4;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy