Prng Unicode C Reference Documentation

Prng

Current Version: 9.5.0.97

Provides secure pseudo-random number generation (PRNG). Implements the Fortuna PRNG algorithm using 256-bit AES and SHA256. Also provides methods for accessing sources of system entropy.

Create/Dispose

HCkPrngW instance = CkPrngW_Create();
// ...
CkPrngW_Dispose(instance);
HCkPrngW CkPrngW_Create(void);

Creates an instance of the HCkPrngW object and returns a handle ("void *" pointer). The handle is passed in the 1st argument for the functions listed on this page.

void CkPrngW_Dispose(HCkPrngW handle);

Objects created by calling CkPrngW_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function. Also, any handle returned by a Chilkat "C" function must also be freed by the application by calling the appropriate Dispose method, such as CkPrngW_Dispose.

Properties

DebugLogFilePath
void CkPrngW_getDebugLogFilePath(HCkPrngW cHandle, HCkString retval);
void CkPrngW_putDebugLogFilePath(HCkPrngW cHandle, const wchar_t *newVal);
const wchar_t *CkPrngW_debugLogFilePath(HCkPrngW cHandle);

If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.

This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:

  1. a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
  2. the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
  3. there is an internal problem (bug) in the Chilkat code that causes the hang.

top
LastErrorHtml
void CkPrngW_getLastErrorHtml(HCkPrngW cHandle, HCkString retval);
const wchar_t *CkPrngW_lastErrorHtml(HCkPrngW cHandle);

Provides information in HTML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorText
void CkPrngW_getLastErrorText(HCkPrngW cHandle, HCkString retval);
const wchar_t *CkPrngW_lastErrorText(HCkPrngW cHandle);

Provides information in plain-text format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorXml
void CkPrngW_getLastErrorXml(HCkPrngW cHandle, HCkString retval);
const wchar_t *CkPrngW_lastErrorXml(HCkPrngW cHandle);

Provides information in XML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastMethodSuccess
BOOL CkPrngW_getLastMethodSuccess(HCkPrngW cHandle);
void CkPrngW_putLastMethodSuccess(HCkPrngW cHandle, BOOL newVal);

Indicate whether the last method call succeeded or failed. A value of TRUE indicates success, a value of FALSE indicates failure. This property is automatically set for method calls. It is not modified by property accesses. The property is automatically set to indicate success for the following types of method calls:

  • Any method that returns a string.
  • Any method returning a Chilkat object, binary bytes, or a date/time.
  • Any method returning a standard boolean status value where success = TRUE and failure = FALSE.
  • Any method returning an integer where failure is defined by a return value less than zero.

Note: Methods that do not fit the above requirements will always set this property equal to TRUE. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.

top
PrngName
void CkPrngW_getPrngName(HCkPrngW cHandle, HCkString retval);
void CkPrngW_putPrngName(HCkPrngW cHandle, const wchar_t *newVal);
const wchar_t *CkPrngW_prngName(HCkPrngW cHandle);
Introduced in version 9.5.0.52

The name of the PRNG selected. Currently, the default and only possible value is "fortuna". See the links below for information about the Fortuna PRNG.

Note: Because "fortuna" is the only valid choice, assigning this property to a different value will always be ignored (until alternative PRNG algorithms are added in the future).

More Information and Examples
top
VerboseLogging
BOOL CkPrngW_getVerboseLogging(HCkPrngW cHandle);
void CkPrngW_putVerboseLogging(HCkPrngW cHandle, BOOL newVal);

If set to TRUE, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is FALSE. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
void CkPrngW_getVersion(HCkPrngW cHandle, HCkString retval);
const wchar_t *CkPrngW_version(HCkPrngW cHandle);

Version of the component/library, such as "9.5.0.94"

More Information and Examples
top

Methods

AddEntropy
BOOL CkPrngW_AddEntropy(HCkPrngW cHandle, const wchar_t *entropy, const wchar_t *encoding);
Introduced in version 9.5.0.52

Adds entropy to the PRNG (i.e. adds more seed material to the PRNG). Entropy can be obtained by calling GetEntropy, or the application might have its own sources for obtaining entropy. An application may continue to add entropy at desired intervals. How the entropy is used depends on the PRNG algorithm. For Fortuna, the entropy is added to the internal entropy pools and used when internal automatic reseeding occurs.

An application may add non-random entropy for testing purposes. This allows for the reproduction of the same pseudo-random number sequence for testing and debugging purposes.

The entropy bytes are passed in entropy using the binary encoding specified in encoding. Binary encodings can be "hex", "base64", etc. See the link below for supported binary encodings.

Returns TRUE for success, FALSE for failure.

top
AddEntropyBytes
BOOL CkPrngW_AddEntropyBytes(HCkPrngW cHandle, HCkByteData entropy);
Introduced in version 9.5.0.52

Adds entropy to the PRNG (i.e. adds more seed material to the PRNG). Entropy can be obtained by calling GetEntropy, or the application might have its own sources for obtaining entropy. An application may continue to add entropy at desired intervals. How the entropy is used depends on the PRNG algorithm. For Fortuna, the entropy is added to the internal entropy pools and used when internal automatic reseeding occurs.

An application may add non-random entropy for testing purposes. This allows for the reproduction of the same pseudo-random number sequence for testing and debugging purposes.

Returns TRUE for success, FALSE for failure.

top
ExportEntropy
BOOL CkPrngW_ExportEntropy(HCkPrngW cHandle, const wchar_t *outStr);
const wchar_t *CkPrngW_exportEntropy(HCkPrngW cHandle);
Introduced in version 9.5.0.52

Exports all accumulated entropy and returns it in a base64 encoded string. (Internally the entropy pools are re-hashed so that a hacker cannot determine the state of the PRNG even if the exported entropy was obtained.) When a system restarts it can import what was previously exported by calling ImportEntropy. This ensures an adequate amount of entropy is immediately available when first generating random bytes.

For example, an application could persist the exported entropy to a database or file. When the application starts again, it could import the persisted entropy, add some entropy from a system source (via the GetEntropy/AddEntropy methods), and then begin generating random data.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
FirebasePushId
BOOL CkPrngW_FirebasePushId(HCkPrngW cHandle, const wchar_t *outStr);
const wchar_t *CkPrngW_firebasePushId(HCkPrngW cHandle);
Introduced in version 9.5.0.58

Generates a random Firebase Push ID. See Firebase Unique Identifiers.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
GenRandom
BOOL CkPrngW_GenRandom(HCkPrngW cHandle, int numBytes, const wchar_t *encoding, const wchar_t *outStr);
const wchar_t *CkPrngW_genRandom(HCkPrngW cHandle, int numBytes, const wchar_t *encoding);
Introduced in version 9.5.0.52

Generates and returns numBytes random bytes in encoded string form. The binary encoding is specified by encoding, and can be "hex", "base64", etc. (See the link below for supported binary encodings.)

Important: If no entropy was explicitly added prior to first call to generate random bytes, then 32 bytes of entropy (from the system source, such as /dev/random) are automatically added to seed the PRNG.

Returns TRUE for success, FALSE for failure.

top
GenRandomBd
BOOL CkPrngW_GenRandomBd(HCkPrngW cHandle, int numBytes, HCkBinDataW bd);
Introduced in version 9.5.0.66

Appends numBytes random bytes to bd.

Important: If no entropy was explicitly added prior to first call to generate random bytes, then 32 bytes of entropy (from the system source, such as /dev/random) are automatically added to seed the PRNG.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
GenRandomBytes
BOOL CkPrngW_GenRandomBytes(HCkPrngW cHandle, int numBytes, const unsigned char * outBytes);
Introduced in version 9.5.0.52

Generates and returns numBytes random bytes.

Important: If no entropy was explicitly added prior to first call to generate random bytes, then 32 bytes of entropy (from the system source, such as /dev/random) are automatically added to seed the PRNG.

Returns TRUE for success, FALSE for failure.

top
GetEntropy
BOOL CkPrngW_GetEntropy(HCkPrngW cHandle, int numBytes, const wchar_t *encoding, const wchar_t *outStr);
const wchar_t *CkPrngW_getEntropy(HCkPrngW cHandle, int numBytes, const wchar_t *encoding);
Introduced in version 9.5.0.52

Reads real entropy bytes from a system entropy source and returns as an encoded string. On Linux/Unix based systems, including MAC OS X, this is accomplished by reading /dev/random. On Windows systems, it uses the Microsoft Cryptographic Service Provider's CryptGenRandom method.

It is recommended that no more than 32 bytes of entropy should be retrieved to initially seed a PRNG. Larger amounts of entropy are fairly useless. However, an app is free to periodically add bits of entropy to a long-running PRNG as it sees fit.

The encoding specifies the encoding to be used. It can be "hex", "base64", or many other possibilities. See the link below.

Returns TRUE for success, FALSE for failure.

top
GetEntropyBytes
BOOL CkPrngW_GetEntropyBytes(HCkPrngW cHandle, int numBytes, const unsigned char * outBytes);
Introduced in version 9.5.0.52

Reads and returns real entropy bytes from a system entropy source. On Linux/Unix based systems, including MAC OS X, this is accomplished by reading /dev/random. On Windows systems, it uses the Microsoft Cryptographic Service Provider's CryptGenRandom method.

It is recommended that no more than 32 bytes of entropy should be retrieved to initially seed a PRNG. Larger amounts of entropy are fairly useless. However, an app is free to periodically add bits of entropy to a long-running PRNG as it sees fit.

Returns TRUE for success, FALSE for failure.

top
ImportEntropy
BOOL CkPrngW_ImportEntropy(HCkPrngW cHandle, const wchar_t *entropy);
Introduced in version 9.5.0.52

Imports entropy from previously exported entropy. See the ExportEntropy method for more information.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
RandomInt
int CkPrngW_RandomInt(HCkPrngW cHandle, int low, int high);
Introduced in version 9.5.0.52

Generates and returns a random integer between low and high (inclusive). For example, if low is 4 and high is 8, then random integers in the range 4, 5, 6, 7, 8 are returned.

More Information and Examples
top
RandomPassword
BOOL CkPrngW_RandomPassword(HCkPrngW cHandle, int length, BOOL mustIncludeDigit, BOOL upperAndLowercase, const wchar_t *mustHaveOneOf, const wchar_t *excludeChars, const wchar_t *outStr);
const wchar_t *CkPrngW_randomPassword(HCkPrngW cHandle, int length, BOOL mustIncludeDigit, BOOL upperAndLowercase, const wchar_t *mustHaveOneOf, const wchar_t *excludeChars);
Introduced in version 9.5.0.52

Generates and returns a random password of a specified length. If mustIncludeDigit is TRUE, the generated password will contain at least one digit (0-9). If upperAndLowercase is TRUE, then generated password will contain both lowercase and uppercase USASCII chars (a-z and A-Z). If mustHaveOneOf is a non-empty string, it contains the set of non-alphanumeric characters, one of which must be included in the password. For example, mustHaveOneOf might be the string "!@#$%". If excludeChars is a non-empty string, it contains chars that should be excluded from the password. A typical need would be to exclude chars that appear similar to others, such as i, l, 1, L, o, 0, O.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
RandomString
BOOL CkPrngW_RandomString(HCkPrngW cHandle, int length, BOOL bDigits, BOOL bLower, BOOL bUpper, const wchar_t *outStr);
const wchar_t *CkPrngW_randomString(HCkPrngW cHandle, int length, BOOL bDigits, BOOL bLower, BOOL bUpper);
Introduced in version 9.5.0.52

Generates and returns a random string that may contain digits (0-9), lowercase ASCII (a-z) , and uppercase ASCII (A-Z). To include numeric digits, set bDigits equal to TRUE. To include lowercase ASCII, set bLower equal to TRUE. To include uppercase ASCII, set bUpper equal to TRUE. The length of the string to be generated is specified by length.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top