This commit is contained in:
eater 2019-08-05 23:31:53 +02:00
parent f84cbadf2e
commit f54b44f458
Signed by: eater
GPG key ID: 656785D50BE51C0A

View file

@ -177,17 +177,17 @@ func (it *httpServer) writeResponse(writer http.ResponseWriter, v interface{}) e
}
func (it *httpServer) verifyRequest(r *http.Request, v interface{}) (error) {
all, err := ioutil.ReadAll(hex.NewDecoder(r.Body))
hexBody, err := ioutil.ReadAll(r.Body)
if err != nil {
return err
}
body, err := ioutil.ReadAll(r.Body)
all, err := hex.DecodeString(string(hexBody))
if err != nil {
return err
}
log.Printf("req: %s", body)
log.Printf("req: %s", hexBody)
encPasswordAndIV := all[:256]
encBody := all[256:]