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