saml_idp_metadata 0.1.9 → 0.2.0
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/.circleci/config.yml +6 -5
- data/.github/workflows/ruby.yml +2 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +39 -1
- data/Gemfile.lock +33 -31
- data/lib/saml_idp_metadata/parser.rb +2 -0
- data/lib/saml_idp_metadata/version.rb +1 -1
- data/saml_idp_metadata.gemspec +10 -9
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25ee0d1fbffc9f7b9d90b8f7cd77184c32a1b1553c2eacaa9043ec38dfc1637b
|
|
4
|
+
data.tar.gz: eb305a057b311d2911f190755146d826a49c5e773a210869bd2c91f53e1fa1ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: def7d9667ccefa93a7ca0aa165aaff16b2cb396df318c67e7a74eb8da9e8c4f25399a5b5a702f7c12b06d065fb8b29cd6c0578e4db27e23648fa112fe6f8bedc
|
|
7
|
+
data.tar.gz: 2fad91dfd407ecd01e6a3325130fc5bdeb925e9cc73b6e69304fd8a8cc9d73c531fe4599041954e9ac057361cdc202046b2affa5c7a43e21f75ba66e2d0844c4
|
data/.circleci/config.yml
CHANGED
|
@@ -2,12 +2,12 @@ version: 2.1
|
|
|
2
2
|
|
|
3
3
|
executors:
|
|
4
4
|
working_directory: /root/saml_idp_metadata
|
|
5
|
-
|
|
5
|
+
ruby_3_0:
|
|
6
6
|
docker:
|
|
7
|
-
- image: rubylang/ruby:3.0.0-
|
|
7
|
+
- image: rubylang/ruby:3.0.0-focal
|
|
8
8
|
ruby_2_7:
|
|
9
9
|
docker:
|
|
10
|
-
- image: rubylang/ruby:2.7.
|
|
10
|
+
- image: rubylang/ruby:2.7.2-bionic
|
|
11
11
|
ruby_2_6:
|
|
12
12
|
docker:
|
|
13
13
|
- image: rubylang/ruby:2.6.6-bionic
|
|
@@ -45,8 +45,8 @@ commands:
|
|
|
45
45
|
path: coverage
|
|
46
46
|
|
|
47
47
|
jobs:
|
|
48
|
-
|
|
49
|
-
executor:
|
|
48
|
+
run_tests_on_ruby_3_0:
|
|
49
|
+
executor: ruby_3_0
|
|
50
50
|
steps:
|
|
51
51
|
- install_system_dependencies
|
|
52
52
|
- checkout
|
|
@@ -81,6 +81,7 @@ workflows:
|
|
|
81
81
|
version: 2
|
|
82
82
|
test:
|
|
83
83
|
jobs:
|
|
84
|
+
- run_tests_on_ruby_3_0
|
|
84
85
|
- run_tests_on_ruby_2_7
|
|
85
86
|
- run_tests_on_ruby_2_6
|
|
86
87
|
- run_tests_on_ruby_2_5
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
- '2.5-bionic'
|
|
13
13
|
- '2.6-bionic'
|
|
14
14
|
- '2.7-bionic'
|
|
15
|
-
- '3.0.0-
|
|
15
|
+
- '3.0.0-focal'
|
|
16
16
|
- 'latest'
|
|
17
17
|
container:
|
|
18
18
|
image: rubylang/ruby:${{ matrix.ruby }}
|
|
@@ -21,7 +21,7 @@ jobs:
|
|
|
21
21
|
- uses: actions/checkout@master
|
|
22
22
|
- name: Build and test
|
|
23
23
|
run: |
|
|
24
|
-
gem install bundler -v 2.
|
|
24
|
+
gem install bundler -v 2.2.0 --force
|
|
25
25
|
bundle install
|
|
26
26
|
bundle exec rubocop
|
|
27
27
|
bundle exec rake
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.0
|
|
1
|
+
3.0.0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v0.1.9](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.9) (2020-11-02)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.8...v0.1.9)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- bumpup [\#125](https://github.com/tknzk/saml_idp_metadata/pull/125) ([tknzk](https://github.com/tknzk))
|
|
10
|
+
- Bump rspec-expectations from 3.9.3 to 3.9.4 [\#124](https://github.com/tknzk/saml_idp_metadata/pull/124) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
11
|
+
- Bump rspec from 3.9.0 to 3.10.0 [\#123](https://github.com/tknzk/saml_idp_metadata/pull/123) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
12
|
+
- Bump rubocop from 1.0.0 to 1.1.0 [\#122](https://github.com/tknzk/saml_idp_metadata/pull/122) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
13
|
+
- Bump zeitwerk from 2.4.0 to 2.4.1 [\#121](https://github.com/tknzk/saml_idp_metadata/pull/121) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
14
|
+
- Bump rubocop-ast from 1.0.1 to 1.1.0 [\#120](https://github.com/tknzk/saml_idp_metadata/pull/120) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
15
|
+
- Bump simplecov from 0.19.0 to 0.19.1 [\#119](https://github.com/tknzk/saml_idp_metadata/pull/119) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
16
|
+
- Bump rspec-support from 3.9.3 to 3.9.4 [\#118](https://github.com/tknzk/saml_idp_metadata/pull/118) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
17
|
+
- Bump rspec-expectations from 3.9.2 to 3.9.3 [\#117](https://github.com/tknzk/saml_idp_metadata/pull/117) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
18
|
+
- Bump rubocop-ast from 1.0.0 to 1.0.1 [\#116](https://github.com/tknzk/saml_idp_metadata/pull/116) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
19
|
+
- Bump rubocop-ast from 0.8.0 to 1.0.0 [\#115](https://github.com/tknzk/saml_idp_metadata/pull/115) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
20
|
+
- Bump rubocop from 0.93.1 to 1.0.0 [\#114](https://github.com/tknzk/saml_idp_metadata/pull/114) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
21
|
+
- Bump rubocop-ast from 0.7.1 to 0.8.0 [\#113](https://github.com/tknzk/saml_idp_metadata/pull/113) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
22
|
+
- Bump rubocop from 0.93.0 to 0.93.1 [\#112](https://github.com/tknzk/saml_idp_metadata/pull/112) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
23
|
+
- Bump rubocop from 0.92.0 to 0.93.0 [\#110](https://github.com/tknzk/saml_idp_metadata/pull/110) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
24
|
+
- Bump activesupport from 6.0.3.3 to 6.0.3.4 [\#109](https://github.com/tknzk/saml_idp_metadata/pull/109) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
25
|
+
- Bump parser from 2.7.1.5 to 2.7.2.0 [\#108](https://github.com/tknzk/saml_idp_metadata/pull/108) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
26
|
+
- add Ruby 3.0.0-preview1 test [\#107](https://github.com/tknzk/saml_idp_metadata/pull/107) ([tknzk](https://github.com/tknzk))
|
|
27
|
+
- Bump rspec-core from 3.9.2 to 3.9.3 [\#106](https://github.com/tknzk/saml_idp_metadata/pull/106) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
28
|
+
- Bump rubocop-ast from 0.6.0 to 0.7.1 [\#105](https://github.com/tknzk/saml_idp_metadata/pull/105) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
29
|
+
- Bump regexp\_parser from 1.8.0 to 1.8.1 [\#104](https://github.com/tknzk/saml_idp_metadata/pull/104) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
30
|
+
- Bump rubocop-ast from 0.5.0 to 0.5.1 [\#103](https://github.com/tknzk/saml_idp_metadata/pull/103) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
31
|
+
- Bump rubocop from 0.91.1 to 0.92.0 [\#102](https://github.com/tknzk/saml_idp_metadata/pull/102) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
32
|
+
- Bump rubocop-ast from 0.4.2 to 0.5.0 [\#101](https://github.com/tknzk/saml_idp_metadata/pull/101) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
33
|
+
- Bump rubocop from 0.91.0 to 0.91.1 [\#99](https://github.com/tknzk/saml_idp_metadata/pull/99) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
34
|
+
- Bump simplecov-html from 0.12.2 to 0.12.3 [\#98](https://github.com/tknzk/saml_idp_metadata/pull/98) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
35
|
+
- Bump regexp\_parser from 1.7.1 to 1.8.0 [\#97](https://github.com/tknzk/saml_idp_metadata/pull/97) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
36
|
+
- Bump rubocop-ast from 0.4.1 to 0.4.2 [\#96](https://github.com/tknzk/saml_idp_metadata/pull/96) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
37
|
+
- Bump rubocop-ast from 0.4.0 to 0.4.1 [\#95](https://github.com/tknzk/saml_idp_metadata/pull/95) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
38
|
+
- Bump rubocop from 0.90.0 to 0.91.0 [\#94](https://github.com/tknzk/saml_idp_metadata/pull/94) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
39
|
+
- Bump rubocop-ast from 0.3.0 to 0.4.0 [\#93](https://github.com/tknzk/saml_idp_metadata/pull/93) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
40
|
+
|
|
3
41
|
## [v0.1.8](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.8) (2020-09-10)
|
|
4
42
|
|
|
5
43
|
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.7...v0.1.8)
|
|
@@ -101,6 +139,7 @@
|
|
|
101
139
|
- Bump unicode-display\_width from 1.6.0 to 1.6.1 [\#23](https://github.com/tknzk/saml_idp_metadata/pull/23) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
102
140
|
- Bump minitest from 5.13.0 to 5.14.0 [\#22](https://github.com/tknzk/saml_idp_metadata/pull/22) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
103
141
|
- update changelog [\#21](https://github.com/tknzk/saml_idp_metadata/pull/21) ([tknzk](https://github.com/tknzk))
|
|
142
|
+
- Modified GitHub workflow [\#16](https://github.com/tknzk/saml_idp_metadata/pull/16) ([tknzk](https://github.com/tknzk))
|
|
104
143
|
|
|
105
144
|
## [v0.1.4](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.4) (2020-01-11)
|
|
106
145
|
|
|
@@ -112,7 +151,6 @@
|
|
|
112
151
|
- bundle update [\#19](https://github.com/tknzk/saml_idp_metadata/pull/19) ([tknzk](https://github.com/tknzk))
|
|
113
152
|
- fix working\_dir [\#18](https://github.com/tknzk/saml_idp_metadata/pull/18) ([tknzk](https://github.com/tknzk))
|
|
114
153
|
- add build status badge [\#17](https://github.com/tknzk/saml_idp_metadata/pull/17) ([tknzk](https://github.com/tknzk))
|
|
115
|
-
- Modified GitHub workflow [\#16](https://github.com/tknzk/saml_idp_metadata/pull/16) ([tknzk](https://github.com/tknzk))
|
|
116
154
|
- Modified circleci config [\#15](https://github.com/tknzk/saml_idp_metadata/pull/15) ([tknzk](https://github.com/tknzk))
|
|
117
155
|
- Bump rubocop from 0.78.0 to 0.79.0 [\#14](https://github.com/tknzk/saml_idp_metadata/pull/14) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
118
156
|
- rename [\#13](https://github.com/tknzk/saml_idp_metadata/pull/13) ([tknzk](https://github.com/tknzk))
|
data/Gemfile.lock
CHANGED
|
@@ -1,74 +1,76 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
saml_idp_metadata (0.
|
|
4
|
+
saml_idp_metadata (0.2.0)
|
|
5
5
|
activesupport
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activesupport (6.
|
|
10
|
+
activesupport (6.1.1)
|
|
11
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
12
|
-
i18n (>=
|
|
13
|
-
minitest (
|
|
14
|
-
tzinfo (~>
|
|
15
|
-
zeitwerk (~> 2.
|
|
12
|
+
i18n (>= 1.6, < 2)
|
|
13
|
+
minitest (>= 5.1)
|
|
14
|
+
tzinfo (~> 2.0)
|
|
15
|
+
zeitwerk (~> 2.3)
|
|
16
16
|
ast (2.4.1)
|
|
17
17
|
coderay (1.1.3)
|
|
18
18
|
concurrent-ruby (1.1.7)
|
|
19
19
|
diff-lcs (1.4.4)
|
|
20
|
-
docile (1.3.
|
|
21
|
-
i18n (1.8.
|
|
20
|
+
docile (1.3.5)
|
|
21
|
+
i18n (1.8.7)
|
|
22
22
|
concurrent-ruby (~> 1.0)
|
|
23
23
|
method_source (1.0.0)
|
|
24
|
-
minitest (5.14.
|
|
25
|
-
parallel (1.
|
|
26
|
-
parser (
|
|
24
|
+
minitest (5.14.3)
|
|
25
|
+
parallel (1.20.1)
|
|
26
|
+
parser (3.0.0.0)
|
|
27
27
|
ast (~> 2.4.1)
|
|
28
28
|
pry (0.13.1)
|
|
29
29
|
coderay (~> 1.1)
|
|
30
30
|
method_source (~> 1.0)
|
|
31
31
|
rainbow (3.0.0)
|
|
32
|
-
rake (13.0.
|
|
33
|
-
regexp_parser (
|
|
32
|
+
rake (13.0.3)
|
|
33
|
+
regexp_parser (2.0.3)
|
|
34
34
|
rexml (3.2.4)
|
|
35
35
|
rspec (3.10.0)
|
|
36
36
|
rspec-core (~> 3.10.0)
|
|
37
37
|
rspec-expectations (~> 3.10.0)
|
|
38
38
|
rspec-mocks (~> 3.10.0)
|
|
39
|
-
rspec-core (3.10.
|
|
39
|
+
rspec-core (3.10.1)
|
|
40
40
|
rspec-support (~> 3.10.0)
|
|
41
|
-
rspec-expectations (3.10.
|
|
41
|
+
rspec-expectations (3.10.1)
|
|
42
42
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
43
43
|
rspec-support (~> 3.10.0)
|
|
44
|
-
rspec-mocks (3.10.
|
|
44
|
+
rspec-mocks (3.10.1)
|
|
45
45
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
46
46
|
rspec-support (~> 3.10.0)
|
|
47
|
-
rspec-support (3.10.
|
|
48
|
-
rubocop (1.1
|
|
47
|
+
rspec-support (3.10.1)
|
|
48
|
+
rubocop (1.8.1)
|
|
49
49
|
parallel (~> 1.10)
|
|
50
|
-
parser (>=
|
|
50
|
+
parser (>= 3.0.0.0)
|
|
51
51
|
rainbow (>= 2.2.2, < 4.0)
|
|
52
|
-
regexp_parser (>= 1.8)
|
|
52
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
53
53
|
rexml
|
|
54
|
-
rubocop-ast (>= 1.0.
|
|
54
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
|
55
55
|
ruby-progressbar (~> 1.7)
|
|
56
|
-
unicode-display_width (>= 1.4.0, <
|
|
57
|
-
rubocop-ast (1.
|
|
56
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
57
|
+
rubocop-ast (1.4.0)
|
|
58
58
|
parser (>= 2.7.1.5)
|
|
59
|
-
ruby-progressbar (1.
|
|
60
|
-
simplecov (0.
|
|
59
|
+
ruby-progressbar (1.11.0)
|
|
60
|
+
simplecov (0.21.2)
|
|
61
61
|
docile (~> 1.1)
|
|
62
62
|
simplecov-html (~> 0.11)
|
|
63
|
+
simplecov_json_formatter (~> 0.1)
|
|
63
64
|
simplecov-html (0.12.3)
|
|
64
|
-
|
|
65
|
-
tzinfo (
|
|
66
|
-
|
|
67
|
-
unicode-display_width (
|
|
68
|
-
zeitwerk (2.4.
|
|
65
|
+
simplecov_json_formatter (0.1.2)
|
|
66
|
+
tzinfo (2.0.4)
|
|
67
|
+
concurrent-ruby (~> 1.0)
|
|
68
|
+
unicode-display_width (2.0.0)
|
|
69
|
+
zeitwerk (2.4.2)
|
|
69
70
|
|
|
70
71
|
PLATFORMS
|
|
71
72
|
ruby
|
|
73
|
+
x86_64-darwin-19
|
|
72
74
|
|
|
73
75
|
DEPENDENCIES
|
|
74
76
|
bundler (~> 2)
|
|
@@ -80,4 +82,4 @@ DEPENDENCIES
|
|
|
80
82
|
simplecov
|
|
81
83
|
|
|
82
84
|
BUNDLED WITH
|
|
83
|
-
2.2.
|
|
85
|
+
2.2.3
|
data/saml_idp_metadata.gemspec
CHANGED
|
@@ -5,19 +5,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
require 'saml_idp_metadata/version'
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |spec|
|
|
8
|
-
spec.name
|
|
9
|
-
spec.
|
|
10
|
-
spec.
|
|
11
|
-
spec.
|
|
8
|
+
spec.name = 'saml_idp_metadata'
|
|
9
|
+
spec.required_ruby_version = '>= 2.5', '< 4'
|
|
10
|
+
spec.version = SamlIdpMetadata::VERSION
|
|
11
|
+
spec.authors = ['tknzk']
|
|
12
|
+
spec.email = ['tkm.knzk@gmail.com']
|
|
12
13
|
|
|
13
|
-
spec.summary
|
|
14
|
-
spec.description
|
|
15
|
-
spec.homepage
|
|
16
|
-
spec.license
|
|
14
|
+
spec.summary = 'SAML IdP metadata.xml parser'
|
|
15
|
+
spec.description = 'SAML IdP metadata.xml parser'
|
|
16
|
+
spec.homepage = 'https://github.com/tknzk/saml_idp_metadata'
|
|
17
|
+
spec.license = 'MIT'
|
|
17
18
|
|
|
18
19
|
# Specify which files should be added to the gem when it is released.
|
|
19
20
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
20
|
-
spec.files
|
|
21
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
21
22
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
22
23
|
end
|
|
23
24
|
spec.bindir = 'exe'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: saml_idp_metadata
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tknzk
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -148,14 +148,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
148
148
|
requirements:
|
|
149
149
|
- - ">="
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
|
-
version: '
|
|
151
|
+
version: '2.5'
|
|
152
|
+
- - "<"
|
|
153
|
+
- !ruby/object:Gem::Version
|
|
154
|
+
version: '4'
|
|
152
155
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
156
|
requirements:
|
|
154
157
|
- - ">="
|
|
155
158
|
- !ruby/object:Gem::Version
|
|
156
159
|
version: '0'
|
|
157
160
|
requirements: []
|
|
158
|
-
rubygems_version: 3.2.
|
|
161
|
+
rubygems_version: 3.2.3
|
|
159
162
|
signing_key:
|
|
160
163
|
specification_version: 4
|
|
161
164
|
summary: SAML IdP metadata.xml parser
|