openssl-signature_algorithm 1.1.0 → 1.1.1
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/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/README.md +3 -1
- data/lib/openssl/signature_algorithm.rb +0 -1
- data/lib/openssl/signature_algorithm/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: c5b527f33fd6b399b9b6c6baaebc173be1a848e3de4249dfc12c2640fbecf964
|
4
|
+
data.tar.gz: ad5361e7381c7aa34f66dbe94e32c7a5e54fcedd9a536897588728fd7f8e2771
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e532e2f5ae196cc3136f7eefaee626bfb80454cd581c80f067e6c237769a262d0188c9c82a32a40193b7218238c979231861e64445074264eebf5d03dc16f5f
|
7
|
+
data.tar.gz: 2dcfffdf4680abeb725c4f15a36ac8fa80e49061d3408fba763270701ccc70c7982c6630ac26c8dcb56cd77f0b303e0431c1f923202d8eaccb0c01ede519d14d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v1.1.1] - 2021-02-11
|
4
|
+
|
5
|
+
### Fixed
|
6
|
+
|
7
|
+
- Fix error asking for ed25519 gem when actually not using EdDSA
|
8
|
+
|
3
9
|
## [v1.1.0] - 2021-02-11
|
4
10
|
|
5
11
|
### Added
|
@@ -78,6 +84,7 @@
|
|
78
84
|
- `OpenSSL::SignatureAlgorithm::RSAPSS`
|
79
85
|
- `OpenSSL::SignatureAlgorithm::RSAPKCS1`
|
80
86
|
|
87
|
+
[v1.1.1]: https://github.com/cedarcode/openssl-signature_algorithm/compare/v1.1.0...v1.1.1/
|
81
88
|
[v1.1.0]: https://github.com/cedarcode/openssl-signature_algorithm/compare/v1.0.0...v1.1.0/
|
82
89
|
[v1.0.0]: https://github.com/cedarcode/openssl-signature_algorithm/compare/v0.4.0...v1.0.0/
|
83
90
|
[v0.4.0]: https://github.com/cedarcode/openssl-signature_algorithm/compare/v0.3.0...v0.4.0/
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
Sign and verify using signature algorithm wrappers, instead of key objects.
|
6
6
|
|
7
|
-
Provides `OpenSSL::SignatureAlgorithm::ECDSA`, `OpenSSL::SignatureAlgorithm::RSAPSS`
|
7
|
+
Provides `OpenSSL::SignatureAlgorithm::ECDSA`, `OpenSSL::SignatureAlgorithm::EdDSA`, `OpenSSL::SignatureAlgorithm::RSAPSS`
|
8
8
|
and `OpenSSL::SignatureAlgorithm::RSAPKCS1` ruby object wrappers on top of `OpenSSL::PKey::EC`
|
9
9
|
and `OpenSSL::PKey::RSA`, so that you can reason in terms of the algorithms and do less when
|
10
10
|
signing or verifying signatures.
|
@@ -57,6 +57,8 @@ algorithm.verify(signature, to_be_signed)
|
|
57
57
|
Requires adding the `ed25519` gem to your `Gemfile`
|
58
58
|
|
59
59
|
```ruby
|
60
|
+
require "openssl/signature_algorithm/eddsa"
|
61
|
+
|
60
62
|
to_be_signed = "to-be-signed"
|
61
63
|
|
62
64
|
# Signer
|