CryptographicBuffer.GenerateRandom(UInt32) Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Crea un búfer que contiene datos aleatorios.
public:
static IBuffer ^ GenerateRandom(unsigned int length);
static IBuffer GenerateRandom(uint32_t const& length);
public static IBuffer GenerateRandom(uint length);
function generateRandom(length)
Public Shared Function GenerateRandom (length As UInteger) As IBuffer
Parámetros
- length
-
UInt32
unsigned int
uint32_t
Longitud, en bytes, del búfer que se va a crear.
Devoluciones
Búfer de salida que contiene los datos aleatorios.
Ejemplos
using Windows.Security.Cryptography;
using Windows.Storage.Streams;
namespace Random
{
sealed partial class GenerateRandomDataApp : Application
{
public GenerateRandomDataApp()
{
// Initialize the application.
this.InitializeComponent();
// Create a buffer that contains random data.
String strRndHex = this.GenerateRndData();
// Create a random integer.
UInt32 uRnd = this.GenerateRndNumber();
}
public String GenerateRndData()
{
// Define the length, in bytes, of the buffer.
UInt32 length = 32;
// Generate random data and copy it to a buffer.
IBuffer buffer = CryptographicBuffer.GenerateRandom(length);
// Encode the buffer to a hexadecimal string (for display).
String hexRnd = CryptographicBuffer.EncodeToHexString(buffer);
return hexRnd;
}
public UInt32 GenerateRndNumber()
{
// Generate a random number.
UInt32 Rnd = CryptographicBuffer.GenerateRandomNumber();
return Rnd;
}
}
}