SslStream.CipherAlgorithm Proprietà

Definizione

Ottiene un valore che identifica l'algoritmo di crittografia di massa utilizzato dalla classe SslStream.

public:
 virtual property System::Security::Authentication::CipherAlgorithmType CipherAlgorithm { System::Security::Authentication::CipherAlgorithmType get(); };
public virtual System.Security.Authentication.CipherAlgorithmType CipherAlgorithm { get; }
member this.CipherAlgorithm : System.Security.Authentication.CipherAlgorithmType
Public Overridable ReadOnly Property CipherAlgorithm As CipherAlgorithmType

Valore della proprietà

Valore che identifica l'algoritmo di crittografia bulk usato da questo SslStreamoggetto .

Eccezioni

L'accesso alla proprietà CipherAlgorithm è stata eseguito prima del completamento del processo di autenticazione oppure il processo di autenticazione non è riuscito.

Esempio

Nell'esempio di codice seguente vengono visualizzate le impostazioni di crittografia per il flusso specificato.

static void DisplaySecurityLevel( SslStream^ stream )
{
   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 );
}
static void DisplaySecurityLevel(SslStream stream)
{
   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);
}
Private Shared Sub DisplaySecurityLevel(stream As SslStream)
    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)
End Sub

Commenti

Un valore di è necessario per la proprietà quando viene usato il valore di Null enumerazione per costruire un'istanza CipherAlgorithmSslStream.NoEncryption

Windows Server 2003 e Windows XP non supportano il Null valore. Quindi, anche se il Null valore viene usato per costruire l'istanza SslStream , la EncryptionPolicy proprietà sarà None. Il Null valore viene restituito solo in Windows Vista e versioni successive.

Si applica a