mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2026-03-14 21:10:02 +01:00
15 lines
354 B
C
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
|