aeadParams property

AeadParams get aeadParams

Gets the AEAD parameters.

Throws an AskarKeyException if the parameters retrieval fails.

Implementation

AeadParams get aeadParams {
  try {
    return askarKeyAeadGetParams(localKeyHandle).getValueOrException();
  } catch (e) {
    throw AskarKeyException('Error getting aead params: $e');
  }
}