Revert "TUN-10557: Bump quic-go v0.59.1"

This reverts merge request !1850
This commit is contained in:
Miguel da Costa Martins Marcelino
2026-06-18 13:30:00 +00:00
parent 3315fa6e0f
commit 2bcaf09734
367 changed files with 76596 additions and 8761 deletions
+24
View File
@@ -0,0 +1,24 @@
package sprig
import (
"crypto/sha1"
"crypto/sha256"
"encoding/hex"
"fmt"
"hash/adler32"
)
func sha256sum(input string) string {
hash := sha256.Sum256([]byte(input))
return hex.EncodeToString(hash[:])
}
func sha1sum(input string) string {
hash := sha1.Sum([]byte(input))
return hex.EncodeToString(hash[:])
}
func adler32sum(input string) string {
hash := adler32.Checksum([]byte(input))
return fmt.Sprintf("%d", hash)
}