mirror of
https://github.com/openvswitch/ovs
synced 2025-10-21 14:49:41 +00:00
11 lines
157 B
C
11 lines
157 B
C
![]() |
#ifndef DHPARAMS_H
|
||
|
#define DHPARAMS_H 1
|
||
|
|
||
|
#include <openssl/dh.h>
|
||
|
|
||
|
DH *get_dh1024(void);
|
||
|
DH *get_dh2048(void);
|
||
|
DH *get_dh4096(void);
|
||
|
|
||
|
#endif /* dhparams.h */
|