HMAC_SHA1.hh 412 B

12345678910111213141516171819
  1. // Copyright (c) 1996-2020, Live Networks, Inc. All rights reserved
  2. // This code may not be copied or used in any form without permission from Live Networks, Inc.
  3. //
  4. // A function for computing the HMAC_SHA1 digest
  5. // Definition
  6. #ifndef _HMAC_SHA1_HH
  7. #define _HMAC_SHA1_HH
  8. #ifndef NO_OPENSSL
  9. #ifndef _HMAC_HASH_HH
  10. #include "HMAC_hash.hh"
  11. #endif
  12. #define SHA1_DIGEST_LEN 20
  13. HMAC_hash HMAC_SHA1;
  14. #endif
  15. #endif