CipherAlgorithmType Перечисление

Определение

Определяет возможные алгоритмы шифров для класса SslStream.

public enum class CipherAlgorithmType
public enum CipherAlgorithmType
type CipherAlgorithmType = 
Public Enum CipherAlgorithmType
Наследование
CipherAlgorithmType

Поля

Имя Значение Описание
None 0

Алгоритм шифрования не используется.

Null 24576

Шифрование не используется с алгоритмом шифра NULL.

Des 26113

Алгоритм шифрования данных (DES).

Rc2 26114

Алгоритм кода 2 (RC2) Rivest.

TripleDes 26115

Алгоритм тройного шифрования данных (3DES).

Aes128 26126

Алгоритм расширенного шифрования (AES) с 128-разрядным ключом.

Aes192 26127

Алгоритм расширенного шифрования (AES) с 192-разрядным ключом.

Aes256 26128

Алгоритм расширенного шифрования (AES) с 256-разрядным ключом.

Aes 26129

Алгоритм расширенного шифрования (AES).

Rc4 26625

Алгоритм кода 4 (RC4) Rivest.

Примеры

В следующем примере отображаются свойства объекта SslStream.

static void AuthenticateCallback( IAsyncResult^ ar )
{
   SslStream^ stream = dynamic_cast<SslStream^>(ar->AsyncState);
   try
   {
      stream->EndAuthenticateAsClient( ar );
      Console::WriteLine( L"Authentication succeeded." );
      Console::WriteLine( L"Cipher: {0} strength {1}", stream->CipherAlgorithm, stream->CipherStrength );
      Console::WriteLine( L"Hash: {0} strength {1}", stream->HashAlgorithm, stream->HashStrength );
      Console::WriteLine( L"Key exchange: {0} strength {1}", stream->KeyExchangeAlgorithm, stream->KeyExchangeStrength );
      Console::WriteLine( L"Protocol: {0}", stream->SslProtocol );
      
      // Encode a test message into a byte array.
      // Signal the end of the message using the "<EOF>".
      array<Byte>^message = Encoding::UTF8->GetBytes( L"Hello from the client.<EOF>" );
      
      // Asynchronously send a message to the server.
      stream->BeginWrite( message, 0, message->Length, gcnew AsyncCallback( WriteCallback ), stream );
   }
   catch ( Exception^ authenticationException ) 
   {
      e = authenticationException;
      complete = true;
      return;
   }

}
static void AuthenticateCallback(IAsyncResult ar)
{
    SslStream stream = (SslStream) ar.AsyncState;
    try
    {
        stream.EndAuthenticateAsClient(ar);
        Console.WriteLine("Authentication succeeded.");
        Console.WriteLine("Cipher: {0} strength {1}", stream.CipherAlgorithm,
            stream.CipherStrength);
        Console.WriteLine("Hash: {0} strength {1}",
            stream.HashAlgorithm, stream.HashStrength);
        Console.WriteLine("Key exchange: {0} strength {1}",
            stream.KeyExchangeAlgorithm, stream.KeyExchangeStrength);
        Console.WriteLine("Protocol: {0}", stream.SslProtocol);
        // Encode a test message into a byte array.
        // Signal the end of the message using the "<EOF>".
        byte[] message = Encoding.UTF8.GetBytes("Hello from the client.<EOF>");
        // Asynchronously send a message to the server.
        stream.BeginWrite(message, 0, message.Length,
            new AsyncCallback(WriteCallback),
            stream);
    }
    catch (Exception authenticationException)
    {
        e = authenticationException;
        complete = true;
        return;
    }
}

Комментарии

Это перечисление задает допустимые значения для SslStream.CipherAlgorithm свойства.

Применяется к

См. также раздел