summaryrefslogtreecommitdiffstats
path: root/test/openssl
Commit message (Expand)AuthorAgeFilesLines
* * test/openssl/test_asn1.c: String#[]= doesnt't accept Integer.gotoyuzo2006-07-021-1/+1
* * ext/openssl/extconf.rb: add check for OBJ_NAME_do_all_sorted.gotoyuzo2006-05-082-9/+51
* * test/openssl/test_ssl.rb (test_parallel): call GC.start to closegotoyuzo2005-12-121-0/+1
* * ext/openssl/extconf.rb: check for X509V3_EXT_nconf_nid.gotoyuzo2005-11-221-0/+74
* * ext/openssl/ossl_cipher.c (ossl_cipher_update): input data mustgotoyuzo2005-10-301-0/+5
* * ext/openssl/ossl_pkey.h, ossl_pkey_rsa.c, ossl_pkey_dsa.c:gotoyuzo2005-09-181-0/+11
* * test/openssl/test_pkcs7.rb (test_enveloped): skip this testgotoyuzo2005-09-121-0/+6
* * ext/openssl/ossl_asn1.c (asn1str_to_str): new function.gotoyuzo2005-09-071-0/+148
* * add test for SHA224, SHA256, SHA384 and SHA512.gotoyuzo2005-08-221-0/+9
* * ext/openssl/ossl_ns_spki.c (ossl_spki_initialize): try to decodegotoyuzo2005-08-222-0/+81
* * test/openssl/test_x509store.rb: add test for expired CRLgotoyuzo2005-05-281-7/+28
* * ext/openssl/ossl_ssl.c: OpenSSL::SSL::SSLContexts suports callbacks:gotoyuzo2005-03-093-191/+41
* * ext/openssl/ossl_ssl.c (ossl_start_ssl): should wait for thatgotoyuzo2005-03-051-0/+332
* * test/openssl/ssl_server.rb: get rid of race condition.nobu2005-02-161-2/+1
* * ext/openssl/lib/openssl/ssl.rbgotoyuzo2005-02-141-0/+49
* * ext/openssl/ossl_asn1.c (ossl_asn1_traverse, ossl_asn1_decode):gotoyuzo2004-12-211-0/+197
* * ext/openssl/ossl_pkey_rsa.c (ossl_rsa_public_encrypt,gotoyuzo2004-12-051-0/+38
* * test/openssl/ssl_server.rb: try to listen ports from 20443 to 20542gotoyuzo2004-11-173-38/+39
* * ext/openssl/ossl_x509store.cgotoyuzo2004-10-151-0/+32
* * ext/openssl/ossl_x509name.c (ossl_x509name_to_s): add optionalgotoyuzo2004-09-131-0/+99
* * eval.c (rb_call0): should call rb_call_super() directly formatz2004-07-281-4/+8
* * test/openssl/test_ssl.rb: add workaround for Cygwin.gotoyuzo2004-07-181-0/+4
* * test/openssl/ssl_server.rb, test/openssl/test_ssl.rb: workaround togotoyuzo2004-07-162-9/+2
* * ext/openssl/ossl_asn1.c (ossl_asn1cons_to_der): fix type ofgotoyuzo2004-07-141-0/+2
* * ext/openssl/extconf.rb: check for EVP_CIPHER_CTX_copy, ENGINE_add,gotoyuzo2004-06-303-0/+161
* * test/openssl/test_ssl.rb: use Process.kill to kill child processgotoyuzo2004-06-202-17/+24
* * add test for OpenSSL::SSL.gotoyuzo2004-05-262-0/+262
* * test/openssl/test_x509name.rb: short names of some OIDs (serialNumbergotoyuzo2004-05-242-8/+25
* * test_x509crl.rb (test_basic): add test for CRL issuer.gotoyuzo2004-05-213-0/+145
* * rescue LoadError. [ruby-dev:23539]gotoyuzo2004-05-194-7/+35
* * test for OpenSSL::X509gotoyuzo2004-05-175-0/+799
pan>%s: %s [try http://www.rsyslog.com/e/%d ]", buf, errStr, iErrCode * -1); } } else { if(iErrCode == NO_ERRCODE) { snprintf(msg, sizeof(msg), "%s", buf); } else { snprintf(msg, sizeof(msg), "%s [try http://www.rsyslog.com/e/%d ]", buf, iErrCode * -1); } } msg[sizeof(msg)/sizeof(char) - 1] = '\0'; /* just to be on the safe side... */ errno = 0; glblErrLogger(iErrCode, (uchar*)msg); ENDfunc } /* queryInterface function * rgerhards, 2008-03-05 */ BEGINobjQueryInterface(errmsg) CODESTARTobjQueryInterface(errmsg) if(pIf->ifVersion != errmsgCURR_IF_VERSION) { /* check for current version, increment on each change */ ABORT_FINALIZE(RS_RET_INTERFACE_NOT_SUPPORTED); } /* ok, we have the right interface, so let's fill it * Please note that we may also do some backwards-compatibility * work here (if we can support an older interface version - that, * of course, also affects the "if" above). */ pIf->LogError = LogError; finalize_it: ENDobjQueryInterface(errmsg) /* Initialize the errmsg class. Must be called as the very first method * before anything else is called inside this class. * rgerhards, 2008-02-19 */ BEGINAbstractObjClassInit(errmsg, 1, OBJ_IS_CORE_MODULE) /* class, version */ /* request objects we use */ /* set our own handlers */ ENDObjClassInit(errmsg) /* Exit the class. * rgerhards, 2008-04-17 */ BEGINObjClassExit(errmsg, OBJ_IS_CORE_MODULE) /* class, version */ /* release objects we no longer need */ ENDObjClassExit(errmsg) /* vi:set ai: */