mini_ca 1.2.0 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 017ba2353e7b1f0cfc7770644189710f4b665dff
4
- data.tar.gz: fb8b2ec2b5a20d6f6b64e48be6894bd3308bec73
2
+ SHA256:
3
+ metadata.gz: c0a7b335aa18a3821666a730ff8ec7e96566ca3983cfd97472b6e60a97616439
4
+ data.tar.gz: 2db259057e86a83cd2130e8755b29a5e9f8b4c371385d9f330d05f0072a04152
5
5
  SHA512:
6
- metadata.gz: 349e601091f44f72f7674bde29fd5a362bd53bf1e7768be38203f10125b9851860a65d7d61bb781ccd91c659da044f83e7e336d01c580265f08f1170da9cd321
7
- data.tar.gz: a498bcf442c489c9a05ab1830035e14fea8a8efc0eaea19c9f8b6cbab2b0f3b6f22b334ea66ae0a682a503b80e123992bc6a8c9418f89a8e1903ce7ba492d455
6
+ metadata.gz: 31eff1fc63d9b3a9c715ec7e7905e6b47ec46e6ecae04f51984b83e2f238c2dd6cefee8e76dec354cca03be7bf1a75b5ae4983f098f4ccbef8b33a72900aee33
7
+ data.tar.gz: 7b64427cca931bb7c303de32a3e74e92b343c4c58bfa7d0b61115d092d88a0e3efa6d784ce24e0c26d63f3a29f08d1d7252433c67d42050e9bce8a1cb8df78ea
@@ -0,0 +1,2 @@
1
+ * @aguilinger
2
+ * @neurosnap
@@ -0,0 +1,47 @@
1
+ name: Tests
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ - master
8
+ push:
9
+ branches:
10
+ - main
11
+ - master
12
+
13
+ jobs:
14
+ test:
15
+ name: Test
16
+ runs-on: ubuntu-24.04
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ RUBY_VERSION: ["2.6", "3.3"]
21
+
22
+ steps:
23
+ - name: Check out code
24
+ uses: actions/checkout@v4
25
+
26
+ - name: Install Ruby ${{ matrix.RUBY_VERSION }}
27
+ uses: ruby/setup-ruby@v1
28
+ with:
29
+ ruby-version: ${{ matrix.RUBY_VERSION }}
30
+ bundler-cache: true
31
+
32
+ - name: Run Tests
33
+ run: bundle exec rake
34
+
35
+ results:
36
+ if: ${{ always() }}
37
+ runs-on: ubuntu-latest
38
+ name: Final Results
39
+ needs: [test]
40
+ steps:
41
+ - run: exit 1
42
+ # see https://stackoverflow.com/a/67532120/4907315
43
+ if: >-
44
+ ${{
45
+ contains(needs.*.result, 'failure')
46
+ || contains(needs.*.result, 'cancelled')
47
+ }}
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # ![](https://raw.github.com/aptible/straptible/master/lib/straptible/rails/templates/public.api/icon-60px.png) MiniCa
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/mini_ca.png)](https://rubygems.org/gems/mini_ca)
4
- [![Build Status](https://travis-ci.org/aptible/mini_ca.png?branch=master)](https://travis-ci.org/aptible/mini_ca)
5
4
  [![Dependency Status](https://gemnasium.com/aptible/mini_ca.png)](https://gemnasium.com/aptible/mini_ca)
6
5
 
7
6
  A Gem to generate custom X509 certificates in specs.
@@ -49,4 +48,4 @@ See the specs for more examples.
49
48
 
50
49
  MIT License, see [LICENSE](LICENSE.md) for details.
51
50
 
52
- Copyright (c) 2017 [Aptible](https://www.aptible.com), Thomas Orozco, and contributors.
51
+ Copyright (c) 2019 [Aptible](https://www.aptible.com), Thomas Orozco, and contributors.
data/SECURITY.md ADDED
@@ -0,0 +1,23 @@
1
+ # Aptible Open Source Security Policies and Procedures
2
+
3
+ This document outlines security procedures and general policies for the Aptible open source projects as found on https://github.com/aptible.
4
+
5
+ * [Reporting a Vulnerability](#reporting-a-vulnerability)
6
+ * [Responsible Disclosure Policy](#responsible-disclosure-policy)
7
+
8
+ ## Reporting a Vulnerability
9
+
10
+ The Aptible team and community take all security vulnerabilities
11
+ seriously. Thank you for improving the security of our open source software. We appreciate your efforts and responsible disclosure and will make every effort to acknowledge your contributions.
12
+
13
+ Report security vulnerabilities by emailing the Aptible security team at:
14
+
15
+ security@aptible.com
16
+
17
+ Security researchers can also privately report security vulnerabilities to repository maintainers using the GitHub "Report a Vulnerability" feature. [See how-to here](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability#privately-reporting-a-security-vulnerability).
18
+
19
+ The Aptible team will acknowledge your email within 24 business hours and send a detailed response within 48 business hours indicating the next steps in handling your report. The Aptible security team will keep you informed of the progress and may ask for additional information or guidance.
20
+
21
+ ## Responsible Disclosure Policy
22
+
23
+ Please see Aptible's Responsible Disclosure Policy here: https://www.aptible.com/legal/responsible-disclosure/
@@ -40,6 +40,7 @@ module MiniCa
40
40
  ['O', organization]
41
41
  ].each do |prop, value|
42
42
  next if value.nil?
43
+
43
44
  x509.subject = x509.subject.add_entry(prop, value)
44
45
  end
45
46
 
@@ -53,9 +54,7 @@ module MiniCa
53
54
  raise Error, 'Certificate cannot become valid before issuer'
54
55
  end
55
56
 
56
- if issuer.x509.not_after < not_after
57
- raise Error, 'Certificate cannot expire after issuer'
58
- end
57
+ raise Error, 'Certificate cannot expire after issuer' if issuer.x509.not_after < not_after
59
58
  else
60
59
  not_before ||= Time.now - 3600 * 24
61
60
  not_after ||= Time.now + 3600 + 24
@@ -89,12 +88,14 @@ module MiniCa
89
88
 
90
89
  def issue(cn, **opts)
91
90
  raise 'CA must be set to use #issue' unless ca
91
+
92
92
  @counter += 1
93
93
  Certificate.new(cn, issuer: self, serial: @counter, **opts)
94
94
  end
95
95
 
96
96
  def store
97
97
  raise 'CA must be set to use #store' unless ca
98
+
98
99
  OpenSSL::X509::Store.new.tap { |store| store.add_cert(x509) }
99
100
  end
100
101
 
@@ -132,11 +133,16 @@ module MiniCa
132
133
  when OpenSSL::PKey::RSA
133
134
  private_key.public_key
134
135
  when OpenSSL::PKey::EC
136
+ # In the olden days, we created a new public key:
135
137
  # See: https://github.com/ruby/openssl/issues/29#issuecomment-230664793
136
138
  # See: https://alexpeattie.com/blog/signing-a-csr-with-ecdsa-in-ruby
137
- pub = OpenSSL::PKey::EC.new(private_key.group)
138
- pub.public_key = private_key.public_key
139
- pub
139
+ # pub = OpenSSL::PKey::EC.new(private_key.group)
140
+ # pub.public_key = private_key.public_key
141
+ # pub
142
+
143
+ # But now, public keys are immutable in OpenSSL 3 and ruby > 3.1.2, so we have to
144
+ # accept that EC public keys kinda don't really exist, and just use the private key
145
+ private_key
140
146
  else
141
147
  raise Error, "Unsupported private_key: #{private_key.class}"
142
148
  end
@@ -1,3 +1,3 @@
1
1
  module MiniCa
2
- VERSION = '1.2.0'.freeze
2
+ VERSION = '1.2.1'.freeze
3
3
  end
data/mini_ca.gemspec CHANGED
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+
2
3
  lib = File.expand_path('../lib', __FILE__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
 
@@ -19,8 +20,9 @@ Gem::Specification.new do |spec|
19
20
  spec.test_files = spec.files.grep(%r{^spec/})
20
21
  spec.require_paths = ['lib']
21
22
 
22
- spec.add_development_dependency 'bundler'
23
23
  spec.add_development_dependency 'aptible-tasks'
24
+ spec.add_development_dependency 'base64'
25
+ spec.add_development_dependency 'bundler'
24
26
  spec.add_development_dependency 'rake'
25
27
  spec.add_development_dependency 'rspec'
26
28
  end
@@ -62,15 +62,7 @@ describe MiniCa::Certificate do
62
62
  end
63
63
 
64
64
  it 'initializes with a custom private_key (ECDSA)' do
65
- k = OpenSSL::PKey::EC.new('prime256v1').tap(&:generate_key)
66
-
67
- # Ruby < 2.4 lacks a #private? method on EC keys, which is used when
68
- # signing. We're not going to monkey-patch this for users, but we want to
69
- # monkey patch it for our own specs.
70
- maj, min, = RUBY_VERSION.split('.').map { |e| Integer(e) }
71
- unless maj >= 2 && min >= 4 || maj > 2
72
- allow(k).to receive(:private?) { k.private_key? }
73
- end
65
+ k = OpenSSL::PKey::EC.generate('prime256v1')
74
66
 
75
67
  crt = described_class.new('x', private_key: k)
76
68
  expect(crt.private_key_pem).to eq(k.to_pem)
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mini_ca
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Orozco
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-05 00:00:00.000000000 Z
11
+ date: 2025-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
14
+ name: aptible-tasks
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
@@ -25,7 +25,21 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: aptible-tasks
28
+ name: base64
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
45
  - - ">="
@@ -73,13 +87,15 @@ executables: []
73
87
  extensions: []
74
88
  extra_rdoc_files: []
75
89
  files:
90
+ - ".github/CODEOWNERS"
91
+ - ".github/workflows/test.yml"
76
92
  - ".gitignore"
77
93
  - ".rspec"
78
- - ".travis.yml"
79
94
  - Gemfile
80
95
  - LICENSE.md
81
96
  - README.md
82
97
  - Rakefile
98
+ - SECURITY.md
83
99
  - lib/mini_ca.rb
84
100
  - lib/mini_ca/certificate.rb
85
101
  - lib/mini_ca/error.rb
@@ -91,7 +107,7 @@ homepage: https://github.com/aptible/mini_ca
91
107
  licenses:
92
108
  - MIT
93
109
  metadata: {}
94
- post_install_message:
110
+ post_install_message:
95
111
  rdoc_options: []
96
112
  require_paths:
97
113
  - lib
@@ -106,9 +122,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
122
  - !ruby/object:Gem::Version
107
123
  version: '0'
108
124
  requirements: []
109
- rubyforge_project:
110
- rubygems_version: 2.6.13
111
- signing_key:
125
+ rubygems_version: 3.5.3
126
+ signing_key:
112
127
  specification_version: 4
113
128
  summary: A minimal Certification Authority, for use in specs
114
129
  test_files:
data/.travis.yml DELETED
@@ -1,12 +0,0 @@
1
- sudo: false
2
-
3
- cache: bundler
4
-
5
- before_install:
6
- gem update bundler
7
-
8
- rvm:
9
- - 2.0.0
10
- - 2.1.0
11
- - 2.2.0
12
- - 2.3.0