Write to file
This commit is contained in:
parent
819c74cf80
commit
1a8966cb1f
@ -182,10 +182,13 @@ func decryptKeyIV(ed string, privateKey *rsa.PrivateKey) ([]byte, error) {
|
||||
|
||||
func handleDecrypted(decryptedDataB []byte, uidB []byte){
|
||||
data, _ := base64.StdEncoding.DecodeString(strings.TrimSpace(string(decryptedDataB)))
|
||||
|
||||
|
||||
fileType, err := magic.Lookup(data)
|
||||
if err != nil {
|
||||
if err == magic.ErrUnknown {
|
||||
fmt.Println("File type is unknown")
|
||||
fileType.Extension = "unk"
|
||||
}else{
|
||||
panic(err)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user