view NaCl/randombytes.cs @ 49:7e4dae99f919

USBLib: fix unhandled exception in WinUSB shutdown after failure to open device
author Ivo Smits <Ivo@UCIS.nl>
date Mon, 19 Aug 2013 16:56:50 +0200
parents c873e3dd73fe
children
line wrap: on
line source

???using System;
using System.Security.Cryptography;

namespace UCIS.NaCl {
	public static class randombytes {
		public static void generate(Byte[] x) {
			RNGCryptoServiceProvider rnd = new RNGCryptoServiceProvider();
			rnd.GetBytes(x);
		}
		public static Byte[] generate(int count) {
			Byte[] bytes = new Byte[count];
			generate(bytes);
			return bytes;
		}
	}
}