toWrappingKeySpec method

WrappingKeySpec toWrappingKeySpec()

Implementation

WrappingKeySpec toWrappingKeySpec() {
  switch (this) {
    case 'RSA_2048':
      return WrappingKeySpec.rsa_2048;
  }
  throw Exception('$this is not known in enum WrappingKeySpec');
}