lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs | README

string.h (257B)


      1 /*
      2  * Public domain
      3  * string.h compatibility shim
      4  */
      5 
      6 #include_next <string.h>
      7 
      8 #ifndef LIBCRYPTOCOMPAT_STRING_H
      9 #define LIBCRYPTOCOMPAT_STRING_H
     10 
     11 void explicit_bzero(void *, size_t);
     12 int timingsafe_bcmp(const void *b1, const void *b2, size_t n);
     13 
     14 #endif