load method
Load a key from a serialized data
The fhe
library is used to validate the serialized data
The serialData
is the serialized data of serialSize
bytes
Implementation
@override
void load(Pointer fhe, Pointer<Uint8> serialData, int serialSize) {
sealMagicNumber(serialData, serialSize);
super.load(fhe, serialData, serialSize);
}