Skip to main content

min-max

// Create the Encoder with default options
MteEnc mteEncoder = new MteEnc();

// Get the minimum and maximum entropy byte length
int minEntropyBytes = mteEncoder.GetDrbgsEntropyMinBytes(mteEncoder.GetDrbg());
int maxEntropyBytes = mteEncoder.GetDrbgsEntropyMaxBytes(mteEncoder.GetDrbg());

// Get min and max personalization string byte length
int minPersonalBytes = mteEncoder.GetDrbgsPersonalMinBytes(mteEncoder.GetDrbg());
int maxPersonalBytes = mteEncoder.GetDrbgsPersonalMaxBytes(mteEncoder.GetDrbg());

// Get min and max nonce byte length
int minNonceBytes = mteEncoder.GetDrbgsNonceMinBytes(mteEncoder.GetDrbg());
int maxNonceBytes = mteEncoder.GetDrbgsNonceMaxBytes(mteEncoder.GetDrbg());