Skip to content

Commit 8f704e5

Browse files
committed
Go report card
1 parent d7ee2cf commit 8f704e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scram_client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var SHA256 scram.HashGeneratorFcn = func() hash.Hash { return sha256.New() }
1414
// SHA512 contains hash function for SCRAM SHA512
1515
var SHA512 scram.HashGeneratorFcn = func() hash.Hash { return sha512.New() }
1616

17-
// XDGSCRAMClient
17+
// XDGSCRAMClient is used for SCRAM authentication
1818
type XDGSCRAMClient struct {
1919
*scram.Client
2020
*scram.ClientConversation
@@ -31,7 +31,7 @@ func (x *XDGSCRAMClient) Begin(userName, password, authzID string) (err error) {
3131
return nil
3232
}
3333

34-
// Perform the step of negotiation
34+
// Step of negotiation
3535
func (x *XDGSCRAMClient) Step(challenge string) (response string, err error) {
3636
response, err = x.ClientConversation.Step(challenge)
3737
return

0 commit comments

Comments
 (0)