spid-es 0.0.51 → 0.0.53

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
2
  SHA256:
3
- metadata.gz: a6f3772185b3430b84c5c85ea18dbd1a701795ff5a96c910a064ab6870926fde
4
- data.tar.gz: 1a483c53ae1b70a24e32ce4eb9191b6cc05de1decc5bbd668befa30fff992566
3
+ metadata.gz: 74c208eacd57a4de167aff12ce910cb10089737d1b4252eff6b7e6a794e14a56
4
+ data.tar.gz: 537d35286b97391c9411a9c49da98e970117c072b1966cee527fda168fc8bad7
5
5
  SHA512:
6
- metadata.gz: d4907d3a3ea8c5fd00962f1b53810f3a2034a53e65c8a93c782d1dffaf7866f19746cbb3ef7ad31f2014153406d51164f19fc1adf047a3150def07b245c96453
7
- data.tar.gz: d461f228b2abcbe619bf7947d55c7c4b9d59bd345ed53b53904caf9679ac6eb356f66b59713a2e92effb17fabf8a106b28ea7e2610ec74a19c4fe27335bcbc41
6
+ metadata.gz: 3f3ae005200bbdcbe2f3e79d14e12f43da15b9bb3991da688bde07fef82b94905dbb57fc9c1209ed9410a1f50332c47dc36c24c9af8a50b07119ed40ee1f2823
7
+ data.tar.gz: 78c674fdcc668a1be3667ed11de60a36fb95f2a49c72f973d8115d929ff845f16ad34ab3c59509dbc77fb0b110bbf28b704a646b079767b4a4412dbf2c1e3b7c
@@ -160,18 +160,13 @@ module Spid
160
160
  return (soft ? false : validation_error("Issuer of the Assertion not found or multiple."))
161
161
  end
162
162
 
163
+ unless settings.no_valid_agid
164
+ issuer_response_nodes.each{ |iss|
165
+ #controllo: L'attributo Format di Issuer deve essere presente con il valore urn:oasis:names:tc:SAML:2.0:nameid-format:entity
166
+ return (soft ? false : validation_error("Elemento Issuer non ha formato corretto ")) if !iss.attributes['Format'].nil? && iss.attributes['Format'] != 'urn:oasis:names:tc:SAML:2.0:nameid-format:entity'
163
167
 
164
- issuer_response_nodes.each{ |iss|
165
- #controllo: L'attributo Format di Issuer deve essere presente con il valore urn:oasis:names:tc:SAML:2.0:nameid-format:entity
166
- return (soft ? false : validation_error("Elemento Issuer non ha formato corretto ")) if !iss.attributes['Format'].nil? && iss.attributes['Format'] != 'urn:oasis:names:tc:SAML:2.0:nameid-format:entity'
167
-
168
- }
169
-
170
- issuer_assertion_nodes.each{ |iss|
171
- #controllo: L'attributo Format di Issuer deve essere presente con il valore urn:oasis:names:tc:SAML:2.0:nameid-format:entity
172
- return (soft ? false : validation_error("Elemento Issuer non ha formato corretto ")) if iss.attributes['Format'] != 'urn:oasis:names:tc:SAML:2.0:nameid-format:entity'
173
-
174
- }
168
+ }
169
+ end
175
170
 
176
171
  nodes = issuer_response_nodes + issuer_assertion_nodes
177
172
 
@@ -70,7 +70,7 @@ module Spid
70
70
  algorithm = algorithm && algorithm =~ /(rsa-)?sha(.*?)$/i && $2.to_i
71
71
 
72
72
  case algorithm
73
- when 256 then OpenSSL::Digest::SHA1
73
+ when 1 then OpenSSL::Digest::SHA1
74
74
  when 256 then OpenSSL::Digest::SHA256
75
75
  when 384 then OpenSSL::Digest::SHA384
76
76
  when 512 then OpenSSL::Digest::SHA512
data/spid-es.gemspec CHANGED
@@ -2,7 +2,7 @@ $LOAD_PATH.push File.expand_path('../lib', __FILE__)
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'spid-es'
5
- s.version = '0.0.51'
5
+ s.version = '0.0.53'
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Fabiano Pavan"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spid-es
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.51
4
+ version: 0.0.53
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fabiano Pavan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-18 00:00:00.000000000 Z
11
+ date: 2024-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: canonix