sha2_glue.c 743 B

123456789101112131415161718192021222324252627282930313233
  1. #include <fspr.h>
  2. #include <fspr_random.h>
  3. #include <fspr_pools.h>
  4. #include "sha2.h"
  5. static void sha256_init(fspr_crypto_hash_t *h)
  6. {
  7. fspr__SHA256_Init(h->data);
  8. }
  9. static void sha256_add(fspr_crypto_hash_t *h,const void *data,
  10. fspr_size_t bytes)
  11. {
  12. fspr__SHA256_Update(h->data,data,bytes);
  13. }
  14. static void sha256_finish(fspr_crypto_hash_t *h,unsigned char *result)
  15. {
  16. fspr__SHA256_Final(result,h->data);
  17. }
  18. APR_DECLARE(fspr_crypto_hash_t *) fspr_crypto_sha256_new(fspr_pool_t *p)
  19. {
  20. fspr_crypto_hash_t *h=fspr_palloc(p,sizeof *h);
  21. h->data=fspr_palloc(p,sizeof(SHA256_CTX));
  22. h->init=sha256_init;
  23. h->add=sha256_add;
  24. h->finish=sha256_finish;
  25. h->size=256/8;
  26. return h;
  27. }