System::Security::Cryptography::RandomNumberGenerator::GetBytes método

RandomNumberGenerator::GetBytes(ArrayPtr<uint8_t>) method

Llena los elementos existentes del arreglo con bytes aleatorios.

virtual void System::Security::Cryptography::RandomNumberGenerator::GetBytes(ArrayPtr<uint8_t> bytes)=0
ParámetroTipoDescripción
bytesArrayPtr<uint8_t>Arreglo de bytes a rellenar.

Ver también

RandomNumberGenerator::GetBytes(ArrayPtr<uint8_t>, int, int) method

Llena la porción existente del arreglo con bytes aleatorios.

virtual void System::Security::Cryptography::RandomNumberGenerator::GetBytes(ArrayPtr<uint8_t> bytes, int offset, int count)
ParámetroTipoDescripción
bytesArrayPtr<uint8_t>Matriz de bytes para llenar porción de.
desplazamientointÍndice inicial de la porción.
countintTamaño de la porción.

Ver también

RandomNumberGenerator::GetBytes(System::Details::ArrayView<uint8_t>) method

Llena los elementos existentes de la vista del arreglo con bytes aleatorios.

virtual void System::Security::Cryptography::RandomNumberGenerator::GetBytes(System::Details::ArrayView<uint8_t> bytes)
ParámetroTipoDescripción
bytesSystem::Details::ArrayView<uint8_t>Vista de matriz de bytes para llenar.

Ver también

RandomNumberGenerator::GetBytes(System::Details::ArrayView<uint8_t>, int, int) method

Llena la porción existente de la vista del arreglo con bytes aleatorios.

virtual void System::Security::Cryptography::RandomNumberGenerator::GetBytes(System::Details::ArrayView<uint8_t> bytes, int offset, int count)
ParámetroTipoDescripción
bytesSystem::Details::ArrayView<uint8_t>Vista de matriz de bytes para llenar porción de.
desplazamientointÍndice inicial de la porción.
countintTamaño de la porción.

Ver también

RandomNumberGenerator::GetBytes(System::Details::StackArray<uint8_t, N>&) method

Llena los elementos existentes del arreglo de pila con bytes aleatorios.

template<std::size_t> void System::Security::Cryptography::RandomNumberGenerator::GetBytes(System::Details::StackArray<uint8_t, N> &bytes)
ParámetroTipoDescripción
bytesSystem::Details::StackArray<uint8_t, N>&Matriz de pila de bytes para llenar.

Ver también

RandomNumberGenerator::GetBytes(System::Details::StackArray<uint8_t, N>&, int, int) method

Llena la porción existente del arreglo de pila con bytes aleatorios.

template<std::size_t> void System::Security::Cryptography::RandomNumberGenerator::GetBytes(System::Details::StackArray<uint8_t, N> &bytes, int offset, int count)
ParámetroTipoDescripción
bytesSystem::Details::StackArray<uint8_t, N>&Matriz de pila de bytes para llenar porción de.
desplazamientointÍndice inicial de la porción.
countintTamaño de la porción.

Ver también