Browse Source
Blinded paths will want this too; it's mainly copied from sphinx. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>travis-debug
Rusty Russell
5 years ago
3 changed files with 67 additions and 0 deletions
@ -0,0 +1,36 @@ |
|||||
|
#include <bitcoin/privkey.h> |
||||
|
#include <ccan/array_size/array_size.h> |
||||
|
#include <ccan/mem/mem.h> |
||||
|
#include <common/hmac.h> |
||||
|
#include <wire/wire.h> |
||||
|
|
||||
|
void hmac(const void *src, size_t slen, |
||||
|
const void *key, size_t klen, |
||||
|
struct hmac *hmac) |
||||
|
{ |
||||
|
crypto_auth_hmacsha256_state state; |
||||
|
|
||||
|
crypto_auth_hmacsha256_init(&state, memcheck(key, klen), klen); |
||||
|
crypto_auth_hmacsha256_update(&state, memcheck(src, slen), slen); |
||||
|
crypto_auth_hmacsha256_final(&state, hmac->bytes); |
||||
|
} |
||||
|
|
||||
|
void subkey_from_hmac(const char *prefix, |
||||
|
const struct secret *base, |
||||
|
struct secret *key) |
||||
|
{ |
||||
|
struct hmac h; |
||||
|
hmac(base->data, sizeof(base->data), prefix, strlen(prefix), &h); |
||||
|
BUILD_ASSERT(sizeof(h.bytes) == sizeof(key->data)); |
||||
|
memcpy(key->data, h.bytes, sizeof(key->data)); |
||||
|
} |
||||
|
|
||||
|
void towire_hmac(u8 **pptr, const struct hmac *hmac) |
||||
|
{ |
||||
|
towire_u8_array(pptr, hmac->bytes, ARRAY_SIZE(hmac->bytes)); |
||||
|
} |
||||
|
|
||||
|
void fromwire_hmac(const u8 **ptr, size_t *max, struct hmac *hmac) |
||||
|
{ |
||||
|
fromwire_u8_array(ptr, max, hmac->bytes, ARRAY_SIZE(hmac->bytes)); |
||||
|
} |
@ -0,0 +1,30 @@ |
|||||
|
#ifndef LIGHTNING_COMMON_HMAC_H |
||||
|
#define LIGHTNING_COMMON_HMAC_H |
||||
|
#include "config.h" |
||||
|
#include <ccan/short_types/short_types.h> |
||||
|
#include <ccan/structeq/structeq.h> |
||||
|
#include <sodium/crypto_auth_hmacsha256.h> |
||||
|
|
||||
|
struct secret; |
||||
|
|
||||
|
/* HMAC used by Sphinx: SHA256 */ |
||||
|
struct hmac { |
||||
|
u8 bytes[crypto_auth_hmacsha256_BYTES]; |
||||
|
}; |
||||
|
|
||||
|
void hmac(const void *src, size_t slen, |
||||
|
const void *key, size_t klen, |
||||
|
struct hmac *hmac); |
||||
|
|
||||
|
/* Common style: hmac to derive key using fixed string prefix. */ |
||||
|
void subkey_from_hmac(const char *prefix, |
||||
|
const struct secret *base, |
||||
|
struct secret *key); |
||||
|
|
||||
|
void towire_hmac(u8 **pptr, const struct hmac *hmac); |
||||
|
void fromwire_hmac(const u8 **ptr, size_t *max, struct hmac *hmac); |
||||
|
|
||||
|
/* Define hmac_eq. */ |
||||
|
STRUCTEQ_DEF(hmac, 0, bytes); |
||||
|
|
||||
|
#endif /* LIGHTNING_COMMON_HMAC_H */ |
Loading…
Reference in new issue