Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

안전한 난수를 생성하는 C# 프로그램

<시간/>

안전한 난수를 위해 RNGCryptoServiceProvider 클래스를 사용하십시오. 암호화 난수 생성기를 구현합니다.

동일한 클래스를 사용하여 다음을 사용하여 임의의 값을 찾았습니다. -

using (RNGCryptoServiceProvider crypto = new RNGCryptoServiceProvider()) {
   byte[] val = new byte[6];
   crypto.GetBytes(val);
   randomvalue = BitConverter.ToInt32(val, 1);
}

임의의 보안 번호를 생성하려면 다음 코드를 실행해 보십시오.

예시

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Security.Cryptography;
public class Demo {
   public static void Main(string[] args) {
      for (int i = 0; i <= 5; i++) {
         Console.WriteLine(randomFunc());
      }
   }
   private static double randomFunc() {
      string n = "";
      int randomvalue;
      double n2;
      using (RNGCryptoServiceProvider crypto = new RNGCryptoServiceProvider()) {
         byte[] val = new byte[6];
         crypto.GetBytes(val);
         randomvalue = BitConverter.ToInt32(val, 1);
      }
      n += randomvalue.ToString().Substring(1, 1)[0];
      n += randomvalue.ToString().Substring(2, 1)[0];
      n += randomvalue.ToString().Substring(3, 1)[0];
      n += randomvalue.ToString().Substring(4, 1)[0];
      n += randomvalue.ToString().Substring(5, 1)[0];
      double.TryParse(n, out n2);
      n2 = n2 / 100000;
      return n2;
   }
}

출력

0.13559
0.0465
0.18058
0.26494
0.52231
0.78927