mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	go.mod: golang.org/x/crypto v0.1.0
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
		@@ -5,9 +5,8 @@
 | 
			
		||||
//go:build !purego
 | 
			
		||||
// +build !purego
 | 
			
		||||
 | 
			
		||||
// Package subtle implements functions that are often useful in cryptographic
 | 
			
		||||
// code but require careful thought to use correctly.
 | 
			
		||||
package subtle // import "golang.org/x/crypto/internal/subtle"
 | 
			
		||||
// Package alias implements memory aliasing tests.
 | 
			
		||||
package alias
 | 
			
		||||
 | 
			
		||||
import "unsafe"
 | 
			
		||||
 | 
			
		||||
@@ -5,9 +5,8 @@
 | 
			
		||||
//go:build purego
 | 
			
		||||
// +build purego
 | 
			
		||||
 | 
			
		||||
// Package subtle implements functions that are often useful in cryptographic
 | 
			
		||||
// code but require careful thought to use correctly.
 | 
			
		||||
package subtle // import "golang.org/x/crypto/internal/subtle"
 | 
			
		||||
// Package alias implements memory aliasing tests.
 | 
			
		||||
package alias
 | 
			
		||||
 | 
			
		||||
// This is the Google App Engine standard variant based on reflect
 | 
			
		||||
// because the unsafe package and cgo are disallowed.
 | 
			
		||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -136,7 +136,7 @@ func shiftRightBy2(a uint128) uint128 {
 | 
			
		||||
// updateGeneric absorbs msg into the state.h accumulator. For each chunk m of
 | 
			
		||||
// 128 bits of message, it computes
 | 
			
		||||
//
 | 
			
		||||
//     h₊ = (h + m) * r  mod  2¹³⁰ - 5
 | 
			
		||||
//	h₊ = (h + m) * r  mod  2¹³⁰ - 5
 | 
			
		||||
//
 | 
			
		||||
// If the msg length is not a multiple of TagSize, it assumes the last
 | 
			
		||||
// incomplete chunk is the final one.
 | 
			
		||||
@@ -278,8 +278,7 @@ const (
 | 
			
		||||
 | 
			
		||||
// finalize completes the modular reduction of h and computes
 | 
			
		||||
//
 | 
			
		||||
//     out = h + s  mod  2¹²⁸
 | 
			
		||||
//
 | 
			
		||||
//	out = h + s  mod  2¹²⁸
 | 
			
		||||
func finalize(out *[TagSize]byte, h *[3]uint64, s *[2]uint64) {
 | 
			
		||||
	h0, h1, h2 := h[0], h[1], h[2]
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -14,6 +14,7 @@ import (
 | 
			
		||||
// updateVX is an assembly implementation of Poly1305 that uses vector
 | 
			
		||||
// instructions. It must only be called if the vector facility (vx) is
 | 
			
		||||
// available.
 | 
			
		||||
//
 | 
			
		||||
//go:noescape
 | 
			
		||||
func updateVX(state *macState, msg []byte)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user