/usr/include/bitlbee/sha1.h is in bitlbee-dev 3.4.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #ifndef _SHA1_H_
#define _SHA1_H_
#include <glib.h>
#include <gmodule.h>
#define SHA1_HASH_SIZE 20
typedef GChecksum *sha1_state_t;
void sha1_init(sha1_state_t *);
void sha1_append(sha1_state_t *, const guint8 *, unsigned int);
void sha1_finish(sha1_state_t *, guint8 digest[SHA1_HASH_SIZE]);
void sha1_hmac(const char *, size_t, const char *, size_t, guint8 digest[SHA1_HASH_SIZE]);
char *sha1_random_uuid(sha1_state_t *);
#endif
|