luajitos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

stubs.c (396B)


      1 /*
      2  * Stubs for unimplemented crypto functions
      3  *
      4  * Note: The following functions are now fully implemented:
      5  * - hkdf_sha256() - in HKDF.c
      6  * - rsa_sign_pss() - in RSA.c
      7  * - rsa_verify_pss() - in RSA.c
      8  *
      9  * This file is kept for any future stub functions that may be needed.
     10  */
     11 
     12 #include <stdint.h>
     13 #include <stddef.h>
     14 
     15 /* No stubs currently needed - all crypto functions are implemented */