func crypto/hmac.Equal

7 uses

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

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

	github.com/refraction-networking/utls
		handshake_client_tls13.go#L897: 	if !hmac.Equal(expectedMAC, finished.verifyData) {
		handshake_server_tls13.go#L437: 		if !hmac.Equal(hs.clientHello.pskBinders[i], pskBinder) {
		handshake_server_tls13.go#L1140: 	if !hmac.Equal(hs.clientFinished, finished.verifyData) {