Home | History | Annotate | Line # | Download | only in sha512
      1 #include "crypto_hash_sha512.h"
      2 
      3 size_t
      4 crypto_hash_sha512_bytes(void)
      5 {
      6     return crypto_hash_sha512_BYTES;
      7 }
      8 
      9 size_t
     10 crypto_hash_sha512_statebytes(void)
     11 {
     12     return sizeof(crypto_hash_sha512_state);
     13 }
     14