miniroon

Simplistic macaroon-based authorization for Unix systems
git clone https://ccx.te2000.cz/git/miniroon
Log | Files | Refs

hmac_sha2_256.h (234B)


      1 #ifndef MINIROON_HMAC_SHA2_256_H
      2 #define MINIROON_HMAC_SHA2_256_H
      3 
      4 // implementation:
      5 // {IMP} hmac_sha2_256.c
      6 
      7 #include "bytebuffer.h"
      8 
      9 void hmac_sha2_256(const bytebuffer key, const bytebuffer msg, const bytebuffer output);
     10 
     11 #endif