博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
RNGBasics.cs
阅读量:5789 次
发布时间:2019-06-18

本文共 1817 字,大约阅读时间需要 6 分钟。

using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
namespace APress.DotNetSecurity.Chapter2.RNGBasics
{
    class RNGBasicsTester
    {
        static void Main(string[] args)
        {
            try
            {
                Console.WriteLine("Creating an RNG off of CSP parameters...");
                CspParameters csp = new CspParameters(1,
                    "Microsoft Enhanced Cryptographic Provider v1.0", "Administrator");
                RandomNumberGenerator rng = new RNGCryptoServiceProvider(csp);
                
                Console.WriteLine("Getting random data...");
                byte[] randomData = new byte[18];
                rng.GetBytes(randomData);
                Console.WriteLine("Retrieved the following random bytes:  " +
                    ArrayToHexString(randomData));
                Console.WriteLine("Translating the byte data to integer data...");
                BinaryReader binReader = new BinaryReader(new MemoryStream(randomData));
                try
                {
                    int randomValue;
                    do
                    {
                        randomValue = binReader.ReadInt32();
                        Console.WriteLine("New random integer value:  " +
                            randomValue.ToString());
                    } while(true);
                }
                catch(EndOfStreamException eose)
                {
                    Console.WriteLine("Got the expected EndOfStreamException with " +
                        "the stream.");
                }
            }
            catch(CryptographicUnexpectedOperationException cuoe)
            {
                Console.WriteLine("CryptographicUnexpectedOperationException:  "
                    + cuoe.Message);
                Console.WriteLine(cuoe.StackTrace);
            }
            catch(CryptographicException ce)
            {
                Console.WriteLine("CryptographicException:  " + ce.Message);
                Console.WriteLine(ce.StackTrace);
            }
            catch(Exception ge)
            {
                Console.WriteLine("Exception:  " + ge.GetType().Name + " " + ge.Message);
                Console.WriteLine(ge.StackTrace);
            }
            finally
            {
                Console.WriteLine("Press the return key to continue...");
                Console.Read();
            }
        }
        private static String ArrayToHexString(byte[] ByteData)
        {
            StringBuilder retVal = new StringBuilder();
            
            foreach(byte b in ByteData)
            {
                retVal.Append(b);
                retVal.Append(" ");
            }
            retVal.Remove(retVal.Length - 1, 1);
            return retVal.ToString();
        }    
    }
}

转载地址:http://nxmyx.baihongyu.com/

你可能感兴趣的文章
LNMP之Mysql主从复制(四)
查看>>
阅读Spring源代码(1)
查看>>
nagios一键安装脚本,nagios监控被监控主机上的应用服务mysql数据库
查看>>
grep 命令
查看>>
JS二维数组的声明和使用
查看>>
v$archive_gap dg dataguard 断档处理 scn恢复
查看>>
问责IT风险管理:CIO需关注两个重点
查看>>
Winform打包发布图解
查看>>
PDF文件怎么编辑,超简单的方法
查看>>
EasyUI基础入门之Easyloader(载入器)
查看>>
Uva 839 Not so Mobile
查看>>
30款超酷的HTTP 404页面未找到错误设计
查看>>
程序猿必备 MyEclipse2013-2014系列
查看>>
java中ArrayList 、LinkList区别
查看>>
Spring ’14 Wave Update: Installing Dynamics CRM on Tablets for Windows 8.1
查看>>
利用rand7()构造rand10()
查看>>
MySQL 备份与恢复
查看>>
吃午饭前,按书上的代码写会儿--Hunt the Wumpus第一个版本
查看>>
easyui中combobox的值改变onchang事件
查看>>
Eclipse魔法堂:任务管理器
查看>>