toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case EncryptionAlgorithmSpec.symmetricDefault:
      return 'SYMMETRIC_DEFAULT';
    case EncryptionAlgorithmSpec.rsaesOaepSha_1:
      return 'RSAES_OAEP_SHA_1';
    case EncryptionAlgorithmSpec.rsaesOaepSha_256:
      return 'RSAES_OAEP_SHA_256';
  }
}