c803860cf8
The variable sm should contain the signature and the message, not the message and the signature (i.e. the order is crucial).
48 行
1.2 KiB
C
48 行
1.2 KiB
C
#include "../params.h"
|
|
#include "../xmss_core.h"
|
|
#include <stdio.h>
|
|
|
|
#define MLEN 32
|
|
|
|
int main(int argc, char **argv) {
|
|
FILE *keypair;
|
|
xmss_params params;
|
|
uint32_t oid;
|
|
int ret;
|
|
|
|
if (argc != 2) {
|
|
fprintf(stderr, "Expected keypair filename as only parameter, "
|
|
"and the signature + message via stdin.\n"
|
|
"Keypair file needs only to contain the public key.\n"
|
|
"The return code 0 indicates verification success.\n");
|
|
return -1;
|
|
}
|
|
|
|
keypair = fopen(argv[1], "rb");
|
|
if (keypair == NULL) {
|
|
return -1;
|
|
}
|
|
|
|
fread(&oid, 1, XMSS_OID_LEN, keypair);
|
|
xmss_parse_oid(¶ms, oid);
|
|
|
|
unsigned char pk[params.publickey_bytes];
|
|
unsigned char sm[params.bytes + MLEN];
|
|
unsigned char m[params.bytes + MLEN];
|
|
unsigned long long mlen;
|
|
|
|
fread(pk, 1, params.publickey_bytes, keypair);
|
|
fread(sm, 1, params.bytes + MLEN, stdin);
|
|
|
|
ret = xmss_core_sign_open(¶ms, m, &mlen, sm, params.bytes + MLEN, pk);
|
|
|
|
if (ret) {
|
|
printf("Verification failed!\n");
|
|
}
|
|
else {
|
|
printf("Verification succeeded.\n");
|
|
}
|
|
|
|
return ret;
|
|
}
|