~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/util/sha1/sha1.h

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
} SHA1_CTX;
28
28
 
29
29
void SHA1Init(SHA1_CTX *);
30
 
void SHA1Pad(SHA1_CTX *);
31
 
void SHA1Transform(uint32_t [5], const uint8_t [SHA1_BLOCK_LENGTH]);
32
30
void SHA1Update(SHA1_CTX *, const uint8_t *, size_t);
33
31
void SHA1Final(uint8_t [SHA1_DIGEST_LENGTH], SHA1_CTX *);
34
32