summaryrefslogtreecommitdiff
path: root/engines/e_atalla.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2003-01-15 02:01:55 +0000
committerGeoff Thorpe <geoff@openssl.org>2003-01-15 02:01:55 +0000
commit0e4aa0d2d2807e0cbeac29b65d2b9061daed8941 (patch)
treecec435e2a3ce007d0b1a7be92c4cf12cdc4bd1a5 /engines/e_atalla.c
parent08cb96bba2831a8fc3dbda697ab65d64bb05a371 (diff)
downloadopenssl-new-0e4aa0d2d2807e0cbeac29b65d2b9061daed8941.tar.gz
As with RSA, which was modified recently, this change makes it possible to
override key-generation implementations by placing handlers in the methods for DSA and DH. Also, parameter generation for DSA and DH is possible by another new handler for each method.
Diffstat (limited to 'engines/e_atalla.c')
-rw-r--r--engines/e_atalla.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/e_atalla.c b/engines/e_atalla.c
index 6807e8400c..64dcc046e8 100644
--- a/engines/e_atalla.c
+++ b/engines/e_atalla.c
@@ -154,7 +154,9 @@ static DSA_METHOD atalla_dsa =
NULL, /* init */
NULL, /* finish */
0, /* flags */
- NULL /* app_data */
+ NULL, /* app_data */
+ NULL, /* dsa_paramgen */
+ NULL /* dsa_keygen */
};
#endif
@@ -169,6 +171,7 @@ static DH_METHOD atalla_dh =
NULL,
NULL,
0,
+ NULL,
NULL
};
#endif