7 lines
141 B
C++
7 lines
141 B
C++
#ifndef PM_CRYPT_H
|
|
#define PM_CRYPT_H
|
|
#include <openssl/crypto.h>
|
|
namespace pupes_message_client_lib {
|
|
EVP_PKEY *generate_keypair();
|
|
}
|
|
#endif |