AnthoLume/utils/utils.go
Evan Reichard cdec621043
All checks were successful
continuous-integration/drone/push Build is passing
[add] better error handling, [add] font selector, [add] tailwind generation
2023-10-25 19:52:01 -04:00

45 lines
722 B
Go

package utils
import (
"bytes"
"crypto/md5"
"fmt"
"io"
"os"
)
// Reimplemented KOReader Partial MD5 Calculation
func CalculatePartialMD5(filePath string) (string, error) {
file, err := os.Open(filePath)
if err != nil {
return "", err
}
defer file.Close()
var step int64 = 1024
var size int64 = 1024
var buf bytes.Buffer
for i := -1; i <= 10; i++ {
byteStep := make([]byte, size)
var newShift int64 = int64(i * 2)
var newOffset int64
if i == -1 {
newOffset = 0
} else {
newOffset = step << newShift
}
_, err := file.ReadAt(byteStep, newOffset)
if err == io.EOF {
break
}
buf.Write(byteStep)
}
allBytes := buf.Bytes()
return fmt.Sprintf("%x", md5.Sum(allBytes)), nil
}