github.com/jackc/pgx/v5/pgproto3.AuthenticationMD5Password.Salt (field)

6 uses

	github.com/jackc/pgx/v5/pgproto3 (current package)
		authentication_md5_password.go#L13: 	Salt [4]byte
		authentication_md5_password.go#L35: 	copy(dst.Salt[:], src[4:8])
		authentication_md5_password.go#L44: 	dst = append(dst, src.Salt[:]...)
		authentication_md5_password.go#L55: 		Salt: src.Salt,
		authentication_md5_password.go#L74: 	dst.Salt = msg.Salt

	github.com/jackc/pgx/v5/pgconn
		pgconn.go#L424: 			digestedPassword := "md5" + hexMD5(hexMD5(pgConn.config.Password+pgConn.config.User)+string(msg.Salt[:]))