]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - hmac.h
optimized pose math to not use intermediate matrix
[xonotic/darkplaces.git] / hmac.h
diff --git a/hmac.h b/hmac.h
index d2a327b6ea0f61c12cff5afb8d258a2e020541bf..4d6358ae1cf436ceb436bf23e357a9404b61c717 100644 (file)
--- a/hmac.h
+++ b/hmac.h
@@ -2,7 +2,7 @@
 #define HMAC_H
 
 typedef void (*hashfunc_t) (unsigned char *out, unsigned char *in, int n);
-void hmac(
+qboolean hmac(
        hashfunc_t hfunc, int hlen, int hblock,
        unsigned char *out,
        unsigned char *in, int n,