aboutsummaryrefslogtreecommitdiffstats
path: root/ossl_pkey_dh.c
Commit message (Collapse)AuthorAgeFilesLines
* change all rb_raise and OSSL_Raise to ossl_raiseMichal Rokos2002-06-121-13/+13
| | | | | fix: Cipher#final cannot be called without preceding Cipher#(en|de)crypt Config ported to OpenSSL 0.9.7 interface
* PKey: NO useless EVP_PKEY* dups.Michal Rokos2002-06-081-11/+6
|
* PKey (DH|DSA|RSA) cleanup and rewrite (EVP_PKEY is now wrapped), final ↵Michal Rokos2002-06-061-142/+131
| | | | cleaning for ossl.h
* HMAC and SPKI cleanups & portsMichal Rokos2002-06-051-1/+1
|
* Initial revisionMichal Rokos2002-06-041-3/+3
|
* * Macros fixupsossl1-ossl2-branch-pointMichal Rokos2002-04-071-4/+4
| | | | | | | | | | * X509ExtFactory cleanup * fixed strptime warning on Linux * X509::Certificate#version has been changed! !!! WARNING !!! x509.version = 2 -> defines X509v3, (0 for v1, 1 for v2, ...) p x509.version -> 2, means that it is X509v3 !!! WARNING !!!
* * WARNING! All to_str methods are not used any longer (use to_text instead)Michal Rokos2002-03-051-3/+3
| | | | | * made an aliases to_pem as to_s * more relaxed params checking - everywhere where string was needed it is OK that obj implements to_s method
* * More benevolent checks (Check_SafeStr(x) -> Check_Type(x, T_STRING)Michal Rokos2002-02-231-1/+1
| | | | (where we don't care)
* * transition from rb_raise to OSSL_Raise (where possible)Michal Rokos2002-02-131-0/+316
* some mem checks * preliminary DH key support