Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CRAMMD5Auth (0.09 sec)

  1. src/net/smtp/auth.go

    	}
    	return nil, nil
    }
    
    type cramMD5Auth struct {
    	username, secret string
    }
    
    // CRAMMD5Auth returns an [Auth] that implements the CRAM-MD5 authentication
    // mechanism as defined in RFC 2195.
    // The returned Auth uses the given username and secret to authenticate
    // to the server using the challenge-response mechanism.
    func CRAMMD5Auth(username, secret string) Auth {
    	return &cramMD5Auth{username, secret}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top