mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 07:04:22 +01:00
common: new file hmac for hmac calculation.
Blinded paths will want this too; it's mainly copied from sphinx. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
@@ -25,6 +25,7 @@ COMMON_SRC_NOGEN := \
|
||||
common/gossip_rcvd_filter.c \
|
||||
common/gossip_store.c \
|
||||
common/hash_u5.c \
|
||||
common/hmac.c \
|
||||
common/htlc_state.c \
|
||||
common/htlc_trim.c \
|
||||
common/htlc_tx.c \
|
||||
|
||||
36
common/hmac.c
Normal file
36
common/hmac.c
Normal file
@@ -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));
|
||||
}
|
||||
30
common/hmac.h
Normal file
30
common/hmac.h
Normal file
@@ -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 */
|
||||
Reference in New Issue
Block a user