pub struct Drbg {
pub entropy_input: Vec<u8>,
pub nonce: Vec<u8>,
pub perso_string: Vec<u8>,
pub other_input: Vec<DrbgOtherInput>,
/* private fields */
}Fields§
§entropy_input: Vec<u8>§nonce: Vec<u8>§perso_string: Vec<u8>§other_input: Vec<DrbgOtherInput>Trait Implementations§
Source§impl TestCase for Drbg
impl TestCase for Drbg
fn new(test: &str, tgdata: &TestGroupData) -> AcvpResult<Self>where
Self: Sized,
fn get_result(&self) -> AcvpResult<JsonValue>
fn dump_result(&self) -> AcvpResult<String>
fn pretty_result(&self) -> AcvpResult<String>
Source§impl TestResult<Vec<u8>> for Drbg
impl TestResult<Vec<u8>> for Drbg
fn set_result(&mut self, res: Vec<u8>) -> AcvpResult<()>
impl Eq for Drbg
impl StructuralPartialEq for Drbg
Auto Trait Implementations§
impl Freeze for Drbg
impl RefUnwindSafe for Drbg
impl Send for Drbg
impl Sync for Drbg
impl Unpin for Drbg
impl UnwindSafe for Drbg
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more