Rename base64 funcs to show they're not RFC-compliant.
[tinc] / src / openssl / digest.h
index d553977..3515353 100644 (file)
 */
 
 #include <openssl/evp.h>
+#include <openssl/hmac.h>
 
 struct digest {
        const EVP_MD *digest;
        HMAC_CTX *hmac_ctx;
        EVP_MD_CTX *md_ctx;
-       int maclength;
+       size_t maclength;
 };
 
 #endif