deserialize method
Interface for intput serialization.
Implementation
@override
void deserialize(SerializableInput input) {
formatId = deserializeString(input);
key = deserializeStringBytes(input);
if (formatId != 'ssh-ed25519') throw FormatException(formatId);
}