load method

  1. @override
void load(
  1. Pointer<NativeType> fhe,
  2. Pointer<Uint8> serialData,
  3. int serialSize
)
override

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);
}