Click or drag to resize
MimeKit

SaslMechanismScramSha256Plus Class

The SCRAM-SHA-256-PLUS SASL mechanism.
Inheritance Hierarchy
SystemObject
  MailKit.SecuritySaslMechanism
    MailKit.SecuritySaslMechanismScramBase
      MailKit.SecuritySaslMechanismScramSha256
        MailKit.SecuritySaslMechanismScramSha256Plus

Namespace: MailKit.Security
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public class SaslMechanismScramSha256Plus : SaslMechanismScramSha256

The SaslMechanismScramSha256Plus type exposes the following members.

Constructors
 NameDescription
Public methodSaslMechanismScramSha256Plus(NetworkCredential) Initializes a new instance of the SaslMechanismScramSha256Plus class.
Public methodSaslMechanismScramSha256Plus(String, String) Initializes a new instance of the SaslMechanismScramSha256Plus class.
Top
Properties
 NameDescription
Public propertyAuthorizationId Get or set the authorization identifier.
(Inherited from SaslMechanismScramBase)
Public propertyCredentials Get the user's credentials.
(Inherited from SaslMechanism)
Public propertyIsAuthenticated Get or set whether the SASL mechanism has finished authenticating.
(Inherited from SaslMechanism)
Public propertyMechanismName Get the name of the SASL mechanism.
(Overrides SaslMechanismScramSha256MechanismName)
Public propertyNegotiatedChannelBinding Get whether or not channel-binding was negotiated by the SASL mechanism.
(Inherited from SaslMechanismScramBase)
Public propertyNegotiatedSecurityLayer Get whether or not a security layer was negotiated by the SASL mechanism.
(Inherited from SaslMechanism)
Public propertySupportsChannelBinding Get whether or not the SASL mechanism supports channel binding.
(Overrides SaslMechanismSupportsChannelBinding)
Public propertySupportsInitialResponse Get whether or not the mechanism supports an initial response (SASL-IR).
(Inherited from SaslMechanismScramBase)
Top
Methods
 NameDescription
Public methodChallenge(String, CancellationToken) Decode the base64-encoded server challenge and return the next challenge response encoded in base64.
(Inherited from SaslMechanism)
Protected methodChallenge(Byte, Int32, Int32, CancellationToken) Parse the server's challenge token and return the next challenge response.
(Inherited from SaslMechanismScramBase)
Public methodChallengeAsync(String, CancellationToken) Asynchronously decode the base64-encoded server challenge and return the next challenge response encoded in base64.
(Inherited from SaslMechanism)
Protected methodChallengeAsync(Byte, Int32, Int32, CancellationToken) Asynchronously parse the server's challenge token and return the next challenge response.
(Inherited from SaslMechanism)
Protected methodCreateHMAC Create the HMAC context.
(Inherited from SaslMechanismScramSha256)
Public methodEquals
(Inherited from Object)
Protected methodFinalize
(Inherited from Object)
Public methodGetHashCode
(Inherited from Object)
Public methodGetType
(Inherited from Object)
Protected methodHash Apply the cryptographic hash function.
(Inherited from SaslMechanismScramSha256)
Protected methodMemberwiseClone
(Inherited from Object)
Public methodReset Reset the state of the SASL mechanism.
(Inherited from SaslMechanismScramBase)
Public methodToString
(Inherited from Object)
Protected methodTryGetChannelBindingToken Try to get a channel-binding token.
(Inherited from SaslMechanism)
Top
Remarks
A salted challenge/response SASL mechanism that uses the HMAC SHA-256 algorithm and Transport Layer Security (TLS) channel binding.
See Also