Rfc2898DeriveBytes Clase

Definición

Implementa PBKDF2 (función de derivación de claves basada en contraseña) mediante un generador de números pseudoaleatorios basado en HMACSHA1.

public ref class Rfc2898DeriveBytes : System::Security::Cryptography::DeriveBytes
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public class Rfc2898DeriveBytes : System.Security.Cryptography.DeriveBytes
public class Rfc2898DeriveBytes : System.Security.Cryptography.DeriveBytes
[System.Runtime.InteropServices.ComVisible(true)]
public class Rfc2898DeriveBytes : System.Security.Cryptography.DeriveBytes
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
type Rfc2898DeriveBytes = class
    inherit DeriveBytes
type Rfc2898DeriveBytes = class
    inherit DeriveBytes
[<System.Runtime.InteropServices.ComVisible(true)>]
type Rfc2898DeriveBytes = class
    inherit DeriveBytes
Public Class Rfc2898DeriveBytes
Inherits DeriveBytes
Herencia
Rfc2898DeriveBytes
Atributos

Ejemplos

En el ejemplo de código siguiente se usa la Rfc2898DeriveBytes clase para crear dos claves idénticas para la Aes clase . A continuación, cifra y descifra algunos datos mediante las claves.

using namespace System;
using namespace System::IO;
using namespace System::Text;
using namespace System::Security::Cryptography;

// Generate a key k1 with password pwd1 and salt salt1.
// Generate a key k2 with password pwd1 and salt salt1.
// Encrypt data1 with key k1 using symmetric encryption, creating edata1.
// Decrypt edata1 with key k2 using symmetric decryption, creating data2.
// data2 should equal data1.

int main()
{
   array<String^>^passwordargs = Environment::GetCommandLineArgs();
   String^ usageText = "Usage: RFC2898 <password>\nYou must specify the password for encryption.\n";

   //If no file name is specified, write usage text.
   if ( passwordargs->Length == 1 )
   {
      Console::WriteLine( usageText );
   }
   else
   {
      String^ pwd1 = passwordargs[ 1 ];
      
      array<Byte>^salt1 = gcnew array<Byte>(8);
      RNGCryptoServiceProvider ^ rngCsp = gcnew RNGCryptoServiceProvider();
         rngCsp->GetBytes(salt1);
      //data1 can be a string or contents of a file.
      String^ data1 = "Some test data";

      //The default iteration count is 1000 so the two methods use the same iteration count.
      int myIterations = 1000;

      try
      {
         Rfc2898DeriveBytes ^ k1 = gcnew Rfc2898DeriveBytes( pwd1,salt1,myIterations );
         Rfc2898DeriveBytes ^ k2 = gcnew Rfc2898DeriveBytes( pwd1,salt1 );

         // Encrypt the data.
         Aes^ encAlg = Aes::Create();
         encAlg->Key = k1->GetBytes( 16 );
         MemoryStream^ encryptionStream = gcnew MemoryStream;
         CryptoStream^ encrypt = gcnew CryptoStream( encryptionStream,encAlg->CreateEncryptor(),CryptoStreamMode::Write );
         array<Byte>^utfD1 = (gcnew System::Text::UTF8Encoding( false ))->GetBytes( data1 );

         encrypt->Write( utfD1, 0, utfD1->Length );
         encrypt->FlushFinalBlock();
         encrypt->Close();
         array<Byte>^edata1 = encryptionStream->ToArray();
         k1->Reset();

         // Try to decrypt, thus showing it can be round-tripped.
         Aes^ decAlg = Aes::Create();
         decAlg->Key = k2->GetBytes( 16 );
         decAlg->IV = encAlg->IV;
         MemoryStream^ decryptionStreamBacking = gcnew MemoryStream;
         CryptoStream^ decrypt = gcnew CryptoStream( decryptionStreamBacking,decAlg->CreateDecryptor(),CryptoStreamMode::Write );

         decrypt->Write( edata1, 0, edata1->Length );
         decrypt->Flush();
         decrypt->Close();
         k2->Reset();

         String^ data2 = (gcnew UTF8Encoding( false ))->GetString( decryptionStreamBacking->ToArray() );
         if (  !data1->Equals( data2 ) )
         {
            Console::WriteLine( "Error: The two values are not equal." );
         }
         else
         {
            Console::WriteLine( "The two values are equal." );
            Console::WriteLine( "k1 iterations: {0}", k1->IterationCount );
            Console::WriteLine( "k2 iterations: {0}", k2->IterationCount );
         }
      }

      catch ( Exception^ e ) 
      {
         Console::WriteLine( "Error: ", e );
      }
   }
}
using System;
using System.IO;
using System.Text;
using System.Security.Cryptography;

public class rfc2898test
{
    // Generate a key k1 with password pwd1 and salt salt1.
    // Generate a key k2 with password pwd1 and salt salt1.
    // Encrypt data1 with key k1 using symmetric encryption, creating edata1.
    // Decrypt edata1 with key k2 using symmetric decryption, creating data2.
    // data2 should equal data1.

    private const string usageText = "Usage: RFC2898 <password>\nYou must specify the password for encryption.\n";
    public static void Main(string[] passwordargs)
    {
        //If no file name is specified, write usage text.
        if (passwordargs.Length == 0)
        {
            Console.WriteLine(usageText);
        }
        else
        {
            string pwd1 = passwordargs[0];
            // Create a byte array to hold the random value.
            byte[] salt1 = new byte[8];
            using (RNGCryptoServiceProvider rngCsp = new
RNGCryptoServiceProvider())
            {
                // Fill the array with a random value.
                rngCsp.GetBytes(salt1);
            }

            //data1 can be a string or contents of a file.
            string data1 = "Some test data";
            //The default iteration count is 1000 so the two methods use the same iteration count.
            int myIterations = 1000;
            try
            {
                Rfc2898DeriveBytes k1 = new Rfc2898DeriveBytes(pwd1, salt1,
myIterations);
                Rfc2898DeriveBytes k2 = new Rfc2898DeriveBytes(pwd1, salt1);
                // Encrypt the data.
                Aes encAlg = Aes.Create();
                encAlg.Key = k1.GetBytes(16);
                MemoryStream encryptionStream = new MemoryStream();
                CryptoStream encrypt = new CryptoStream(encryptionStream,
encAlg.CreateEncryptor(), CryptoStreamMode.Write);
                byte[] utfD1 = new System.Text.UTF8Encoding(false).GetBytes(
data1);

                encrypt.Write(utfD1, 0, utfD1.Length);
                encrypt.FlushFinalBlock();
                encrypt.Close();
                byte[] edata1 = encryptionStream.ToArray();
                k1.Reset();

                // Try to decrypt, thus showing it can be round-tripped.
                Aes decAlg = Aes.Create();
                decAlg.Key = k2.GetBytes(16);
                decAlg.IV = encAlg.IV;
                MemoryStream decryptionStreamBacking = new MemoryStream();
                CryptoStream decrypt = new CryptoStream(
decryptionStreamBacking, decAlg.CreateDecryptor(), CryptoStreamMode.Write);
                decrypt.Write(edata1, 0, edata1.Length);
                decrypt.Flush();
                decrypt.Close();
                k2.Reset();
                string data2 = new UTF8Encoding(false).GetString(
decryptionStreamBacking.ToArray());

                if (!data1.Equals(data2))
                {
                    Console.WriteLine("Error: The two values are not equal.");
                }
                else
                {
                    Console.WriteLine("The two values are equal.");
                    Console.WriteLine("k1 iterations: {0}", k1.IterationCount);
                    Console.WriteLine("k2 iterations: {0}", k2.IterationCount);
                }
            }
            catch (Exception e)
            {
                Console.WriteLine("Error: {0}", e);
            }
        }
    }
}
Imports System.IO
Imports System.Text
Imports System.Security.Cryptography



Public Class rfc2898test
    ' Generate a key k1 with password pwd1 and salt salt1.
    ' Generate a key k2 with password pwd1 and salt salt1.
    ' Encrypt data1 with key k1 using symmetric encryption, creating edata1.
    ' Decrypt edata1 with key k2 using symmetric decryption, creating data2.
    ' data2 should equal data1.
    Private Const usageText As String = "Usage: RFC2898 <password>" + vbLf + "You must specify the password for encryption." + vbLf

    Public Shared Sub Main(ByVal passwordargs() As String)
        'If no file name is specified, write usage text.
        If passwordargs.Length = 0 Then
            Console.WriteLine(usageText)
        Else
            Dim pwd1 As String = passwordargs(0)

            Dim salt1(8) As Byte
            Using rngCsp As New RNGCryptoServiceProvider()
                rngCsp.GetBytes(salt1)
            End Using
            'data1 can be a string or contents of a file.
            Dim data1 As String = "Some test data"
            'The default iteration count is 1000 so the two methods use the same iteration count.
            Dim myIterations As Integer = 1000
            Try
                Dim k1 As New Rfc2898DeriveBytes(pwd1, salt1, myIterations)
                Dim k2 As New Rfc2898DeriveBytes(pwd1, salt1)
                ' Encrypt the data.
                Dim encAlg As Aes = Aes.Create()
                encAlg.Key = k1.GetBytes(16)
                Dim encryptionStream As New MemoryStream()
                Dim encrypt As New CryptoStream(encryptionStream, encAlg.CreateEncryptor(), CryptoStreamMode.Write)
                Dim utfD1 As Byte() = New System.Text.UTF8Encoding(False).GetBytes(data1)
                encrypt.Write(utfD1, 0, utfD1.Length)
                encrypt.FlushFinalBlock()
                encrypt.Close()
                Dim edata1 As Byte() = encryptionStream.ToArray()
                k1.Reset()

                ' Try to decrypt, thus showing it can be round-tripped.
                Dim decAlg As Aes = Aes.Create()
                decAlg.Key = k2.GetBytes(16)
                decAlg.IV = encAlg.IV
                Dim decryptionStreamBacking As New MemoryStream()
                Dim decrypt As New CryptoStream(decryptionStreamBacking, decAlg.CreateDecryptor(), CryptoStreamMode.Write)
                decrypt.Write(edata1, 0, edata1.Length)
                decrypt.Flush()
                decrypt.Close()
                k2.Reset()
                Dim data2 As String = New UTF8Encoding(False).GetString(decryptionStreamBacking.ToArray())

                If Not data1.Equals(data2) Then
                    Console.WriteLine("Error: The two values are not equal.")
                Else
                    Console.WriteLine("The two values are equal.")
                    Console.WriteLine("k1 iterations: {0}", k1.IterationCount)
                    Console.WriteLine("k2 iterations: {0}", k2.IterationCount)
                End If
            Catch e As Exception
                Console.WriteLine("Error: ", e)
            End Try
        End If

    End Sub
End Class

Comentarios

Rfc2898DeriveBytes toma una contraseña, una sal y un recuento de iteraciones y, a continuación, genera claves a través de llamadas al GetBytes método .

RFC 2898 incluye métodos para crear una clave y un vector de inicialización (IV) a partir de una contraseña y sal. Puede usar PBKDF2, una función de derivación de claves basada en contraseña, para derivar claves mediante una función pseudoaleatoriedad que permite generar claves de longitud prácticamente ilimitada. La Rfc2898DeriveBytes clase se puede usar para generar una clave derivada de una clave base y otros parámetros. En una función de derivación de claves basada en contraseña, la clave base es una contraseña y los demás parámetros son un valor salado y un recuento de iteraciones.

Para obtener más información sobre PBKDF2, vea RFC 2898, titulado "PKCS #5: Password-Based Cryptography Specification Version 2.0". Consulte la sección 5.2, "PBKDF2", para obtener más información.

Importante

Nunca codifique de forma rígida una contraseña en el código fuente. Las contraseñas codificadas de forma rígida se pueden recuperar de un ensamblado mediante el Ildasm.exe (Desensamblador de IL), mediante un editor hexadecimal o simplemente abriendo el ensamblado en un editor de texto, como Notepad.exe.

Constructores

Rfc2898DeriveBytes(Byte[], Byte[], Int32)
Obsoletos.

Inicializa una nueva instancia de la clase Rfc2898DeriveBytes usando una contraseña, un valor "salt" y un número de iteraciones para derivar la clave.

Rfc2898DeriveBytes(Byte[], Byte[], Int32, HashAlgorithmName)

Inicializa una nueva instancia de la clase Rfc2898DeriveBytes mediante la contraseña, el valor "salt", el número de iteraciones y el nombre del algoritmo hash especificados para derivar la clave.

Rfc2898DeriveBytes(String, Byte[])
Obsoletos.

Inicializa una nueva instancia de la clase Rfc2898DeriveBytes con una contraseña y un valor "salt" para derivar la clave.

Rfc2898DeriveBytes(String, Byte[], Int32)
Obsoletos.

Inicializa una nueva instancia de la clase Rfc2898DeriveBytes usando una contraseña, un valor "salt" y un número de iteraciones para derivar la clave.

Rfc2898DeriveBytes(String, Byte[], Int32, HashAlgorithmName)

Inicializa una nueva instancia de la clase Rfc2898DeriveBytes mediante la contraseña, el valor "salt", el número de iteraciones y el nombre del algoritmo hash especificados para derivar la clave.

Rfc2898DeriveBytes(String, Int32)
Obsoletos.

Inicializa una nueva instancia de la clase Rfc2898DeriveBytes usando la contraseña y el tamaño del valor "salt" para derivar la clave.

Rfc2898DeriveBytes(String, Int32, Int32)
Obsoletos.

Inicializa una nueva instancia de la clase Rfc2898DeriveBytes usando una contraseña, un tamaño de valor "salt" y un número de iteraciones para derivar la clave.

Rfc2898DeriveBytes(String, Int32, Int32, HashAlgorithmName)

Inicializa una nueva instancia de la clase Rfc2898DeriveBytes mediante la contraseña, el tamaño del valor "salt", el número de iteraciones y el nombre del algoritmo hash especificados para derivar la clave.

Propiedades

HashAlgorithm

Obtiene el algoritmo hash utilizado para la derivación de bytes.

IterationCount

Obtiene o establece el número de iteraciones de la operación.

Salt

Obtiene o establece el valor de clave "salt" de la operación.

Métodos

CryptDeriveKey(String, String, Int32, Byte[])
Obsoletos.

Deriva una clave criptográfica a partir del objeto Rfc2898DeriveBytes.

Dispose()

Cuando se reemplaza en una clase derivada, libera todos los recursos usados por la instancia actual de la clase DeriveBytes.

(Heredado de DeriveBytes)
Dispose(Boolean)

Libera los recursos no administrados utilizados por la clase Rfc2898DeriveBytes y, de forma opcional, libera los recursos administrados.

Dispose(Boolean)

Cuando se reemplaza en una clase derivada, libera los recursos no administrados usados por la clase DeriveBytes y, de forma opcional, libera los recursos administrados.

(Heredado de DeriveBytes)
Equals(Object)

Determina si el objeto especificado es igual que el objeto actual.

(Heredado de Object)
GetBytes(Int32)

Devuelve la clave pseudoaleatoria para este objeto.

GetHashCode()

Sirve como la función hash predeterminada.

(Heredado de Object)
GetType()

Obtiene el Type de la instancia actual.

(Heredado de Object)
MemberwiseClone()

Crea una copia superficial del Object actual.

(Heredado de Object)
Pbkdf2(Byte[], Byte[], Int32, HashAlgorithmName, Int32)

Crea una clave derivada de PBKDF2 a partir de bytes de contraseña.

Pbkdf2(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Int32, HashAlgorithmName, Int32)

Crea una clave derivada de PBKDF2 a partir de bytes de contraseña.

Pbkdf2(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, Int32, HashAlgorithmName)

Rellena un búfer con una clave derivada PBKDF2.

Pbkdf2(ReadOnlySpan<Char>, ReadOnlySpan<Byte>, Int32, HashAlgorithmName, Int32)

Crea una clave derivada de PBKDF2 a partir de una contraseña.

Pbkdf2(ReadOnlySpan<Char>, ReadOnlySpan<Byte>, Span<Byte>, Int32, HashAlgorithmName)

Rellena un búfer con una clave derivada PBKDF2.

Pbkdf2(String, Byte[], Int32, HashAlgorithmName, Int32)

Crea una clave derivada de PBKDF2 a partir de una contraseña.

Reset()

Restablece el estado de la operación.

ToString()

Devuelve una cadena que representa el objeto actual.

(Heredado de Object)

Se aplica a

Consulte también