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 +4 -4
- data/lib/spid/ruby-saml/response.rb +6 -11
- data/lib/spid/xml_security_new.rb +1 -1
- data/spid-es.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74c208eacd57a4de167aff12ce910cb10089737d1b4252eff6b7e6a794e14a56
|
4
|
+
data.tar.gz: 537d35286b97391c9411a9c49da98e970117c072b1966cee527fda168fc8bad7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
165
|
-
|
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
|
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.
|
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.
|
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-
|
11
|
+
date: 2024-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: canonix
|