mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-14 18:02:55 +01:00
Winni Neessen
f883358a29
Introduced NTLMv2 authentication mechanism with tests in smtp package. Utilized the go-ntlmssp library to handle negotiation and response processing for NTLMv2 protocol.
13 lines
270 B
Modula-2
13 lines
270 B
Modula-2
// SPDX-FileCopyrightText: 2022-2023 The go-mail Authors
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
module github.com/wneessen/go-mail
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358
|
|
golang.org/x/crypto v0.29.0
|
|
golang.org/x/text v0.20.0
|
|
)
|