diff --git a/http.go b/http.go index 24c78f8..23f09a6 100644 --- a/http.go +++ b/http.go @@ -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:]