mirror of
https://github.com/darlinghq/darling-corecrypto.git
synced 2024-11-23 12:19:44 +00:00
13 lines
324 B
C
13 lines
324 B
C
|
#ifndef corecrypto_ccsrp_gp_h
|
||
|
#define corecrypto_ccsrp_gp_h
|
||
|
|
||
|
#include <corecrypto/ccdh.h>
|
||
|
|
||
|
ccdh_const_gp_t ccsrp_gp_rfc5054_1024(void);
|
||
|
ccdh_const_gp_t ccsrp_gp_rfc5054_2048(void);
|
||
|
ccdh_const_gp_t ccsrp_gp_rfc5054_3072(void);
|
||
|
ccdh_const_gp_t ccsrp_gp_rfc5054_4096(void);
|
||
|
ccdh_const_gp_t ccsrp_gp_rfc5054_8192(void);
|
||
|
|
||
|
#endif
|