mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-09 15:32:54 +01:00
Winni Neessen
a804e4a101
- Also import the original BSD-3-Clause.txt license from the Go team into the LICENSES directory - Further on, license headers should hold "The go-mail Authors" instead of my name. Did this already for the MIT license.
47 lines
1.4 KiB
Go
47 lines
1.4 KiB
Go
// SPDX-FileCopyrightText: Copyright 2010 The Go Authors. All rights reserved.
|
|
// SPDX-FileCopyrightText: Copyright (c) 2022-2023 The go-mail Authors
|
|
//
|
|
// Original net/smtp code from the Go stdlib by the Go Authors.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the [PROJECT ROOT]/LICENSES directory.
|
|
//
|
|
// go-mail specific modifications by the go-mail Authors.
|
|
// Licensed under the MIT License.
|
|
// See [PROJECT ROOT]/LICENSES directory for more information.
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause AND MIT
|
|
|
|
package smtp
|
|
|
|
import (
|
|
"crypto/hmac"
|
|
"crypto/md5"
|
|
"fmt"
|
|
)
|
|
|
|
// cramMD5Auth is the type that satisfies the Auth interface for the "SMTP CRAM_MD5" auth
|
|
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}
|
|
}
|
|
|
|
func (a *cramMD5Auth) Start(server *ServerInfo) (string, []byte, error) {
|
|
return "CRAM-MD5", nil, nil
|
|
}
|
|
|
|
func (a *cramMD5Auth) Next(fromServer []byte, more bool) ([]byte, error) {
|
|
if more {
|
|
d := hmac.New(md5.New, []byte(a.secret))
|
|
d.Write(fromServer)
|
|
s := make([]byte, 0, d.Size())
|
|
return fmt.Appendf(nil, "%s %x", a.username, d.Sum(s)), nil
|
|
}
|
|
return nil, nil
|
|
}
|