icwmp/src/ssl_utils.h
2023-07-18 10:02:59 +05:30

15 lines
354 B
C

/*
* ssl_utils.h: Utility functions with ssl
*
* Copyright (C) 2022-2023 IOPSYS Software Solutions AB. All rights reserved.
*
* See LICENSE file for license related information.
*/
#ifndef _SSL_UTILS
#define _SSL_UTILS
char *generate_random_string(size_t size);
void message_compute_signature(char *msg_out, char *signature, size_t len);
#endif