toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AlgorithmSpec.rsaesPkcs1V1_5:
      return 'RSAES_PKCS1_V1_5';
    case AlgorithmSpec.rsaesOaepSha_1:
      return 'RSAES_OAEP_SHA_1';
    case AlgorithmSpec.rsaesOaepSha_256:
      return 'RSAES_OAEP_SHA_256';
  }
}