tpm-key_attestation 0.11.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 119c14ff3ec3d663dcd7557406f4d147d8e010e61705f759cd2cba7412045458
4
- data.tar.gz: a0aae7f5759575312ca4050e94622cfcf5c24719450ba399115061df45b0ae72
3
+ metadata.gz: fe02507111938501d687c21a2a8461f086ca5ddd1b2d2f2715921a94ee249260
4
+ data.tar.gz: 3c7f0f3e79819bdd00e11febc517083320c40c8e4033c328654b64fe9eb88549
5
5
  SHA512:
6
- metadata.gz: 92d66d626a3849915ef0379cbe150363a7072e7f74e8988b93273cc0ce0ad0f5093e7a69b2ad80929de319dd682b33f6ef09dfba427b8bb83c56deed08ae08ea
7
- data.tar.gz: 9ca765e75668c4c9f400acfadabeb8c59bb89b5719adb59e926d8ce25e037efd9a3a05069fa3dfc2aa21559499c177f925fe5d67c1bbeea9ea6ebbc79ec90667
6
+ metadata.gz: 0f77dbedcd721d3c06f6ec33a862f89c02360e913776a0c54847cf240b7af1d9ecde6b1bc1d2e1634b7342859bde36038a30aee8f1a85447a1afb494efd4506e
7
+ data.tar.gz: cac3351b83246f7c21f542a8c22043b99bdd73a7e218e25064f06785f173303f976aea9b2ffd13ac845e0f0155663543c74f3076f8c099b58db351ec4c823b0f
@@ -16,6 +16,8 @@ jobs:
16
16
  fail-fast: false
17
17
  matrix:
18
18
  ruby:
19
+ - '3.2'
20
+ - '3.1'
19
21
  - '3.0'
20
22
  - '2.7'
21
23
  - '2.6'
@@ -25,11 +27,16 @@ jobs:
25
27
  - openssl_2_2
26
28
  - openssl_2_1
27
29
  - openssl_3_0
30
+ - openssl_3_1
28
31
  exclude:
29
32
  - ruby: '2.4'
30
33
  gemfile: openssl_3_0
31
34
  - ruby: '2.5'
32
35
  gemfile: openssl_3_0
36
+ - ruby: '2.4'
37
+ gemfile: openssl_3_1
38
+ - ruby: '2.5'
39
+ gemfile: openssl_3_1
33
40
  env:
34
41
  BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
35
42
  steps:
data/Appraisals CHANGED
@@ -11,3 +11,7 @@ end
11
11
  appraise "openssl_3_0" do
12
12
  gem "openssl", "~> 3.0.0"
13
13
  end
14
+
15
+ appraise "openssl_3_1" do
16
+ gem "openssl", "~> 3.1.0"
17
+ end
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.12.0] - 2022-07-05
4
+
5
+ - Loose OpenSSL dependency to support 3.2 users. Credits to @stanhu <3
6
+
3
7
  ## [v0.11.0] - 2022-07-05
4
8
 
5
9
  - Support OpenSSL ~>3.0.0. Credits to @ClearlyClaire <3
@@ -71,6 +75,7 @@ replacement of `JOSE` format `algorithm` string
71
75
  - `TPM::EKCertificate` wrapper
72
76
  - `TPM::SAttest` wrapper
73
77
 
78
+ [v0.12.0]: https://github.com/cedarcode/tpm-key_attestation/compare/v0.11.0...v0.12.0/
74
79
  [v0.11.0]: https://github.com/cedarcode/tpm-key_attestation/compare/v0.10.0...v0.11.0/
75
80
  [v0.10.0]: https://github.com/cedarcode/tpm-key_attestation/compare/v0.9.0...v0.10.0/
76
81
  [v0.9.0]: https://github.com/cedarcode/tpm-key_attestation/compare/v0.8.0...v0.9.0/
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tpm-key_attestation (0.10.0)
4
+ tpm-key_attestation (0.11.0)
5
5
  bindata (~> 2.4)
6
- openssl (> 2.0, < 3.1)
6
+ openssl (> 2.0)
7
7
  openssl-signature_algorithm (~> 1.0)
8
8
 
9
9
  GEM
@@ -14,11 +14,11 @@ GEM
14
14
  rake
15
15
  thor (>= 0.14.0)
16
16
  ast (2.4.2)
17
- bindata (2.4.8)
17
+ bindata (2.4.14)
18
18
  byebug (11.1.3)
19
19
  diff-lcs (1.4.4)
20
20
  jaro_winkler (1.5.4)
21
- openssl (3.0.0)
21
+ openssl (3.1.0)
22
22
  openssl-signature_algorithm (1.2.1)
23
23
  openssl (> 2.0, < 3.1)
24
24
  parallel (1.20.1)
@@ -0,0 +1,12 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 2.2.0"
6
+ gem "byebug", "~> 11.0"
7
+ gem "rake", "~> 13.0"
8
+ gem "rspec", "~> 3.0"
9
+ gem "rubocop", "~> 0.80.1"
10
+ gem "openssl", "~> 3.1.0"
11
+
12
+ gemspec path: "../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TPM
4
4
  class KeyAttestation
5
- VERSION = "0.11.0"
5
+ VERSION = "0.12.0"
6
6
  end
7
7
  end
@@ -26,6 +26,6 @@ Gem::Specification.new do |spec|
26
26
  spec.require_paths = ["lib"]
27
27
 
28
28
  spec.add_dependency "bindata", "~> 2.4"
29
- spec.add_dependency "openssl", "> 2.0", "< 3.1"
29
+ spec.add_dependency "openssl", "> 2.0"
30
30
  spec.add_dependency "openssl-signature_algorithm", "~> 1.0"
31
31
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tpm-key_attestation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gonzalo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-06 00:00:00.000000000 Z
11
+ date: 2023-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bindata
@@ -31,9 +31,6 @@ dependencies:
31
31
  - - ">"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '2.0'
34
- - - "<"
35
- - !ruby/object:Gem::Version
36
- version: '3.1'
37
34
  type: :runtime
38
35
  prerelease: false
39
36
  version_requirements: !ruby/object:Gem::Requirement
@@ -41,9 +38,6 @@ dependencies:
41
38
  - - ">"
42
39
  - !ruby/object:Gem::Version
43
40
  version: '2.0'
44
- - - "<"
45
- - !ruby/object:Gem::Version
46
- version: '3.1'
47
41
  - !ruby/object:Gem::Dependency
48
42
  name: openssl-signature_algorithm
49
43
  requirement: !ruby/object:Gem::Requirement
@@ -81,6 +75,7 @@ files:
81
75
  - gemfiles/openssl_2_1.gemfile
82
76
  - gemfiles/openssl_2_2.gemfile
83
77
  - gemfiles/openssl_3_0.gemfile
78
+ - gemfiles/openssl_3_1.gemfile
84
79
  - lib/tpm/aik_certificate.rb
85
80
  - lib/tpm/certificates/AMD/RootCA/AMD-fTPM-ECC-RootCA.crt
86
81
  - lib/tpm/certificates/AMD/RootCA/AMD-fTPM-RSA-RootCA.crt