Enum MechanismType
Supported SASL authentication types supported by Couchbase Server.
Namespace: Couchbase.Core.IO.Authentication
Assembly: Couchbase.NetClient.dll
Syntax
public enum MechanismType
Fields
Name | Description |
---|---|
CramMd5 | The username and password will be sent encrypted using CramMD5 and will not be human-readable on the wire. |
Plain | The username and password will be sent using human-readable plain text. |
ScramSha1 | The username and password will be sent encrypted using salted Sha1 and will not be human-readable on the wire. |
ScramSha256 | The username and password will be sent encrypted using salted Sha256 and will not be human-readable on the wire. |
ScramSha512 | The username and password will be sent encrypted using salted Sha512 and will not be human-readable on the wire. |