moto-flash-data/motolol/cpe/dbf-crypto.go
2025-01-20 13:10:35 +01:00

19 lines
464 B
Go

package cpe
func EncryptDBFFile(pdata []byte) []byte {
length := len(pdata)
for index := 0; index < length; index++ {
num3 := byte((byte(pdata[index]) + byte(length-index)) ^ byte(index*111))
pdata[index] = num3
}
return pdata
}
func DecryptDBFFile(pdata []byte) []byte {
length := len(pdata)
for index := 0; index < length; index++ {
num3 := byte((byte(pdata[index]) ^ byte(index*111)) - byte(length-index))
pdata[index] = num3
}
return pdata
}