web_authn 0.6.0 → 0.6.1

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: 12acdf7e262c7be51ba115351fffa2ce70a0f56afa82d6afa348aab1999d9521
4
- data.tar.gz: 627dd43e46a96c5471f0a2f465afc5f994cd88294bd79d7e54351a3c87dc83d4
3
+ metadata.gz: ed4c84df02f2d9399a21ea886d8b2850ed5ba1f68a6aee3d1f97aba2978ccf05
4
+ data.tar.gz: ea5b30178c0b070324f99be63a7ecdfc617fd2453319333abae3bf443c16dc3f
5
5
  SHA512:
6
- metadata.gz: 26dba30b2ab5fadba03e31a89e1753cb3882ff1fca3039259b0e4c58e2afda9c49b9fd5a177d9af6752ba88a782987929a3317c04875f6fb95f554c811e0a485
7
- data.tar.gz: b2625b28f5380733849cb6d65f0924623cb20ffb3a9193024400d43f987688cb17187444decdefdf045278f900e30f87716d4666911ffc5ad45d00093a39dd7c
6
+ metadata.gz: c3d70d2a36b1a5dd0c5f2ea27379593f195a130d5a09f2a667c2bcf7be619639794cddf36432e7c51aea0fed9d41cc148d4572b120aa12fd0f85fe0b82a1955c
7
+ data.tar.gz: d855274d4a256b9b0b50f3be4b8296be7be9c3b35056be6ab45f8bb3fb6989111c95eef0a47825b766e794e588a573e91a8cfb49c2d53b5cf853080fc503aa25
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
@@ -19,10 +19,9 @@ module WebAuthn
19
19
  -----END CERTIFICATE-----
20
20
  PEM
21
21
 
22
- attr_accessor :alg, :x5c, :certs
22
+ attr_accessor :x5c, :certs
23
23
 
24
- def initialize(alg:, x5c:)
25
- self.alg = alg
24
+ def initialize(x5c:)
26
25
  self.x5c = Array(x5c)
27
26
  self.certs = self.x5c.collect do |x5c|
28
27
  OpenSSL::X509::Certificate.new x5c
@@ -78,7 +77,6 @@ module WebAuthn
78
77
  class << self
79
78
  def decode(att_stmt)
80
79
  new(
81
- alg: att_stmt[:alg],
82
80
  x5c: att_stmt[:x5c]
83
81
  )
84
82
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: web_authn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - nov matake
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-10 00:00:00.000000000 Z
11
+ date: 2020-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: openssl