File: sha512.h

package info (click to toggle)
ruby-ed25519 1.4.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 668 kB
  • sloc: ansic: 3,789; java: 3,112; ruby: 103; makefile: 6
file content (8 lines) | stat: -rw-r--r-- 150 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#ifndef SHA512_H
#define SHA512_H

#include <stdint.h>

int crypto_hash_sha512(uint8_t *out,const uint8_t *in,uint64_t inlen);

#endif /* SHA512_H */