SealdSymEncKeyArray_Add method
void
SealdSymEncKeyArray_Add()
SealdSymEncKeyArray_Add adds a given SealdSymEncKey instance to the array.
SealdSymEncKeyArray_Add takes ownership of the given SealdSymEncKey.
The caller must not use it anymore, and must not call free on it.
@param array The SealdSymEncKeyArray to add a SealdSymEncKey instance to. @param d The SealdSymEncKey instance to add.
Implementation
void SealdSymEncKeyArray_Add(
ffi.Pointer<NativeSealdSymEncKeyArray> array,
ffi.Pointer<NativeSealdSymEncKey> d,
) {
return _SealdSymEncKeyArray_Add(
array,
d,
);
}