forked from ElementsProject/lightning
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ccan_compat.h
40 lines (37 loc) · 1.93 KB
/
ccan_compat.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef LIGHTNING_CCAN_COMPAT_H
#define LIGHTNING_CCAN_COMPAT_H
/* Magical file included from config.h (ie. everywhere) which renames
* sha256 and ripemd160 routines so they don't clash with libwally-core's
* internal ones */
/* So, for obvious reasons, this is an exception to the usual rule that we
#include "config.h"
* in all files. */
#define sha256(sha, p, size) ccan_sha256(sha, p, size)
#define sha256_init(ctx) ccan_sha256_init(ctx)
#define sha256_update(ctx, p, size) ccan_sha256_update(ctx, p, size)
#define sha256_done(sha256, res) ccan_sha256_done(sha256, res)
#define sha256_u8(ctx, v) ccan_sha256_u8(ctx, v)
#define sha256_u16(ctx, v) ccan_sha256_u16(ctx, v)
#define sha256_u32(ctx, v) ccan_sha256_u32(ctx, v)
#define sha256_u64(ctx, v) ccan_sha256_u64(ctx, v)
#define sha256_le16(ctx, v) ccan_sha256_le16(ctx, v)
#define sha256_le32(ctx, v) ccan_sha256_le32(ctx, v)
#define sha256_le64(ctx, v) ccan_sha256_le64(ctx, v)
#define sha256_be16(ctx, v) ccan_sha256_be16(ctx, v)
#define sha256_be32(ctx, v) ccan_sha256_be32(ctx, v)
#define sha256_be64(ctx, v) ccan_sha256_be64(ctx, v)
#define ripemd160(sha, p, size) ccan_ripemd160(sha, p, size)
#define ripemd160_init(ctx) ccan_ripemd160_init(ctx)
#define ripemd160_update(ctx, p, size) ccan_ripemd160_update(ctx, p, size)
#define ripemd160_done(ripemd160, res) ccan_ripemd160_done(ripemd160, res)
#define ripemd160_u8(ctx, v) ccan_ripemd160_u8(ctx, v)
#define ripemd160_u16(ctx, v) ccan_ripemd160_u16(ctx, v)
#define ripemd160_u32(ctx, v) ccan_ripemd160_u32(ctx, v)
#define ripemd160_u64(ctx, v) ccan_ripemd160_u64(ctx, v)
#define ripemd160_le16(ctx, v) ccan_ripemd160_le16(ctx, v)
#define ripemd160_le32(ctx, v) ccan_ripemd160_le32(ctx, v)
#define ripemd160_le64(ctx, v) ccan_ripemd160_le64(ctx, v)
#define ripemd160_be16(ctx, v) ccan_ripemd160_be16(ctx, v)
#define ripemd160_be32(ctx, v) ccan_ripemd160_be32(ctx, v)
#define ripemd160_be64(ctx, v) ccan_ripemd160_be64(ctx, v)
#endif /* LIGHTNING_CCAN_COMPAT_H */