aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl
Commit message (Expand)AuthorAgeFilesLines
* [ruby/openssl] hmac: fix wrong usage of EVP_DigestSignFinal()Kazuki Yamaguchi2021-12-201-2/+2
* [ruby/openssl] pkey: deprecate PKey#set_* methodsKazuki Yamaguchi2021-12-202-0/+28
* [ruby/openssl] pkey/ec: deprecate OpenSSL::PKey::EC#generate_key!Kazuki Yamaguchi2021-12-201-0/+4
* [ruby/openssl] pkey/dh: deprecate OpenSSL::PKey::DH#generate_key!Kazuki Yamaguchi2021-12-202-8/+24
* [ruby/openssl] pkey/ec: avoid using EC#public_key= in EC#dh_compute_keyKazuki Yamaguchi2021-12-201-3/+8
* [ruby/openssl] pkey/dh: avoid using DH#set_key in DH#compute_keyKazuki Yamaguchi2021-12-201-3/+13
* [ruby/openssl] pkey: use EVP_PKEY_dup() if availableKazuki Yamaguchi2021-12-206-1/+42
* [ruby/openssl] pkey: allocate EVP_PKEY on #initializeKazuki Yamaguchi2021-12-206-163/+218
* [ruby/openssl] pkey: do not check NULL argument in ossl_pkey_new()Kazuki Yamaguchi2021-12-202-5/+2
* [ruby/openssl] pkey: use OSSL_DECODER to load encrypted PEM on OpenSSL 3.0Kazuki Yamaguchi2021-12-201-0/+40
* [ruby/openssl] Fix typos [ci skip]Nobuyoshi Nakada2021-11-032-2/+2
* [ruby/openssl] x509name: improve docs for X509::NameKazuki Yamaguchi2021-11-012-2/+27
* [ruby/openssl] ssl: disallow reading/writing to unstarted SSL socketKazuki Yamaguchi2021-11-011-139/+92
* [ruby/openssl] bn: expand BIGNUM_RAND and BIGNUM_RAND_RANGE macrosKazuki Yamaguchi2021-10-251-50/+50
* [ruby/openssl] bn: make BN.pseudo_rand{,_range} an alias of BN.rand{,_range}Kazuki Yamaguchi2021-10-251-16/+2
* [ruby/openssl] pkey, ssl: use EVP_PKEY_eq() instead of EVP_PKEY_cmp()Kazuki Yamaguchi2021-10-254-3/+8
* [ruby/openssl] pkey/ec: use EC_GROUP_free() instead of EC_GROUP_clear_free()Kazuki Yamaguchi2021-10-251-1/+1
* [ruby/openssl] pkey/ec: deprecate PKey::EC::Point#make_affine! and make it a ...Kazuki Yamaguchi2021-10-251-0/+5
* [ruby/openssl] hmac: use EVP_MD_CTX_get_pkey_ctx() instead of EVP_MD_CTX_pkey...Kazuki Yamaguchi2021-10-253-5/+14
* [ruby/openssl] digest: use EVP_MD_CTX_get0_md() instead of EVP_MD_CTX_md() if...Kazuki Yamaguchi2021-10-254-4/+9
* [ruby/openssl] bn: use BN_check_prime() in OpenSSL::BN#prime{,_fasttest}?Kazuki Yamaguchi2021-10-252-49/+22
* [ruby/openssl] ssl: use SSL_get_rbio() to check if SSL is started or notKazuki Yamaguchi2021-10-251-2/+2
* [ruby/openssl] ssl: use SSL_CTX_load_verify_{file,dir}() if availableKazuki Yamaguchi2021-10-252-0/+8
* [ruby/openssl] ts: use TS_VERIFY_CTX_set_certs instead of TS_VERIFY_CTS_set_c...Kazuki Yamaguchi2021-10-253-2/+8
* [ruby/openssl] ossl.c: use ERR_get_error_all() if availableKazuki Yamaguchi2021-10-252-19/+24
* [ruby/openssl] ext/openssl/ossl.h: add helper macros for OpenSSL/LibreSSL ver...Kazuki Yamaguchi2021-10-251-0/+12
* [ruby/openssl] Raise an exception if the IO object passed to SSLSocket isn't ...Aaron Patterson2021-10-231-0/+1
* [ruby/openssl] require Ruby 2.6 or laterKazuki Yamaguchi2021-10-166-105/+2
* [ruby/openssl] bump version number to 3.0.0.preKazuki Yamaguchi2021-10-162-2/+2
* [ruby/openssl] Ruby/OpenSSL 2.2.1Kazuki Yamaguchi2021-10-163-2/+19
* [ruby/openssl] Ruby/OpenSSL 2.1.3Kazuki Yamaguchi2021-10-161-0/+36
* [ruby/openssl] ssl: avoid directly storing String object in NPN callbackKazuki Yamaguchi2021-10-161-2/+2
* [ruby/openssl] x509store: explicitly call rb_gc_mark() against Store/StoreCon...Kazuki Yamaguchi2021-10-161-15/+23
* [ruby/openssl] ssl: explicitly call rb_gc_mark() against SSLContext/SSLSocket...Kazuki Yamaguchi2021-10-161-2/+17
* [ruby/openssl] digest: load digest library using Kernel#requireKazuki Yamaguchi2021-10-161-2/+6
* [ruby/openssl] fix segv in Timestamp::{Request,Response,TokenInfo}.newNobuhiro IMAI2021-10-161-3/+9
* [ruby/openssl] ts: libressl build fix warningDavid Carlier2021-10-161-0/+4
* [ruby/openssl] ssl: temporary lock string buffer while readingKazuki Yamaguchi2021-10-161-5/+16
* [ruby/openssl] ssl: create a temporary frozen string buffer when writingKazuki Yamaguchi2021-10-161-5/+5
* [ruby/openssl] ssl: add SSLContext#tmp_dh=Kazuki Yamaguchi2021-10-163-3/+57
* [ruby/openssl] ssl: remove private method SSLSocket#tmp_ecdh_callbackKazuki Yamaguchi2021-10-161-4/+0
* ruby tool/update-deps --fix卜部昌平2021-10-051-0/+288
* [ruby/openssl] Add fallthrough commentsNobuyoshi Nakada2021-09-122-0/+4
* [ruby/openssl] Suppress cast-function-type warningsNobuyoshi Nakada2021-09-128-26/+83
* [ruby/openssl] Separate formatting from ossl_make_errorNobuyoshi Nakada2021-09-123-13/+16
* [ruby/openssl] Suppress printf format warningsNobuyoshi Nakada2021-09-124-4/+8
* [ruby/openssl] Strip trailing spacesKazuki Yamaguchi2021-07-183-3/+3
* [ruby/openssl] Deprecate and rework old (fd) centric functionsSamuel Williams2021-07-182-6/+28
* [ruby/openssl] Use rb_block_call() instead of the deprecated rb_iterate() in ...Benoit Daloze2021-07-181-2/+3
* [ruby/openssl] Add example to OpenSSL::KDF.hkdf method (https://github.com/ru...Yusuke Nakamura2021-07-181-0/+8