class %Net.SASL.CRAMMD5
extends %Net.SASL.Base
The implementation of the CRAM-MD5 SASL security mechanism
to be used with %Net.Authenticator, our implementation of the Simple Authentication
and Security Layer (SASL) as defined by RFC 2222.
property MechanismName
as %String [ InitialExpression = "CRAM-MD5" ];
The name of the security mechanism.
This name must be one of SASL mechanism names that is registered with IANA.
method Next(challenge As %String, ByRef response As %String)
as %Boolean
Return next response based on challenge using the PLAIN SASL mechanism.
Return value is false to indicate abort.
method Start(ByRef response As %String)
as %Boolean
Start authentication based on UserName and Password using the PLAIN SASL mechanism.