Remove UUID

This commit is contained in:
binwiederhier
2025-07-19 15:44:49 +02:00
parent ae62e0d955
commit 57df16dd62
7 changed files with 4 additions and 50 deletions

View File

@@ -7,8 +7,6 @@ import (
"encoding/hex"
"fmt"
"hash/adler32"
"github.com/google/uuid"
)
func sha512sum(input string) string {
@@ -30,8 +28,3 @@ func adler32sum(input string) string {
hash := adler32.Checksum([]byte(input))
return fmt.Sprintf("%d", hash)
}
// uuidv4 provides a safe and secure UUID v4 implementation
func uuidv4() string {
return uuid.New().String()
}