This commit is contained in:
shoopea 2020-01-15 19:00:49 +08:00
parent 7b713902c4
commit d02d14a27b

10
job.go
View File

@ -1576,13 +1576,15 @@ func jobGWithdraw(j Job) {
sha128 := sha256[:aes.BlockSize]
c, err := aes.NewCipher(sha128)
in := make([]byte, 8)
binary.LittleEndian.PutUint64(in, uint64(id))
in := make([]byte, 0)
buf := make([]byte, 8)
binary.LittleEndian.PutUint64(buf, uint64(id))
in = append(in, buf...)
binary.LittleEndian.PutUint64(buf, uint64(j.UserID64))
in = append(in, buf...)
out := make([]byte, len(in))
c.Encrypt(out, in)
out = append(out, 0)
out = append(out, 0)
ref := hex.EncodeToString(out)
log.Printf("jobGWithdraw[%d] : got all the info for ref %s\n", j.ID64, string(ref))