Enum EncryptionVersion

java.lang.Object
java.lang.Enum<EncryptionVersion>
com.azure.storage.blob.specialized.cryptography.EncryptionVersion
All Implemented Interfaces:
Serializable, Comparable<EncryptionVersion>, java.lang.constant.Constable

public enum EncryptionVersion extends Enum<EncryptionVersion>
Specifies the version of the client side encryption protocol to use.
  • Enum Constant Details

    • V1

      @Deprecated public static final EncryptionVersion V1
      Deprecated.
      Use V2 instead
      Version 1 of the client side encryption protocol. Deprecated for security reasons but supported for compatibility. Should not be used for new uploads. Uses AES/CBC/PKCS5
    • V2

      public static final EncryptionVersion V2
      Version 2 of the client side encryption protocol. Uses AES/GCM/NoPadding
  • Method Details

    • values

      public static EncryptionVersion[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static EncryptionVersion valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null