RSAKeyData.fromBytes constructor
Implementation
factory RSAKeyData.fromBytes(List<int> response, KeySlot slot) {
final data = TlvData.parse(response).get(0x7F49);
final modulus = data.getValue(0x81);
final exponent = data.getValue(0x82);
return RSAKeyData(modulus, exponent, slot);
}