oqs-sys 0.11.0+liboqs-0.13.0

Bindings to liboqs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: MIT
#if !defined(LM_VERIFY_H_)
#define LM_VERIFY_H_

#include <stddef.h>
#include <stdbool.h>
#include "lms_namespace.h"

bool lm_validate_signature(
    const unsigned char *public_key,
    const void *message, size_t message_len, bool prehashed,
    const unsigned char *signature, size_t signature_len);

#endif /* LM_VERIFY_H_ */