pub type KemResult<T> = Result<T, KemError>;
KEM operation result type
pub enum KemResult<T> { Ok(T), Err(KemError), }
Contains the success value
Contains the error value