RSA_METHOD now supports key-generation, but (for now) none of these

ENGINEs implement it.
This commit is contained in:
Geoff Thorpe 2003-01-07 05:53:58 +00:00
parent 2814c62915
commit 4ebb5293fc
8 changed files with 11 additions and 3 deletions

View File

@ -182,7 +182,8 @@ static RSA_METHOD ibm_4758_cca_rsa =
RSA_FLAG_SIGN_VER, /* flags */ RSA_FLAG_SIGN_VER, /* flags */
NULL, /* app_data */ NULL, /* app_data */
cca_rsa_sign, /* rsa_sign */ cca_rsa_sign, /* rsa_sign */
cca_rsa_verify /* rsa_verify */ cca_rsa_verify, /* rsa_verify */
NULL /* rsa_keygen */
}; };
#endif #endif

View File

@ -172,7 +172,8 @@ static RSA_METHOD aep_rsa =
0, /*flags*/ 0, /*flags*/
NULL, /*app_data*/ NULL, /*app_data*/
NULL, /*rsa_sign*/ NULL, /*rsa_sign*/
NULL /*rsa_verify*/ NULL, /*rsa_verify*/
NULL /*rsa_keygen*/
}; };
#endif #endif

View File

@ -136,6 +136,7 @@ static RSA_METHOD atalla_rsa =
0, 0,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
#endif #endif

View File

@ -154,6 +154,7 @@ static RSA_METHOD cswift_rsa =
0, 0,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
#endif #endif

View File

@ -185,6 +185,7 @@ static RSA_METHOD hwcrhk_rsa =
0, 0,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
#endif #endif

View File

@ -270,6 +270,7 @@ static RSA_METHOD nuron_rsa =
0, 0,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
#endif #endif

View File

@ -122,7 +122,8 @@ static RSA_METHOD surewarehk_rsa =
0, /* RSA flag*/ 0, /* RSA flag*/
NULL, NULL,
NULL, /* OpenSSL sign*/ NULL, /* OpenSSL sign*/
NULL /* OpenSSL verify*/ NULL, /* OpenSSL verify*/
NULL /* keygen */
}; };
#endif #endif

View File

@ -144,6 +144,7 @@ static RSA_METHOD ubsec_rsa =
0, 0,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
#endif #endif