Home | History | Annotate | Line # | Download | only in sha256
      1 #include "crypto_hash_sha256.h"
      2 
      3 size_t
      4 crypto_hash_sha256_bytes(void)
      5 {
      6     return crypto_hash_sha256_BYTES;
      7 }
      8 
      9 size_t
     10 crypto_hash_sha256_statebytes(void)
     11 {
     12     return sizeof(crypto_hash_sha256_state);
     13 }
     14