Add jpeg with exif format

This commit is contained in:
Joren Schipman 2024-05-01 23:17:22 +02:00
parent 323b6e1f82
commit a187f22869
Signed by untrusted user who does not match committer: Joren
GPG Key ID: 280E33DFBC0F1B55

View File

@ -18,6 +18,8 @@ import (
"time"
)
var jpegExif = []byte{0xff, 0xd8, 0xff, 0xe1}
func main() {
host := "0.0.0.0"
port := 8080
@ -191,12 +193,18 @@ func handleDecrypted(decryptedDataB []byte, uidB []byte) {
panic(err)
}
}
fmt.Println(data[:4])
var fileTDef string
if fileType != nil {
fileTDef = fileType.Extension
} else {
fileTDef = "unknown"
if(string(data[:4]) == string(jpegExif)){
fileTDef = "jpeg"
}else{
fileTDef = "unknown"
}
}
uid := strings.TrimSpace(string(uidB))