ssltool 0.0.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.
- data/README.md +56 -0
- data/bin/bootstrap-detect-intermediates +51 -0
- data/bin/bootstrap-trusted-pems-from-mozilla-certdata +93 -0
- data/bin/console +15 -0
- data/bin/ssltool-complete-chain +25 -0
- data/bin/ssltool-dbpool-from-fspool +13 -0
- data/bin/ssltool-filter-certs +18 -0
- data/bin/ssltool-print-certs-info +26 -0
- data/lib/ssltool.rb +9 -0
- data/lib/ssltool/adapters/base.rb +18 -0
- data/lib/ssltool/adapters/filesystem.rb +33 -0
- data/lib/ssltool/adapters/sequel.rb +36 -0
- data/lib/ssltool/certificate.rb +108 -0
- data/lib/ssltool/certificate_store.rb +89 -0
- data/lib/ssltool/chain_resolution.rb +56 -0
- data/lib/ssltool/key_helper.rb +22 -0
- data/lib/ssltool/pem_scanner.rb +21 -0
- data/var/mozilla-certdata.txt +24424 -0
- data/var/pools/excluded.pem +73 -0
- data/var/pools/intermediate.pem +2893 -0
- data/var/pools/trusted.pem +3989 -0
- metadata +67 -0
metadata
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ssltool
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Caio Chassot
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-09-11 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: Orders and completes SSL certificate trust chains, maintains an up-to-date
|
15
|
+
pool of viable intermediates and trusted roots, and provides other tooling for dealing
|
16
|
+
with SSL certificate an key woes.
|
17
|
+
email: dev@caiochassot.com
|
18
|
+
executables: []
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- README.md
|
23
|
+
- bin/bootstrap-detect-intermediates
|
24
|
+
- bin/bootstrap-trusted-pems-from-mozilla-certdata
|
25
|
+
- bin/console
|
26
|
+
- bin/ssltool-complete-chain
|
27
|
+
- bin/ssltool-dbpool-from-fspool
|
28
|
+
- bin/ssltool-filter-certs
|
29
|
+
- bin/ssltool-print-certs-info
|
30
|
+
- lib/ssltool.rb
|
31
|
+
- lib/ssltool/adapters/base.rb
|
32
|
+
- lib/ssltool/adapters/filesystem.rb
|
33
|
+
- lib/ssltool/adapters/sequel.rb
|
34
|
+
- lib/ssltool/certificate.rb
|
35
|
+
- lib/ssltool/certificate_store.rb
|
36
|
+
- lib/ssltool/chain_resolution.rb
|
37
|
+
- lib/ssltool/key_helper.rb
|
38
|
+
- lib/ssltool/pem_scanner.rb
|
39
|
+
- var/mozilla-certdata.txt
|
40
|
+
- var/pools/excluded.pem
|
41
|
+
- var/pools/intermediate.pem
|
42
|
+
- var/pools/trusted.pem
|
43
|
+
homepage: https://github.com/heroku/ssltool
|
44
|
+
licenses: []
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options: []
|
47
|
+
require_paths:
|
48
|
+
- lib
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ! '>='
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
requirements: []
|
62
|
+
rubyforge_project:
|
63
|
+
rubygems_version: 1.8.24
|
64
|
+
signing_key:
|
65
|
+
specification_version: 3
|
66
|
+
summary: Orders and completes SSL certificate trust chains, plus more.
|
67
|
+
test_files: []
|