Sion.Useful.Security 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Sion.Useful.Security --version 2.0.0
NuGet\Install-Package Sion.Useful.Security -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Sion.Useful.Security" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sion.Useful.Security --version 2.0.0
#r "nuget: Sion.Useful.Security, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Sion.Useful.Security as a Cake Addin
#addin nuget:?package=Sion.Useful.Security&version=2.0.0

// Install Sion.Useful.Security as a Cake Tool
#tool nuget:?package=Sion.Useful.Security&version=2.0.0

Sion.Useful.Security

NuGet package that provides useful cryptographically-strong static methods. Specifically, random value generation.

Sion.Useful.Security.Random

public static bool Bool()
public static byte[] Bytes(int numOfBytes = 16)
public static double Double()
public static float Float()
public static int Int()
public static short Int16()
public static int Int32()
public static long Int64()
public static long Long()
public static short Short()

How to use:

First, download the Sion.Useful.Security NuGet package, then include this using statement at the top of the file:

using Sion.Useful.Security;

Alternatively, if you're having ambiguous references between Sion.Useful.Security.Random and System.Random, and you only want to use Sion.Useful.Security.Random:

using Random = Sion.Useful.Security.Random;

Random

bool randomBoolean = Random.Bool();
byte[] randomBytes = Random.Bytes(20); // Array will be of length 20
double randomDouble = Random.Double();
float randomFloat = Random.Float();
int randomInt = Random.Int(); // Note: You can also use Random.Int32
long randomLong = Random.Long(); // Note: You can also use Random.Int64
short randomShort = Random.Short(); // Note: You can also use Random.Int16
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.0 102 2/7/2024
2.0.0 81 2/2/2024
1.0.1 117 9/29/2023
1.0.0 119 9/26/2023

Update to .NET 8.