Skip to content

Commit 58dac17

Browse files
committed
docs: update gem description
1 parent db1851a commit 58dac17

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# OpenSSL::SignatureAlgorithm
22

3-
This tiny library introduces `OpenSSL::SignatureAlgorithm::ECDSA`, `OpenSSL::SignatureAlgorithm::RSAPSS` and `OpenSSL::SignatureAlgorithm::RSAPKCS1`, so that you can reason in terms of signature algorithms when signing and/or verifying signatures―instead of keys.
4-
5-
This provides a higher level of abstraction, on top of `openssl`'s gem `OpenSSL::PKey::EC`, `OpenSSL::PKey::EC::Point` and `OpenSSL::PKey::RSA`.
3+
Provides `OpenSSL::SignatureAlgorithm::ECDSA`, `OpenSSL::SignatureAlgorithm::RSAPSS`
4+
and `OpenSSL::SignatureAlgorithm::RSAPKCS1` ruby object wrapers on top of `OpenSSL::PKey::EC`
5+
and `OpenSSL::PKey::RSA`, so that you can reason in terms of signature algorithms when
6+
signing and/or verifying signatures, instead of keys.
67

78
[![Gem](https://img.shields.io/gem/v/openssl-signature_algorithm.svg?style=flat-square)](https://rubygems.org/gems/openssl-signature_algorithm)
89
[![Travis](https://img.shields.io/travis/cedarcode/openssl-signature_algorithm.svg?style=flat-square)](https://travis-ci.org/cedarcode/openssl-signature_algorithm)

openssl-signature_algorithm.gemspec

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ Gem::Specification.new do |spec|
99
spec.email = ["gonzalo@cedarcode.com"]
1010
spec.license = "Apache-2.0"
1111

12-
spec.summary = "Signature Algorithm abstraction for openssl ruby gem"
12+
spec.summary = "OpenSSL::SignatureAlgorithm helpers for signing and verifying signatures with openssl ruby gem"
13+
1314
spec.description = <<-DESC
14-
This tiny library introduces `OpenSSL::SignatureAlgorithm::ECDSA`,
15-
`OpenSSL::SignatureAlgorithm::RSAPSS` and `OpenSSL::SignatureAlgorithm::RSAPKCS1`,
16-
so that you can reason in terms of signature algorithms when signing and/or
17-
verifying signaturesinstead of keys.
15+
Provides OpenSSL::SignatureAlgorithm::ECDSA, OpenSSL::SignatureAlgorithm::RSAPSS
16+
and OpenSSL::SignatureAlgorithm::RSAPKCS1 ruby object wrapers on top of OpenSSL::PKey::EC
17+
and OpenSSL::PKey::RSA, so that you can reason in terms of signature algorithms when
18+
signing and/or verifying signatures, instead of keys.
1819
DESC
1920

2021
spec.homepage = "https://github.com/cedarcode/openssl-signature_algorithm"

0 commit comments

Comments
 (0)