toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Algorithm.aes128:
      return 'aes128';
    case Algorithm.aes192:
      return 'aes192';
    case Algorithm.aes256:
      return 'aes256';
  }
}