Skip to content
/ XRng Public

C# library to generate an arbitrary array of cryptographically strong pseudo-random bytes.

License

Notifications You must be signed in to change notification settings

mdepaul/XRng

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XRng

C# library to generate an arbitrary array of cryptographically strong pseudo-random bytes. Used as the base functionality behind RandomizedList https://github.com/mdepaul/RandomizedList.git.

Useage

IPrng prng = new PrngSHA256();
byte oneByte = prng.GetRandomByte();
byte[] manyBytes = prng.GetRandomBytes(1024);

About

C# library to generate an arbitrary array of cryptographically strong pseudo-random bytes.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages