openssl 3.1.2 → 3.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.md +10 -0
- data/ext/openssl/ossl_pkey_dh.c +2 -0
- data/ext/openssl/ossl_pkey_dsa.c +2 -0
- data/ext/openssl/ossl_pkey_ec.c +2 -0
- data/ext/openssl/ossl_pkey_rsa.c +2 -0
- data/lib/openssl/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c0a6032c0639646fac204b99fe529e7f25f4f69724fc2ea8ac04e7e65395536e
|
|
4
|
+
data.tar.gz: c3527c0a090fc33356a1bbebe7c7a3de03c127a47313b40aa3a787e6186dc2f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c445e1f6158d6567479167e7569c0a49eba52df06078c7127e491207cb7b0a0fc74977ba187badf0f19badffabc1ae490988efb5e66cc037bc44e071c7b7d8da
|
|
7
|
+
data.tar.gz: 0e0f18e962c10fd57520c66776c732f557d7a7c54d5080bd1cde5fec8819fd57ad022dc1d271482ef43f71e2e50153e849c094287448751f7ec188b88caa8efc
|
data/History.md
CHANGED
data/ext/openssl/ossl_pkey_dh.c
CHANGED
data/ext/openssl/ossl_pkey_dsa.c
CHANGED
data/ext/openssl/ossl_pkey_ec.c
CHANGED
|
@@ -22,6 +22,8 @@ static const rb_data_type_t ossl_ec_point_type;
|
|
|
22
22
|
EVP_PKEY *_pkey; \
|
|
23
23
|
GetPKeyEC(obj, _pkey); \
|
|
24
24
|
(key) = EVP_PKEY_get0_EC_KEY(_pkey); \
|
|
25
|
+
if ((key) == NULL) \
|
|
26
|
+
ossl_raise(eECError, "failed to get EC_KEY from EVP_PKEY"); \
|
|
25
27
|
} while (0)
|
|
26
28
|
|
|
27
29
|
#define GetECGroup(obj, group) do { \
|
data/ext/openssl/ossl_pkey_rsa.c
CHANGED
data/lib/openssl/version.rb
CHANGED