-
Notifications
You must be signed in to change notification settings - Fork 34
/
hss_sign_inc.h
81 lines (72 loc) · 2.93 KB
/
hss_sign_inc.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#if !defined( HSS_SIGN_INC_H_ )
#define HSS_SIGN_INC_H_
#include <stdbool.h>
#include <stddef.h>
#include "hash.h"
#include "common_defs.h"
/*
* These are the functions to sign a message incrementally.
* That is, we assume that we don't have the entire message at
* once, instead, we have it in pieces (for example, the signature
* is of a multigigabyte file)
*
* Usage:
* struct hss_sign_inc ctx;
* bool success = hss_sign_init( &ctx, working_key,
* update_private_key, private_key_context,
* signature, signature_buffer_len,
* &lsat_signature );
* hss_sign_update( &ctx, message_part_1, len_1 );
* hss_sign_update( &ctx, message_part_2, len_2 );
* hss_sign_update( &ctx, message_part_3, len_3 );
* success = hss_sign_finalize( &ctx, working_key, signature );
* if (success) printf( "We generated the signature\n" );
*
* This is in its own include file because we need to import some
* 'not-generally-for-general-consumption' include files to make
* it work (as they're in the hss_sign_inc structure)
*/
/*
* This is the context structure that holds the intermedate results of an
* in-process signature
* It's a application-visible structure for ease of use: the application can
* allocate it as an automatic, and if the application aborts in the middle of
* signing, it doesn't cause a memory leak
*/
struct hss_sign_inc {
enum hss_error_code status; /* Either hss_error_none if we're in */
/* process, or the reason why we'd fail */
int h; /* The hash function */
merkle_index_t q; /* The index of the bottom level signature */
union hash_context hash_ctx; /* For the running hash we use */
unsigned char c[MAX_HASH]; /* The C value we used */
};
struct hss_extra_info;
/* Starts off the process of incrementally signing a message */
/* If it detects a failure, this returns false */
/* Handing the return code is optional; if this fails, the finalization */
/* step will fail too */
bool hss_sign_init(
struct hss_sign_inc *ctx,
struct hss_working_key *working_key,
bool (*update_private_key)(unsigned char *private_key,
size_t len_private_key, void *context),
void *context,
unsigned char *signature, size_t signature_len,
struct hss_extra_info *info);
/* This adds another piece of the message to sign */
/* Again, the result code is optional */
bool hss_sign_update(
struct hss_sign_inc *ctx,
const void *message_segment,
size_t len_message_segment);
/* This finalizes the signature generation */
/* This returns true if the signature was generated properly */
/* We ask the caller to pass in the working key again, we need to review */
/* the private key (we don't want to place it in the context) */
bool hss_sign_finalize(
struct hss_sign_inc *ctx,
const struct hss_working_key *working_key,
unsigned char *signature,
struct hss_extra_info *info);
#endif /* HSS_SIGN_INC_H_ */