summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/ssl/ssltest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/ssl/ssltest.c')
-rw-r--r--src/lib/libssl/src/ssl/ssltest.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/libssl/src/ssl/ssltest.c b/src/lib/libssl/src/ssl/ssltest.c
index cee5834fef..1f5014baf3 100644
--- a/src/lib/libssl/src/ssl/ssltest.c
+++ b/src/lib/libssl/src/ssl/ssltest.c
@@ -2069,8 +2069,8 @@ app_verify_callback(X509_STORE_CTX *ctx, void *arg)
2069 2069
2070static RSA *rsa_tmp = NULL; 2070static RSA *rsa_tmp = NULL;
2071 2071
2072static RSA 2072static RSA *
2073*tmp_rsa_cb(SSL *s, int is_export, int keylength) 2073tmp_rsa_cb(SSL *s, int is_export, int keylength)
2074{ 2074{
2075 BIGNUM *bn = NULL; 2075 BIGNUM *bn = NULL;
2076 if (rsa_tmp == NULL) { 2076 if (rsa_tmp == NULL) {
@@ -2112,8 +2112,8 @@ free_tmp_rsa(void)
2112 * $ openssl dhparam -C -noout -dsaparam 1024 2112 * $ openssl dhparam -C -noout -dsaparam 1024
2113 * (The third function has been renamed to avoid name conflicts.) 2113 * (The third function has been renamed to avoid name conflicts.)
2114 */ 2114 */
2115static DH 2115static DH *
2116*get_dh512() 2116get_dh512()
2117{ 2117{
2118 static unsigned char dh512_p[] = { 2118 static unsigned char dh512_p[] = {
2119 0xCB, 0xC8, 0xE1, 0x86, 0xD0, 0x1F, 0x94, 0x17, 0xA6, 0x99, 0xF0, 0xC6, 2119 0xCB, 0xC8, 0xE1, 0x86, 0xD0, 0x1F, 0x94, 0x17, 0xA6, 0x99, 0xF0, 0xC6,
@@ -2138,8 +2138,8 @@ static DH
2138 return (dh); 2138 return (dh);
2139} 2139}
2140 2140
2141static DH 2141static DH *
2142*get_dh1024() 2142get_dh1024()
2143{ 2143{
2144 static unsigned char dh1024_p[] = { 2144 static unsigned char dh1024_p[] = {
2145 0xF8, 0x81, 0x89, 0x7D, 0x14, 0x24, 0xC5, 0xD1, 0xE6, 0xF7, 0xBF, 0x3A, 2145 0xF8, 0x81, 0x89, 0x7D, 0x14, 0x24, 0xC5, 0xD1, 0xE6, 0xF7, 0xBF, 0x3A,
@@ -2169,8 +2169,8 @@ static DH
2169 return (dh); 2169 return (dh);
2170} 2170}
2171 2171
2172static DH 2172static DH *
2173*get_dh1024dsa() 2173get_dh1024dsa()
2174{ 2174{
2175 static unsigned char dh1024_p[] = { 2175 static unsigned char dh1024_p[] = {
2176 0xC8, 0x00, 0xF7, 0x08, 0x07, 0x89, 0x4D, 0x90, 0x53, 0xF3, 0xD5, 0x00, 2176 0xC8, 0x00, 0xF7, 0x08, 0x07, 0x89, 0x4D, 0x90, 0x53, 0xF3, 0xD5, 0x00,