RNGCryptoServiceProvider

RNGCryptoServiceProvider

我有以下代码。功能是生成特定大小的随机ID。但是我不断收到错误消息



我正在尝试使用.NET中的加密库,根据msdn,这是可以在这种情况下使用的功能之一,但是由于某些原因,我一直收到此错误。

有人可以帮忙吗?

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Security.Cryptography;
using System.Text;

namespace ONeRESPONSEAPP
{
    public class IdGenerator
    {
        public static string GetUniqueKey(int maxSize)
        {
            char[] chars = new char[45];
            chars =
            "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890".ToCharArray();
            byte[] data = new byte[1];
            RNGCryptoServiceProvider identity= new RNGCryptoServiceProvider();
            identity.GetNonZeroBytes(data);
            data = new byte[maxSize];
            identity.GetNonZeroBytes(data);
            StringBuilder result = new StringBuilder(maxSize);
            foreach (byte b in data)
            {
                result.Append(chars[b % (chars.Length)]);
            }
            return result.ToString();
        }
    }
}

最佳答案

System.Security.Cryptography.RNGCryptoServiceProvider.GetNonZeroBytes()not supported by Windows Phone 7
您可能想改用 RNGCryptoServiceProvider.GetBytes() ,它也具有强大的加密功能。

08-18 07:01