func crypto/hmac.Equal

5 uses

	crypto/hmac (current package)
		hmac.go#L60: func Equal(mac1, mac2 []byte) bool {

	crypto/tls
		handshake_client_tls13.go#L725: 	if !hmac.Equal(expectedMAC, finished.verifyData) {
		handshake_server_tls13.go#L438: 		if !hmac.Equal(hs.clientHello.pskBinders[i], pskBinder) {
		handshake_server_tls13.go#L1154: 	if !hmac.Equal(hs.clientFinished, finished.verifyData) {

	github.com/jackc/pgx/v5/pgconn
		auth_scram.go#L332: 	if !hmac.Equal(serverSignature, computeServerSignature(sc.saltedPassword, sc.authMessage)) {