SealdEncryptionSessionArray_Add method

void SealdEncryptionSessionArray_Add(
  1. Pointer<NativeSealdEncryptionSessionArray> array,
  2. Pointer<NativeSealdEncryptionSession> es
)

SealdEncryptionSessionArray_Add adds an encryption session to the array.

@param array The SealdEncryptionSessionArray to add the encryption session to. @param es The Encryption Session to add.

Implementation

void SealdEncryptionSessionArray_Add(
  ffi.Pointer<NativeSealdEncryptionSessionArray> array,
  ffi.Pointer<NativeSealdEncryptionSession> es,
) {
  return _SealdEncryptionSessionArray_Add(
    array,
    es,
  );
}