patch-nss_lib_freebl_alghmac_h 484 B

1234567891011121314151617
  1. $OpenBSD: patch-nss_lib_freebl_alghmac_h,v 1.1 2017/05/30 18:57:01 ajacoutot Exp $
  2. Prevent clashing symbol with libcrypto (bad ld.so(1)!).
  3. Index: nss/lib/freebl/alghmac.h
  4. --- nss/lib/freebl/alghmac.h.orig
  5. +++ nss/lib/freebl/alghmac.h
  6. @@ -34,6 +34,8 @@ HMAC_Init(HMACContext *cx, const SECHashObject *hash_o
  7. extern void
  8. HMAC_Begin(HMACContext *cx);
  9. +#define HMAC_Update NSS_HMAC_Update
  10. +
  11. /* update HMAC
  12. * cx HMAC Context
  13. * data the data to perform HMAC on