Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

sha1.h 255B

12345678910111213
  1. #ifndef _GPXE_SHA1_H
  2. #define _GPXE_SHA1_H
  3. #include "crypto/axtls/crypto.h"
  4. struct crypto_algorithm;
  5. #define SHA1_CTX_SIZE sizeof ( SHA1_CTX )
  6. #define SHA1_DIGEST_SIZE SHA1_SIZE
  7. extern struct crypto_algorithm sha1_algorithm;
  8. #endif /* _GPXE_SHA1_H */