aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Merge pull request #392 from rhenium/ky/x509store-reviewKazuki Yamaguchi2020-08-212-207/+417
|\ \ \ \ | |/ / / |/| | |
| * | | test/openssl/test_x509store: tidy up tests for X509::Store#add_certky/x509store-reviewKazuki Yamaguchi2020-08-121-17/+9
| * | | test/openssl/test_x509store: break up test_verifyKazuki Yamaguchi2020-08-121-112/+227
| * | | x509store: update rdoc for X509::Store and X509::StoreContextKazuki Yamaguchi2020-08-121-13/+113
| * | | x509store: avoid ossl_raise() calls with NULL messageKazuki Yamaguchi2020-08-121-19/+14
| * | | x509store: refactor X509::StoreContext#chainKazuki Yamaguchi2020-08-121-18/+5
| * | | x509store: emit warning if arguments are given to X509::Store.newKazuki Yamaguchi2020-08-122-9/+15
| * | | x509store: let X509::Store#add_file raise TypeError if nil is givenKazuki Yamaguchi2020-08-122-20/+35
* | | | Merge pull request #386 from rhenium/ky/ssl-attr-default-valuesKazuki Yamaguchi2020-08-122-11/+59
|\ \ \ \
| * | | | ssl: initialize verify_mode and verify_hostname with default valuesky/ssl-attr-default-valuesKazuki Yamaguchi2020-07-182-0/+8
| * | | | test/openssl/test_ssl: revise verify_mode test casesKazuki Yamaguchi2020-07-181-1/+45
| * | | | test/openssl/test_ssl: revise a test case for client_cert_cbKazuki Yamaguchi2020-07-181-10/+6
* | | | | Merge pull request #388 from no6v/patch-1Kazuki Yamaguchi2020-07-291-1/+1
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | [DOC] Fix RDoc markupNobuhiro IMAI2020-07-291-1/+1
|/ / / /
* / / / Fix typo in documentationClaus Lensbøl2020-07-241-3/+3
|/ / /
* | | Merge pull request #383 from cwjenkins/add_rsa_keys_eqlKazuki Yamaguchi2020-07-162-0/+57
|\ \ \
| * | | Add compare? method to OpenSSL::PKey that wraps EVP_PKEY_cmp.Colton Jenkins2020-07-142-0/+57
* | | | Merge pull request #381 from rhenium/ky/hmac-base64Kazuki Yamaguchi2020-07-102-0/+29
|\ \ \ \
| * | | | hmac: implement base64digest methodsky/hmac-base64Kazuki Yamaguchi2020-06-302-0/+29
* | | | | Merge pull request #384 from bdewater/lower-case-cipherKazuki Yamaguchi2020-07-083-17/+17
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | User lower case cipher names for maximum compatibilityBart de Water2020-07-073-17/+17
|/ / / /
* | | | Merge pull request #371 from rhenium/ky/hmac-evpKazuki Yamaguchi2020-06-307-170/+98
|\| | |
| * | | hmac: migrate from the low-level HMAC API to the EVP APIky/hmac-evpKazuki Yamaguchi2020-06-306-170/+89
| * | | hmac: add a test case for OpenSSL::HMAC singleton methodsKazuki Yamaguchi2020-06-301-0/+9
* | | | Merge pull request #372 from rhenium/ky/pkey-ec-point-deprecate-mul-aryKazuki Yamaguchi2020-06-302-15/+27
|\ \ \ \ | |/ / / |/| | |
| * | | pkey/ec: deprecate OpenSSL::PKey::EC::Point#mul(ary, ary [, bn])ky/pkey-ec-point-deprecate-mul-aryKazuki Yamaguchi2020-06-292-15/+27
|/ / /
* | | digest, hmac, ts, x509: use IO.binread in examples where appropriateKazuki Yamaguchi2020-05-134-18/+18
* | | Merge pull request #329 from rhenium/ky/pkey-generic-operationsKazuki Yamaguchi2020-05-137-110/+554
|\ \ \
| * | | pkey: reimplement PKey::DH#compute_key and PKey::EC#dh_compute_keyky/pkey-generic-operationsKazuki Yamaguchi2020-05-133-67/+33
| * | | pkey: add PKey::PKey#deriveKazuki Yamaguchi2020-05-134-0/+107
| * | | pkey: support 'one-shot' signing and verificationKazuki Yamaguchi2020-05-132-0/+75
| * | | pkey: port PKey::PKey#sign and #verify to the EVP_Digest* interfaceKazuki Yamaguchi2020-05-132-39/+63
| * | | pkey: add PKey.generate_parameters and .generate_keyKazuki Yamaguchi2020-05-132-0/+265
| * | | pkey: assume generic PKeys contain private componentsKazuki Yamaguchi2020-05-131-4/+11
| |/ /
* | | Merge pull request #328 from rhenium/ky/pkey-refactor-serializationKazuki Yamaguchi2020-05-1314-514/+282
|\ \ \
| * | | pkey: refactor #export/#to_pem and #to_derky/pkey-refactor-serializationKazuki Yamaguchi2020-05-135-173/+114
| * | | pkey: refactor DER/PEM-encoded string parsing codeKazuki Yamaguchi2020-05-135-77/+73
| * | | pkey: prefer PKey.read over PKey::RSA.new in docsKazuki Yamaguchi2020-05-136-8/+8
| * | | pkey: have PKey.read parse PEM-encoded DHParameterKazuki Yamaguchi2020-05-133-3/+5
| * | | pkey: inline {rsa,dsa,dh,ec}_instance()Kazuki Yamaguchi2020-05-134-156/+76
| * | | pkey: simplify ossl_pkey_new()Kazuki Yamaguchi2020-05-136-100/+9
| |/ /
* | | test/openssl/test_ssl: fix flaky test caseKazuki Yamaguchi2020-05-131-1/+1
* | | Merge pull request #342 from rhenium/ky/config-use-openssl-apiKazuki Yamaguchi2020-05-136-668/+450
|\ \ \ | |/ / |/| |
| * | config: replace DupConfigPtr() with GetConfig()ky/config-use-openssl-apiKazuki Yamaguchi2020-05-133-40/+3
| * | config: revert to C implementation of OpenSSL::ConfigKazuki Yamaguchi2020-05-135-445/+441
| * | test/openssl/test_config: skip test_get_value_ENV on LibreSSLKazuki Yamaguchi2020-05-131-0/+3
| * | test/openssl/test_config: fix non-deterministic test caseKazuki Yamaguchi2020-05-131-1/+1
| * | test/openssl/test_config: add missing test case for Config.parse_configKazuki Yamaguchi2020-05-131-0/+6
| * | config: remove deprecated methodsKazuki Yamaguchi2020-05-132-202/+16
|/ /
* | Ruby/OpenSSL 2.2.0v2.2.0ky/release-2.2.0Kazuki Yamaguchi2020-05-131-1/+1