deserialize method

  1. @override
void deserialize(
  1. SerializableInput input
)
override

Interface for intput serialization.

Implementation

@override
void deserialize(SerializableInput input) {
  formatId = deserializeString(input);
  if (formatId != Key.name(Key.RSA)) throw FormatException(formatId);
  e = deserializeMpInt(input);
  n = deserializeMpInt(input);
}