Skip to content

That's a fortuna PRNG implementation with C# .NET.

Notifications You must be signed in to change notification settings

davemk99/FortunaPRNG

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FortunaPRNG

That's a fortuna PRNG implementation with C# .NET. Generating cryptographically secure random number has never been easier,you can just do

var provider = new Provider();
var num=provider.GetRandomInt();

to generate your cryptographically secure number.