aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| | * test/openssl/test_ssl.rb: ignore SSLError when the connection is closedYusuke Endoh2021-09-261-1/+6
| | * Fixed misspellingsNobuyoshi Nakada2021-09-261-8/+8
| | * ext/openssl/extconf.rb: do not use -Werror=deprecated-declarationsKazuki Yamaguchi2021-09-262-2/+7
| | * Guard static variable firstNobuyoshi Nakada2021-09-261-1/+1
| | * ext/openssl/ossl_ssl.c: Use const declaration if LibreSSL >= 2.8.0Yusuke Endoh2021-09-261-1/+1
| | * drop-in type check for rb_define_module_function卜部昌平2021-09-261-1/+1
| | * rb_iterate now takes rb_block_call_func_t卜部昌平2021-09-261-1/+1
| | * Add a /* fall through */ commentYusuke Endoh2021-09-261-0/+1
| | * test/openssl/utils.rb: Extend the timeoutYusuke Endoh2021-09-261-2/+3
| | * test/test_ssl.rb: Use TLS1.2Yusuke Endoh2021-09-261-0/+5
| | * test/test_ssl.rb: Use larger keysYusuke Endoh2021-09-261-1/+1
| | * test: use larger keys for SSL testsKazuki Yamaguchi2021-09-268-21/+186
| | * test/test_pair: fix deadlock in test_connect_accept_nonblockKazuki Yamaguchi2021-09-261-29/+22
| | * Ignore warnings about ambiguous first argument with the negative integer.Hiroshi SHIBATA2021-09-261-6/+6
| | * ext/openssl/ossl_bn.c (ossl_bn_initialize): get rid of SEGVmame2021-09-261-2/+5
| | * errno.h must be included after config.h because config.h might defineodaira2021-09-261-1/+1
| | * Fix call-seq of OpenSSL.fips_mode and WIN32OLE_METHOD#name [ci skip]kazu2021-09-261-1/+1
| | * Remove -Wno-parentheses flag.nobu2021-09-265-9/+11
| | * Correctly verify abbreviated IPv6 SANsBrian Cunnie2021-09-263-6/+12
| | * Reduce memory allocation when writing to SSLSocketJanko Marohnić2021-09-261-9/+4
| | * openssl/buffering.rb: no RS when outputnobu2021-09-261-5/+3
* | | Merge pull request #459 from rhenium/ky/ssl-set-tmp-dhKazuki Yamaguchi2021-09-274-14/+74
|\ \ \
| * | | ssl: add SSLContext#tmp_dh=ky/ssl-set-tmp-dhKazuki Yamaguchi2021-09-264-10/+74
| * | | ssl: remove private method SSLSocket#tmp_ecdh_callbackKazuki Yamaguchi2021-09-231-4/+0
|/ / /
* | | Merge pull request #456 from ruby/compilation-warningsKazuki Yamaguchi2021-09-129-26/+87
|\ \ \
| * | | Add fallthrough commentsNobuyoshi Nakada2021-09-122-0/+4
| * | | Suppress cast-function-type warningsNobuyoshi Nakada2021-09-128-26/+83
* | | | Merge pull request #455 from ruby/printf-warningsKazuki Yamaguchi2021-09-125-15/+22
|\ \ \ \ | |/ / / |/| | |
| * | | Separate formatting from ossl_make_errorNobuyoshi Nakada2021-09-123-13/+16
| * | | Suppress printf format warningsNobuyoshi Nakada2021-09-124-4/+8
|/ / /
* | | test/openssl/test_x509cert.rb: Prevent "unused variable" warningYusuke Endoh2021-07-191-1/+1
* | | Strip trailing spacesKazuki Yamaguchi2021-07-183-3/+3
* | | Deprecate and rework old (fd) centric functionsSamuel Williams2021-07-182-6/+28
* | | Defer to require prime for OpenSSL::TestBNHiroshi SHIBATA2021-07-181-18/+23
* | | Merge pull request #448 from eregon/avoid-deprecated-rb_iterateKazuki Yamaguchi2021-07-081-2/+3
|\ \ \
| * | | Use rb_block_call() instead of the deprecated rb_iterate() in OpenSSLBenoit Daloze2021-07-061-2/+3
|/ / /
* | | Add example to OpenSSL::KDF.hkdf method (#447)Yusuke Nakamura2021-06-271-0/+8
* | | Merge pull request #446 from rhenium/ky/use-bundlerKazuki Yamaguchi2021-06-256-82/+15
|\ \ \
| * | | test/openssl/envutil: remove assert_raise_with_messageky/use-bundlerKazuki Yamaguchi2021-06-252-53/+1
| * | | use Bundler for dependency management and Rake gem tasksKazuki Yamaguchi2021-06-255-30/+15
|/ / /
* | | Merge pull request #302 from vinistock/include_peer_addr_in_errorKazuki Yamaguchi2021-06-152-4/+57
|\ \ \
| * | | Include peer socket IP address in errorsVinicius Stock2021-06-142-4/+57
|/ / /
* | | Fix -Wundef warnings in core extensionsBenoit Daloze2021-05-251-1/+1
* | | Merge pull request #417 from mame/add-BN_set_flagsKazuki Yamaguchi2021-05-252-0/+76
|\ \ \
| * | | Add OpenSSL::BN#set_flags and #get_flagsYusuke Endoh2021-05-252-0/+76
* | | | Merge pull request #382 from rhenium/ky/pkey-encrypt-decryptKazuki Yamaguchi2021-05-258-317/+684
|\ \ \ \
| * | | | pkey/dsa: refactor DSA#sys{sign,verify} with PKey#{sign,verify}_rawky/pkey-encrypt-decryptKazuki Yamaguchi2021-05-252-88/+54
| * | | | pkey/ec: refactor EC#dsa_{sign,verify}_asn1 with PKey#{sign,verify}_rawKazuki Yamaguchi2021-05-252-55/+22
| * | | | pkey/rsa: port RSA#{private,public}_{encrypt,decrypt} to the EVP APIKazuki Yamaguchi2021-05-252-141/+106
| * | | | pkey: implement PKey#sign_raw, #verify_raw, and #verify_recoverKazuki Yamaguchi2021-05-254-31/+325