akami 1.3.1 → 1.3.2

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.
Files changed (33) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +7 -1
  3. data/README.md +8 -2
  4. data/lib/akami/hash_helper.rb +13 -0
  5. data/lib/akami/version.rb +1 -1
  6. data/lib/akami/wsse/signature.rb +2 -1
  7. data/lib/akami/wsse.rb +0 -1
  8. metadata +12 -54
  9. data/.gitignore +0 -8
  10. data/.rspec +0 -1
  11. data/.travis.yml +0 -12
  12. data/Gemfile +0 -10
  13. data/Rakefile +0 -11
  14. data/akami.gemspec +0 -29
  15. data/lib/akami/core_ext/hash.rb +0 -27
  16. data/spec/akami/wsse/certs_spec.rb +0 -53
  17. data/spec/akami/wsse/signature_spec.rb +0 -34
  18. data/spec/akami/wsse/verify_signature_spec.rb +0 -55
  19. data/spec/akami/wsse_spec.rb +0 -266
  20. data/spec/fixtures/akami/wsse/signature/cert.pem +0 -37
  21. data/spec/fixtures/akami/wsse/signature/cert2.pem +0 -37
  22. data/spec/fixtures/akami/wsse/signature/private_key +0 -27
  23. data/spec/fixtures/akami/wsse/signature/private_key2 +0 -30
  24. data/spec/fixtures/akami/wsse/signature/unsigned.xml +0 -1
  25. data/spec/fixtures/akami/wsse/verify_signature/invalid_digest_changed.xml +0 -3
  26. data/spec/fixtures/akami/wsse/verify_signature/invalid_digested_changed.xml +0 -3
  27. data/spec/fixtures/akami/wsse/verify_signature/invalid_signature_changed.xml +0 -3
  28. data/spec/fixtures/akami/wsse/verify_signature/valid.xml +0 -3
  29. data/spec/fixtures/akami/wsse/verify_signature/valid_namespaces.xml +0 -3
  30. data/spec/fixtures/akami/wsse/verify_signature/valid_sha1_gost.xml +0 -3
  31. data/spec/fixtures/akami/wsse/verify_signature/valid_sha256.xml +0 -3
  32. data/spec/fixtures/akami/wsse/verify_signature/valid_whitespaces.xml +0 -75
  33. data/spec/spec_helper.rb +0 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 79e369911fc1792b59cfc6160731e6c3512e1a5d
4
- data.tar.gz: c8ac3cb62b958af7682ad4fdf33a177216b0854f
2
+ SHA256:
3
+ metadata.gz: 20bb54b460119624acb0737c62c1c0b82825ace9886a239e2a3cefd8461635c7
4
+ data.tar.gz: c5fb01bbaf55b70be8627e2f9ee6a40cd2e6680ee2b0cee65d38eedd78961a48
5
5
  SHA512:
6
- metadata.gz: c148827b7a0b58d3b6efeca602d4a747b069966eeebd4119210d54340b78fb3e138a33793cec5949faabc4982e07292df9f76a146d1e0cbec963af54c758ad51
7
- data.tar.gz: 442e501d1c5df900c6776cf3846d4ee1c088d0162d49ef61aa22cee8c55346afb924d650ca10fa9e72c7a3001317b1f9d8ca7585323e05c29b8b0f167d0fff93
6
+ metadata.gz: 787c578411ef161d8109708b1d498743b9bf7a24e840566209f946179b9ffe4ce0d20ce2236a615973108ffb578423bad481cc0d11301ee4617762d19cc24308
7
+ data.tar.gz: 6a421ce03eda89cf332b767e76d2c89dbd5577ecc36dc08d4d696f3ee8e1f84a6160bfd4fdba32f6bd30d3aaacc62cb3f7d07e7c0b7363bce389a198455a7a8e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
+ ## 1.3.2 (2024-01-09)
2
+
3
+ * Stop patching Hash [#35](https://github.com/savonrb/akami/pull/35)
4
+ * Drop support for ruby 2.7 and below
5
+ * GOST engine for openssl is no longer officially supported
6
+
1
7
  ## 1.3.1 (2015-05-4)
2
8
 
3
- * Fix re
9
+ * Fix regression caused by pull request #20. Object#present? is not available outside of Rails.
4
10
 
5
11
  ## 1.3.0 (2015-03-31)
6
12
 
data/README.md CHANGED
@@ -1,8 +1,14 @@
1
- Akami [![Build Status](http://travis-ci.org/savonrb/akami.png)](http://travis-ci.org/savonrb/akami)
1
+ Akami
2
2
  =====
3
3
 
4
4
  Building Web Service Security.
5
5
 
6
+ [![Ruby](https://github.com/savonrb/akami/actions/workflows/ci.yml/badge.svg)](https://github.com/savonrb/akami/actions/workflows/ci.yml)
7
+
8
+ The XML namespaces used by this gem begin with http://docs.oasis-open.org/wss/2004/01/. That URL has PDF documentation of "Web Services Security UsernameToken Profile 1.0" and "Web Services Security: SOAP Message Security 1.0 (WS-Security 2004)".
9
+
10
+ To place this in a historical context [Wikipedia on WS-Security](https://en.wikipedia.org/wiki/WS-Security) mentions "wsse" namespace prefix in its [History section](https://en.wikipedia.org/wiki/WS-Security#History).
11
+
6
12
 
7
13
  Installation
8
14
  ------------
@@ -55,7 +61,7 @@ wsse["wsse:Security"]["wsse:UsernameToken"] = { "Organization" => "ACME" }
55
61
 
56
62
  When generating the XML for the request, this Hash will be merged with another Hash containing
57
63
  all the default tags and values.
58
- This way you might digg into some code, but then you can even overwrite the default values.
64
+ This way you might dig into some code, but then you can even overwrite the default values.
59
65
 
60
66
  ``` ruby
61
67
  wsse.to_xml
@@ -0,0 +1,13 @@
1
+ module Akami
2
+ module HashHelper
3
+ # Returns a new Hash with +hash+ and +other_hash+ merged recursively.
4
+ # Modifies +hash+ in place.
5
+ def self.deep_merge!(hash, other_hash)
6
+ other_hash.each_pair do |k,v|
7
+ tv = hash[k]
8
+ hash[k] = tv.is_a?(Hash) && v.is_a?(Hash) ? deep_merge!(tv.dup, v) : v
9
+ end
10
+ hash
11
+ end
12
+ end
13
+ end
data/lib/akami/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Akami
2
2
 
3
- VERSION = '1.3.1'
3
+ VERSION = '1.3.2'
4
4
 
5
5
  end
@@ -1,3 +1,4 @@
1
+ require "akami/hash_helper"
1
2
  require "akami/wsse/certs"
2
3
 
3
4
  module Akami
@@ -74,7 +75,7 @@ module Akami
74
75
  :attributes! => { "Signature" => { "xmlns" => SignatureNamespace } },
75
76
  }
76
77
 
77
- token.deep_merge!(binary_security_token) if certs.cert
78
+ Akami::HashHelper.deep_merge!(token, binary_security_token) if certs.cert
78
79
 
79
80
  token.merge! :order! => []
80
81
  [ "wsse:BinarySecurityToken", "Signature" ].each do |key|
data/lib/akami/wsse.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require "base64"
2
2
  require "digest/sha1"
3
- require "akami/core_ext/hash"
4
3
  require "akami/xpath_helper"
5
4
  require "akami/c14n_helper"
6
5
  require "time"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: akami
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Harrington
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-24 00:00:00.000000000 Z
11
+ date: 2024-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gyoku
@@ -44,28 +44,28 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '10.0'
47
+ version: '13.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '10.0'
54
+ version: '13.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '2.14'
61
+ version: '3.12'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '2.14'
68
+ version: '3.12'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: timecop
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -87,46 +87,23 @@ executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
- - ".gitignore"
91
- - ".rspec"
92
- - ".travis.yml"
93
90
  - CHANGELOG.md
94
- - Gemfile
95
91
  - LICENSE
96
92
  - README.md
97
- - Rakefile
98
- - akami.gemspec
99
93
  - lib/akami.rb
100
94
  - lib/akami/c14n_helper.rb
101
- - lib/akami/core_ext/hash.rb
95
+ - lib/akami/hash_helper.rb
102
96
  - lib/akami/version.rb
103
97
  - lib/akami/wsse.rb
104
98
  - lib/akami/wsse/certs.rb
105
99
  - lib/akami/wsse/signature.rb
106
100
  - lib/akami/wsse/verify_signature.rb
107
101
  - lib/akami/xpath_helper.rb
108
- - spec/akami/wsse/certs_spec.rb
109
- - spec/akami/wsse/signature_spec.rb
110
- - spec/akami/wsse/verify_signature_spec.rb
111
- - spec/akami/wsse_spec.rb
112
- - spec/fixtures/akami/wsse/signature/cert.pem
113
- - spec/fixtures/akami/wsse/signature/cert2.pem
114
- - spec/fixtures/akami/wsse/signature/private_key
115
- - spec/fixtures/akami/wsse/signature/private_key2
116
- - spec/fixtures/akami/wsse/signature/unsigned.xml
117
- - spec/fixtures/akami/wsse/verify_signature/invalid_digest_changed.xml
118
- - spec/fixtures/akami/wsse/verify_signature/invalid_digested_changed.xml
119
- - spec/fixtures/akami/wsse/verify_signature/invalid_signature_changed.xml
120
- - spec/fixtures/akami/wsse/verify_signature/valid.xml
121
- - spec/fixtures/akami/wsse/verify_signature/valid_namespaces.xml
122
- - spec/fixtures/akami/wsse/verify_signature/valid_sha1_gost.xml
123
- - spec/fixtures/akami/wsse/verify_signature/valid_sha256.xml
124
- - spec/fixtures/akami/wsse/verify_signature/valid_whitespaces.xml
125
- - spec/spec_helper.rb
126
102
  homepage: https://github.com/savonrb/akami
127
103
  licenses:
128
104
  - MIT
129
- metadata: {}
105
+ metadata:
106
+ rubygems_mfa_required: 'true'
130
107
  post_install_message:
131
108
  rdoc_options: []
132
109
  require_paths:
@@ -135,34 +112,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
135
112
  requirements:
136
113
  - - ">="
137
114
  - !ruby/object:Gem::Version
138
- version: 1.9.2
115
+ version: 2.7.0
139
116
  required_rubygems_version: !ruby/object:Gem::Requirement
140
117
  requirements:
141
118
  - - ">="
142
119
  - !ruby/object:Gem::Version
143
120
  version: '0'
144
121
  requirements: []
145
- rubyforge_project: akami
146
- rubygems_version: 2.4.6
122
+ rubygems_version: 3.4.10
147
123
  signing_key:
148
124
  specification_version: 4
149
125
  summary: Web Service Security
150
- test_files:
151
- - spec/akami/wsse/certs_spec.rb
152
- - spec/akami/wsse/signature_spec.rb
153
- - spec/akami/wsse/verify_signature_spec.rb
154
- - spec/akami/wsse_spec.rb
155
- - spec/fixtures/akami/wsse/signature/cert.pem
156
- - spec/fixtures/akami/wsse/signature/cert2.pem
157
- - spec/fixtures/akami/wsse/signature/private_key
158
- - spec/fixtures/akami/wsse/signature/private_key2
159
- - spec/fixtures/akami/wsse/signature/unsigned.xml
160
- - spec/fixtures/akami/wsse/verify_signature/invalid_digest_changed.xml
161
- - spec/fixtures/akami/wsse/verify_signature/invalid_digested_changed.xml
162
- - spec/fixtures/akami/wsse/verify_signature/invalid_signature_changed.xml
163
- - spec/fixtures/akami/wsse/verify_signature/valid.xml
164
- - spec/fixtures/akami/wsse/verify_signature/valid_namespaces.xml
165
- - spec/fixtures/akami/wsse/verify_signature/valid_sha1_gost.xml
166
- - spec/fixtures/akami/wsse/verify_signature/valid_sha256.xml
167
- - spec/fixtures/akami/wsse/verify_signature/valid_whitespaces.xml
168
- - spec/spec_helper.rb
126
+ test_files: []
data/.gitignore DELETED
@@ -1,8 +0,0 @@
1
- .DS_Store
2
- doc
3
- coverage
4
- pkg
5
- *~
6
- *.gem
7
- .bundle
8
- Gemfile.lock
data/.rspec DELETED
@@ -1 +0,0 @@
1
- --color
data/.travis.yml DELETED
@@ -1,12 +0,0 @@
1
- # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
2
- language: "ruby"
3
- script: "bundle exec rake"
4
- rvm:
5
- - 1.9.3
6
- - 2.0
7
- - 2.1
8
- - 2.2
9
- - jruby-19mode
10
- - rbx-2
11
- notifications:
12
- irc: "irc.freenode.org#savon"
data/Gemfile DELETED
@@ -1,10 +0,0 @@
1
- source 'https://rubygems.org'
2
- gemspec
3
-
4
- platform :rbx do
5
- gem 'json'
6
- gem 'racc'
7
- gem 'rubysl'
8
- gem 'rubinius-coverage'
9
- end
10
-
data/Rakefile DELETED
@@ -1,11 +0,0 @@
1
- require 'bundler'
2
- Bundler::GemHelper.install_tasks
3
-
4
- require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new do |t|
7
- t.rspec_opts = %w(-c)
8
- end
9
-
10
- task :default => :spec
11
- task :test => :spec
data/akami.gemspec DELETED
@@ -1,29 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "akami/version"
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "akami"
7
- s.version = Akami::VERSION
8
- s.authors = ["Daniel Harrington"]
9
- s.email = ["me@rubiii.com"]
10
- s.homepage = "https://github.com/savonrb/#{s.name}"
11
- s.summary = "Web Service Security"
12
- s.description = "Building Web Service Security"
13
- s.required_ruby_version = '>= 1.9.2'
14
-
15
- s.rubyforge_project = s.name
16
- s.license = "MIT"
17
-
18
- s.add_dependency "gyoku", ">= 0.4.0"
19
- s.add_dependency "nokogiri"
20
-
21
- s.add_development_dependency "rake", "~> 10.0"
22
- s.add_development_dependency "rspec", "~> 2.14"
23
- s.add_development_dependency "timecop", "~> 0.5"
24
-
25
- s.files = `git ls-files`.split("\n")
26
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
27
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
28
- s.require_paths = ["lib"]
29
- end
@@ -1,27 +0,0 @@
1
- # NOTE: This could probably be removed, but I don't have the time at the moment
2
- # determine that. It is used by signature.rb, and these methods used to
3
- # be in Savon.
4
- #
5
- module Akami
6
- module CoreExt
7
- module Hash
8
-
9
- # Returns a new hash with +self+ and +other_hash+ merged recursively.
10
- def deep_merge(other_hash)
11
- dup.deep_merge!(other_hash)
12
- end
13
-
14
- # Returns a new Hash with +self+ and +other_hash+ merged recursively.
15
- # Modifies the receiver in place.
16
- def deep_merge!(other_hash)
17
- other_hash.each_pair do |k,v|
18
- tv = self[k]
19
- self[k] = tv.is_a?(Hash) && v.is_a?(Hash) ? tv.deep_merge(v) : v
20
- end
21
- self
22
- end unless defined? deep_merge!
23
- end
24
- end
25
- end
26
-
27
- Hash.send :include, Akami::CoreExt::Hash
@@ -1,53 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe Akami::WSSE::Certs do
4
-
5
- let(:private_key_password) {'password' }
6
- let(:cert_string) { nil }
7
- let(:private_key_string) { nil }
8
-
9
- let(:fixtures_path) do
10
- File.join(Bundler.root, 'spec', 'fixtures', 'akami', 'wsse', 'signature' )
11
- end
12
-
13
- let(:subject) do
14
- Akami::WSSE::Certs.new(
15
- cert_file: cert_file_path,
16
- cert_string: cert_string,
17
- private_key_file: private_key_path,
18
- private_key_string: private_key_string,
19
- private_key_password: private_key_password,
20
- )
21
- end
22
-
23
- context 'with a path to a certificate and private key' do
24
- let(:cert_file_path) { File.join(fixtures_path, 'cert.pem') }
25
- let(:private_key_path) { File.join(fixtures_path, 'private_key') }
26
-
27
- it 'should use the certificate path provided' do
28
- expected_certificate = OpenSSL::X509::Certificate.new(File.read(cert_file_path))
29
- expect(subject.cert.to_pem).to eq(expected_certificate.to_pem)
30
- end
31
-
32
- it 'should use the private key path provided' do
33
- expected_key = OpenSSL::PKey::RSA.new(File.read(private_key_path), private_key_password)
34
- expect(subject.private_key.to_pem).to eq(expected_key.to_pem)
35
- end
36
-
37
- context 'with an in-memory cert and private key' do
38
- let!(:cert_string) { File.read(File.join(fixtures_path, 'cert2.pem')) }
39
- let!(:private_key_string) { File.read(File.join(fixtures_path, 'private_key2')) }
40
-
41
- it 'should use the strings provided' do
42
- expected_certificate = OpenSSL::X509::Certificate.new(cert_string).to_pem
43
- expect(subject.cert.to_pem).to eq(expected_certificate)
44
- end
45
-
46
- it 'should use the private key provided' do
47
- expected_key = OpenSSL::PKey::RSA.new(private_key_string, private_key_password)
48
- expect(subject.private_key.to_pem).to eq(expected_key.to_pem)
49
- end
50
-
51
- end
52
- end
53
- end
@@ -1,34 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe Akami::WSSE::Signature do
4
-
5
- let(:validator) { Akami::WSSE::VerifySignature.new(xml) }
6
- let(:xml) { '' }
7
-
8
- let(:fixtures_path) {
9
- File.join(Bundler.root, 'spec', 'fixtures', 'akami', 'wsse', 'signature' )
10
- }
11
- let(:cert_path) { File.join(fixtures_path, 'cert.pem') }
12
- let(:password) { 'password' }
13
-
14
- let(:signature) {
15
- Akami::WSSE::Signature.new(
16
- Akami::WSSE::Certs.new(
17
- cert_file: cert_path,
18
- private_key_file: cert_path,
19
- private_key_password: password
20
- )
21
- )
22
- }
23
-
24
- context 'to_token' do
25
- let(:xml) { fixture('akami/wsse/signature/unsigned.xml') }
26
-
27
- it 'should ignore excessive whitespace' do
28
- signature.document = xml
29
- expect(signature.document).not_to include(" ")
30
- end
31
-
32
- end
33
-
34
- end
@@ -1,55 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe Akami::WSSE::VerifySignature do
4
-
5
- it 'should validate correctly signed XML messages' do
6
- xml = fixture('akami/wsse/verify_signature/valid.xml')
7
- validator = described_class.new(xml)
8
- validator.verify!.should eq(true)
9
- end
10
-
11
- it 'should validate correctly signed XML messages with differently named namespaces' do
12
- xml = fixture('akami/wsse/verify_signature/valid_namespaces.xml')
13
- validator = described_class.new(xml)
14
- validator.verify!.should eq(true)
15
- end
16
-
17
- it 'should validate correctly signed XML messages with whitespaces' do
18
- xml = fixture('akami/wsse/verify_signature/valid_whitespaces.xml')
19
- validator = described_class.new(xml)
20
- expect(validator.verify!).to equal(true)
21
- end
22
-
23
- it 'should not validate signed XML messages with digested content changed' do
24
- xml = fixture('akami/wsse/verify_signature/invalid_digested_changed.xml')
25
- validator = described_class.new(xml)
26
- expect{ validator.verify! }.to raise_error(Akami::WSSE::InvalidSignature)
27
- end
28
-
29
- it 'should not validate signed XML messages with digest changed' do
30
- xml = fixture('akami/wsse/verify_signature/invalid_digest_changed.xml')
31
- validator = described_class.new(xml)
32
- expect{ validator.verify! }.to raise_error(Akami::WSSE::InvalidSignature)
33
- end
34
-
35
- it 'should not validate signed XML messages with signature changed' do
36
- xml = fixture('akami/wsse/verify_signature/invalid_signature_changed.xml')
37
- validator = described_class.new(xml)
38
- expect{ validator.verify! }.to raise_error(Akami::WSSE::InvalidSignature)
39
- end
40
-
41
- # There is no testing for messages signed with GOST as it requires patched Ruby
42
- # But we can test GOST digest calculation
43
- it 'should validate correctly signed XML messages with RSA-SHA1 signature and GOST R 34.11-94 digests' do
44
- xml = fixture('akami/wsse/verify_signature/valid_sha1_gost.xml')
45
- validator = described_class.new(xml)
46
- expect(validator.verify!).to equal(true)
47
- end
48
-
49
- it 'should validate correctly signed XML messages with SHA256 signature and SHA256 digests' do
50
- xml = fixture('akami/wsse/verify_signature/valid_sha256.xml')
51
- validator = described_class.new(xml)
52
- expect(validator.verify!).to equal(true)
53
- end
54
-
55
- end
@@ -1,266 +0,0 @@
1
- require 'spec_helper'
2
- require 'base64'
3
- require 'nokogiri'
4
-
5
- describe Akami do
6
- let(:wsse) { Akami.wsse }
7
-
8
- it "contains the namespace for WS Security Secext" do
9
- expect(Akami::WSSE::WSE_NAMESPACE).to eq(
10
- "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
11
- )
12
- end
13
-
14
- it "contains the namespace for WS Security Utility" do
15
- expect(Akami::WSSE::WSU_NAMESPACE).to eq(
16
- "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
17
- )
18
- end
19
-
20
- it "contains the namespace for the PasswordText type" do
21
- expect(Akami::WSSE::PASSWORD_TEXT_URI).to eq(
22
- "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText"
23
- )
24
- end
25
-
26
- it "contains the namespace for the PasswordDigest type" do
27
- expect(Akami::WSSE::PASSWORD_DIGEST_URI).to eq(
28
- "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest"
29
- )
30
- end
31
-
32
- it "contains the namespace for Base64 Encoding type" do
33
- expect(Akami::WSSE::BASE64_URI).to eq(
34
- "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"
35
- )
36
- end
37
-
38
- describe "#credentials" do
39
- it "sets the username" do
40
- wsse.credentials "username", "password"
41
- expect(wsse.username).to eq("username")
42
- end
43
-
44
- it "sets the password" do
45
- wsse.credentials "username", "password"
46
- expect(wsse.password).to eq("password")
47
- end
48
-
49
- it "defaults to set digest to false" do
50
- wsse.credentials "username", "password"
51
- expect(wsse).not_to be_digest
52
- end
53
-
54
- it "sets digest to true if specified" do
55
- wsse.credentials "username", "password", :digest
56
- expect(wsse).to be_digest
57
- end
58
- end
59
-
60
- describe "#username" do
61
- it "sets the username" do
62
- wsse.username = "username"
63
- expect(wsse.username).to eq("username")
64
- end
65
- end
66
-
67
- describe "#password" do
68
- it "sets the password" do
69
- wsse.password = "password"
70
- expect(wsse.password).to eq("password")
71
- end
72
- end
73
-
74
- describe "#digest" do
75
- it "defaults to false" do
76
- expect(wsse).not_to be_digest
77
- end
78
-
79
- it "specifies whether to use digest auth" do
80
- wsse.digest = true
81
- expect(wsse).to be_digest
82
- end
83
- end
84
-
85
- describe "#to_xml" do
86
- context "with no credentials" do
87
- it "returns an empty String" do
88
- expect(wsse.to_xml).to eq("")
89
- end
90
- end
91
-
92
- context "with only a username" do
93
- before { wsse.username = "username" }
94
-
95
- it "returns an empty String" do
96
- expect(wsse.to_xml).to eq("")
97
- end
98
- end
99
-
100
- context "with only a password" do
101
- before { wsse.password = "password" }
102
-
103
- it "returns an empty String" do
104
- expect(wsse.to_xml).to eq("")
105
- end
106
- end
107
-
108
- context "with credentials" do
109
- before { wsse.credentials "username", "password" }
110
-
111
- it "contains a wsse:Security tag" do
112
- namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
113
- expect(wsse.to_xml).to include("<wsse:Security xmlns:wsse=\"#{namespace}\">")
114
- end
115
-
116
- it "contains a wsu:Id attribute" do
117
- expect(wsse.to_xml).to include('<wsse:UsernameToken wsu:Id="UsernameToken-1"')
118
- end
119
-
120
- it "increments the wsu:Id attribute count" do
121
- expect(wsse.to_xml).to include('<wsse:UsernameToken wsu:Id="UsernameToken-1"')
122
- expect(wsse.to_xml).to include('<wsse:UsernameToken wsu:Id="UsernameToken-2"')
123
- end
124
-
125
- it "contains the WSE and WSU namespaces" do
126
- expect(wsse.to_xml).to include(Akami::WSSE::WSE_NAMESPACE, Akami::WSSE::WSU_NAMESPACE)
127
- end
128
-
129
- it "contains the username and password" do
130
- expect(wsse.to_xml).to include("username", "password")
131
- end
132
-
133
- it "does not contain a wsse:Nonce tag" do
134
- expect(wsse.to_xml).not_to match(/<wsse:Nonce.*>.*<\/wsse:Nonce>/)
135
- end
136
-
137
- it "does not contain a wsu:Created tag" do
138
- expect(wsse.to_xml).not_to match(/<wsu:Created>.*<\/wsu:Created>/)
139
- end
140
-
141
- it "contains the PasswordText type attribute" do
142
- expect(wsse.to_xml).to include(Akami::WSSE::PASSWORD_TEXT_URI)
143
- end
144
- end
145
-
146
- context "with credentials and digest auth" do
147
- before { wsse.credentials "username", "password", :digest }
148
-
149
- it "contains the WSE and WSU namespaces" do
150
- expect(wsse.to_xml).to include(Akami::WSSE::WSE_NAMESPACE, Akami::WSSE::WSU_NAMESPACE)
151
- end
152
-
153
- it "contains the username" do
154
- expect(wsse.to_xml).to include("username")
155
- end
156
-
157
- it "does not contain the (original) password" do
158
- expect(wsse.to_xml).not_to include("password")
159
- end
160
-
161
- it "contains the Nonce base64 type attribute" do
162
- expect(wsse.to_xml).to include(Akami::WSSE::BASE64_URI)
163
- end
164
-
165
- it "contains a wsu:Created tag" do
166
- created_at = Time.now
167
- Timecop.freeze created_at do
168
- expect(wsse.to_xml).to include("<wsu:Created>#{created_at.utc.xmlschema}</wsu:Created>")
169
- end
170
- end
171
-
172
- it "contains the PasswordDigest type attribute" do
173
- expect(wsse.to_xml).to include(Akami::WSSE::PASSWORD_DIGEST_URI)
174
- end
175
-
176
- it "should reset the nonce every time" do
177
- created_at = Time.now
178
- Timecop.freeze created_at do
179
- nonce_regexp = /<wsse:Nonce.*>([^<]+)<\/wsse:Nonce>/
180
- nonce_first = Base64.decode64(nonce_regexp.match(wsse.to_xml)[1])
181
- nonce_second = Base64.decode64(nonce_regexp.match(wsse.to_xml)[1])
182
- expect(nonce_first).not_to eq(nonce_second)
183
- end
184
- end
185
-
186
- it "has contains a properly hashed password" do
187
- xml_header = Nokogiri::XML(wsse.to_xml)
188
- xml_header.remove_namespaces!
189
- nonce = Base64.decode64(xml_header.xpath('//Nonce').first.content)
190
- created_at = xml_header.xpath('//Created').first.content
191
- password_hash = Base64.decode64(xml_header.xpath('//Password').first.content)
192
- expect(password_hash).to eq(Digest::SHA1.digest((nonce + created_at + "password")))
193
- end
194
- end
195
-
196
- context "with #timestamp set to true" do
197
- before { wsse.timestamp = true }
198
-
199
- it "contains a wsse:Timestamp node" do
200
- expect(wsse.to_xml).to include('<wsu:Timestamp wsu:Id="Timestamp-1" ' +
201
- 'xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">')
202
- end
203
-
204
- it "contains a wsu:Created node defaulting to Time.now" do
205
- created_at = Time.now
206
- Timecop.freeze created_at do
207
- expect(wsse.to_xml).to include("<wsu:Created>#{created_at.utc.xmlschema}</wsu:Created>")
208
- end
209
- end
210
-
211
- it "contains a wsu:Expires node defaulting to Time.now + 60 seconds" do
212
- created_at = Time.now
213
- Timecop.freeze created_at do
214
- expect(wsse.to_xml).to include("<wsu:Expires>#{(created_at + 60).utc.xmlschema}</wsu:Expires>")
215
- end
216
- end
217
- end
218
-
219
- context "with #created_at" do
220
- before { wsse.created_at = Time.now + 86400 }
221
-
222
- it "contains a wsu:Created node with the given time" do
223
- expect(wsse.to_xml).to include("<wsu:Created>#{wsse.created_at.utc.xmlschema}</wsu:Created>")
224
- end
225
-
226
- it "contains a wsu:Expires node set to #created_at + 60 seconds" do
227
- expect(wsse.to_xml).to include("<wsu:Expires>#{(wsse.created_at + 60).utc.xmlschema}</wsu:Expires>")
228
- end
229
- end
230
-
231
- context "with #expires_at" do
232
- before { wsse.expires_at = Time.now + 86400 }
233
-
234
- it "contains a wsu:Created node defaulting to Time.now" do
235
- created_at = Time.now
236
- Timecop.freeze created_at do
237
- expect(wsse.to_xml).to include("<wsu:Created>#{created_at.utc.xmlschema}</wsu:Created>")
238
- end
239
- end
240
-
241
- it "contains a wsu:Expires node set to the given time" do
242
- expect(wsse.to_xml).to include("<wsu:Expires>#{wsse.expires_at.utc.xmlschema}</wsu:Expires>")
243
- end
244
- end
245
-
246
- context "whith credentials and timestamp" do
247
- before do
248
- wsse.credentials "username", "password"
249
- wsse.timestamp = true
250
- end
251
-
252
- it "contains a wsu:Created node" do
253
- expect(wsse.to_xml).to include("<wsu:Created>")
254
- end
255
-
256
- it "contains a wsu:Expires node" do
257
- expect(wsse.to_xml).to include("<wsu:Expires>")
258
- end
259
-
260
- it "contains the username and password" do
261
- expect(wsse.to_xml).to include("username", "password")
262
- end
263
- end
264
- end
265
-
266
- end
@@ -1,37 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIDIjCCAougAwIBAgIJAI53JnRgJIJwMA0GCSqGSIb3DQEBBQUAMGoxCzAJBgNV
3
- BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp
4
- c2NvMQ4wDAYDVQQKEwVTYXZvbjEOMAwGA1UECxMFU2F2b24xDjAMBgNVBAMTBVNh
5
- dm9uMB4XDTE0MTIwMjAwMTMwMloXDTI0MTEyOTAwMTMwMlowajELMAkGA1UEBhMC
6
- VVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lzY28x
7
- DjAMBgNVBAoTBVNhdm9uMQ4wDAYDVQQLEwVTYXZvbjEOMAwGA1UEAxMFU2F2b24w
8
- gZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM56hKF3+4SSUu8msb5HWMvp322y
9
- QL+luJ+Lt/r/ib7EPeb4UU68b+Wf3xIa3N1+w8tDQghCR4YuEIILKH/UGC785Old
10
- VJfikD4kxiwF4jB0RgdRK/JEG/UthHKqJID+oyijW4ws4MgZ/bWMhSbSVRioqcwe
11
- 2JElg/m2TemKJkXDAgMBAAGjgc8wgcwwHQYDVR0OBBYEFKSd+UicrRDQS2NeLSEA
12
- Zpipjk8EMIGcBgNVHSMEgZQwgZGAFKSd+UicrRDQS2NeLSEAZpipjk8EoW6kbDBq
13
- MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2Fu
14
- IEZyYW5jaXNjbzEOMAwGA1UEChMFU2F2b24xDjAMBgNVBAsTBVNhdm9uMQ4wDAYD
15
- VQQDEwVTYXZvboIJAI53JnRgJIJwMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEF
16
- BQADgYEAWI27+cDx3U53zaJROXKfQutqUZzZz9B0NzQ0vlN2h5UbACGbXH9C1wLz
17
- MBvNjgEiK+/jHSadSDgfvADv+2hCsFw8eNgbisWiV5yvDyTqttg3cSJHz8jRDeA+
18
- jnvaC9Y//AoRr/WGKKU3FY40J7pQKcQNczGUzCS+ag0IO64agTs=
19
- -----END CERTIFICATE-----
20
- -----BEGIN RSA PRIVATE KEY-----
21
- Proc-Type: 4,ENCRYPTED
22
- DEK-Info: DES-EDE3-CBC,A0BF079E41C9A4C1
23
-
24
- rEO5mWOWbnr8uyjtfIRwW9wRo2/y1wMON2c605BkgaNeAKH/++1UC9qEhNtHfE2Q
25
- omQkXiHfV6yt3l3dWPcnA9ToT9PRNLyoRMMC+Ds5EuEk4ypihQ8SS2xt3wqCRkwm
26
- 3/AyrRZXUnBTVzZ9D35lz1HCFfJ61UpOMN9XOZy4yUqDZVG/ybMhXilfNKgTr8xJ
27
- StTb7ruwV/8xTiEgmcxGKJbOcDKqwsd/mW3VbDN6zOqYC0TlFc/eiCbJxMd35l6a
28
- oRfHWHbabumcfZplqoDcOwYpRb8ZiDbu74RrDogKnpH7nnJrp8jSYueCiXGDWGFG
29
- ZXB6f2FhsbrLEM87L8cxJO6Hk6+c39qgiP2aRICeKjUNKPOfSiPr4yP4/g3tFY2z
30
- sI9xur3nAXoqxXBrEkEdvXiH35UfJpqOTxbAN+Ozxnj1QeLWDDE8nkMW/XRRxdCk
31
- jeUwR5PS3sM2S/fIn7rThQSKRMxznK//cEUsMwz514HekxnKyj8rZUETcFFySxmz
32
- lmOzDOaPNejDOgNSrlT+IDqE9YlMxLObv5l960QOjk0qBaO8e33HkgfBqENzq7Uv
33
- Wrj3FyBlNz4vfhCZHBY0+rSgdZHM64DV0HybE7yc+mMUwrV7ish1bGb/Bek/4JF+
34
- lrpRuxTEQFGNTGFYa0C5zDpz9UtiSUs2X4EX74GfxCUmn7kNND+4OVrndZiEONPz
35
- /6QffS7YG1UtahDpDzI1wOCYD9Iwg/HnmTWMcXj2Yw7jRvlG0sArw/5dNJkrmuJY
36
- 6PvFoEeZSF4qrUCDlw/BUJMaGDlhSCyTWulZZU+wWuJRTWCiDxYO1g==
37
- -----END RSA PRIVATE KEY-----
@@ -1,37 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIDIjCCAougAwIBAgIJAI53JnRgJIJwMA0GCSqGSIb3DQEBBQUAMGoxCzAJBgNV
3
- BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp
4
- c2NvMQ4wDAYDVQQKEwVTYXZvbjEOMAwGA1UECxMFU2F2b24xDjAMBgNVBAMTBVNh
5
- dm9uMB4XDTE0MTIwMjAwMTMwMloXDTI0MTEyOTAwMTMwMlowajELMAkGA1UEBhMC
6
- VVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lzY28x
7
- DjAMBgNVBAoTBVNhdm9uMQ4wDAYDVQQLEwVTYXZvbjEOMAwGA1UEAxMFU2F2b24w
8
- gZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM56hKF3+4SSUu8msb5HWMvp322y
9
- QL+luJ+Lt/r/ib7EPeb4UU68b+Wf3xIa3N1+w8tDQghCR4YuEIILKH/UGC785Old
10
- VJfikD4kxiwF4jB0RgdRK/JEG/UthHKqJID+oyijW4ws4MgZ/bWMhSbSVRioqcwe
11
- 2JElg/m2TemKJkXDAgMBAAGjgc8wgcwwHQYDVR0OBBYEFKSd+UicrRDQS2NeLSEA
12
- Zpipjk8EMIGcBgNVHSMEgZQwgZGAFKSd+UicrRDQS2NeLSEAZpipjk8EoW6kbDBq
13
- MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2Fu
14
- IEZyYW5jaXNjbzEOMAwGA1UEChMFU2F2b24xDjAMBgNVBAsTBVNhdm9uMQ4wDAYD
15
- VQQDEwVTYXZvboIJAI53JnRgJIJwMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEF
16
- BQADgYEAWI27+cDx3U53zaJROXKfQutqUZzZz9B0NzQ0vlN2h5UbACGbXH9C1wLz
17
- MBvNjgEiK+/jHSadSDgfvADv+2hCsFw8eNgbisWiV5yvDyTqttg3cSJHz8jRDeA+
18
- jnvaC9Y//AoRr/WGKKU3FY40J7pQKcQNczGUzCS+ag0IO64agTs=
19
- -----END CERTIFICATE-----
20
- -----BEGIN RSA PRIVATE KEY-----
21
- Proc-Type: 4,ENCRYPTED
22
- DEK-Info: DES-EDE3-CBC,A0BF079E41C9A4C1
23
-
24
- rEO5mWOWbnr8uyjtfIRwW9wRo2/y1wMON2c605BkgaNeAKH/++1UC9qEhNtHfE2Q
25
- omQkXiHfV6yt3l3dWPcnA9ToT9PRNLyoRMMC+Ds5EuEk4ypihQ8SS2xt3wqCRkwm
26
- 3/AyrRZXUnBTVzZ9D35lz1HCFfJ61UpOMN9XOZy4yUqDZVG/ybMhXilfNKgTr8xJ
27
- StTb7ruwV/8xTiEgmcxGKJbOcDKqwsd/mW3VbDN6zOqYC0TlFc/eiCbJxMd35l6a
28
- oRfHWHbabumcfZplqoDcOwYpRb8ZiDbu74RrDogKnpH7nnJrp8jSYueCiXGDWGFG
29
- ZXB6f2FhsbrLEM87L8cxJO6Hk6+c39qgiP2aRICeKjUNKPOfSiPr4yP4/g3tFY2z
30
- sI9xur3nAXoqxXBrEkEdvXiH35UfJpqOTxbAN+Ozxnj1QeLWDDE8nkMW/XRRxdCk
31
- jeUwR5PS3sM2S/fIn7rThQSKRMxznK//cEUsMwz514HekxnKyj8rZUETcFFySxmz
32
- lmOzDOaPNejDOgNSrlT+IDqE9YlMxLObv5l960QOjk0qBaO8e33HkgfBqENzq7Uv
33
- Wrj3FyBlNz4vfhCZHBY0+rSgdZHM64DV0HybE7yc+mMUwrV7ish1bGb/Bek/4JF+
34
- lrpRuxTEQFGNTGFYa0C5zDpz9UtiSUs2X4EX74GfxCUmn7kNND+4OVrndZiEONPz
35
- /6QffS7YG1UtahDpDzI1wOCYD9Iwg/HnmTWMcXj2Yw7jRvlG0sArw/5dNJkrmuJY
36
- 6PvFoEeZSF4qrUCDlw/BUJMaGDlhSCyTWulZZU+wWuJRTWCiDxYO1g==
37
- -----END RSA PRIVATE KEY-----
@@ -1,27 +0,0 @@
1
- -----BEGIN RSA PRIVATE KEY-----
2
- MIIEowIBAAKCAQEAw86gdw+0nANIB2+8y/2eMXppCI8AbRM+UuZuRbu1WbuGBuwL
3
- BfkkYwqGOYfms7DF5VE9oMs0Z7s+jHjm4OuI14ikBpQZs4QAHow/FKUT7AgTURk5
4
- c3Hq2mk3se4sM5VZ6sWV64IqengrueIdv5hNLkqA0iP+ckh2TT/xSYPjFDWIyFkR
5
- 46ZaHtrEqnMLadp8w/5iwYj2Wr9JWbgptFxlWdfJolDo2XPN2Y7FT3y1uPJ97X7w
6
- ieEMrdy2VTVx3n5S82uRO8lq7JbOrG/ywYqlc8qy//fygW5lC9svy61AMNoLnEMt
7
- L/sXHa4Khw97nwAHJVgul7hHIg++yb+8fA0U5QIDAQABAoIBACPjf23TJxthTpZu
8
- WIBbH9+ZvB6hd0aGvGmdaqDFYtvrjwk9wld57r1odGmfCx3sTJlXZqBOHnDU1QYS
9
- Mt8OzKoUlVvPUVah3xO6SOWTzC762++FXA5Y1t7pYhfuu5NI0I5DYNMlrHt+AyWy
10
- 2BkB5UOSzEG37y8rMOO/0I3U6o4NX1xmA7SXdTnGDPAa+UkxmWsuiDqoDez86E0l
11
- OlUgm76VBY/i19spI+eDqVozxWV9edqO06kSFIevN9bXAqab9oSyKgj9zkPofzHB
12
- FxBBsmGWlYEFllo7e4MnAYuTBV49UJc+yKnAyHqt7EQo4pylu8Ly7qu1tXPpR+wi
13
- qJKfzRECgYEA+GvwRoS76nArZ73NzqWfNxdHwq2IsGUOmlOikMreSwOfn+lPBbgs
14
- mDeLOf8MBwAvJjyTQXxkW/sCA+sRlM4BtuDRYLRLQLgzxXLGKMi2QAeLiJCL+bQJ
15
- ytVsOAu7EvQ8aSRSPAfZD+S7wv135sr2MyzyHushpGZwToqOizo3hq8CgYEAycfK
16
- 6and3bYd9QvZH7GALqQauBe+9fmNG5YJKYcjjQNBtStRAMDtNRuAagcaVbIjQrgm
17
- +BzLbOOJS4/CTtYJPrZDmsQxX0cVI28FwRPWTPjM3g+1IMmaW1QhogU9mea2uPZK
18
- y6Lb/fEdx0erueDnSzfEDisseh7LFsqaX5rTQqsCgYA+MwBpF6jZTRaBFhPmrq9L
19
- oueTxdFYoSTj3Rbx++lmjNS1vDvN6cw4nIeekM5ZHmGvyDDyj4utQA7EHmI7iM0D
20
- Fg02kk3ZOYW05UTaR07if0Efg1mYvsxI3eEHs2A2obJSfQaeAzUE9rdQXhhcT+sO
21
- 6y0AMs0slX1/HNAN6him/wKBgQCFBqipn4lbj6L0WFlOYbEGDr5mu5DzjRAQLbvg
22
- mu0/G/SHwgTnIEnCB12DiSc9c/F3HPzj+efK478yB5asbsMtiu/K6qk6DRzMfXcn
23
- sTJJEIXPqD9bXE3dA/wgWqAgBFBWZFkvIzExm3JsXL3ED5esqRkh1ii+Yeq2Hd/k
24
- Q6gffQKBgEOiUeqjGjH0GZZF5m3Z2S3SqIJEkrZShWfGkADj0d567TyDBIZaFDlI
25
- fsWIijrkJqLxRykKHkSuC25zHekvwjvYZH0nJU+aHzMhOUp9EHOG8R0N2iRJB+fI
26
- IFWPH8APR0B/1dSC2bHdShgocZo4EbzjqHXBYXqtca1fwGwL1QdD
27
- -----END RSA PRIVATE KEY-----
@@ -1,30 +0,0 @@
1
- -----BEGIN RSA PRIVATE KEY-----
2
- Proc-Type: 4,ENCRYPTED
3
- DEK-Info: AES-128-CBC,52173193B53D1099E18A13BF0FB75922
4
-
5
- mZBvI9dsttoS0EHLKN5Th9noq7oaxoon3l5gSSaRNd2qwj74bWLQDIVLYP1loJrq
6
- EebaE9IVXUAxULws/ZHA5DwdLOekGfppeyClyNxy5aZk3cnzv5mpue+LhuXryaPx
7
- Uu5gHu3S1cL/OAOhqAFxfwQXDgdYLmsHYWwpr/Hqs2yDgCDcZBbiq7D/FA5/deA4
8
- V71OH9Ig/5gt8xshuo6ZRrqgiTI5gyml2xXE633/XpYK4wFez2EaJFcziVcmxFYl
9
- 19UfoTCLZiuNE6y4VgyDpRQlb/xn6robuRDhWg6ab0rKEo3FG8pbQv1n/OwFyR0s
10
- 1P4ENRygWXDkURTGwfOsduvC9io2NiQISupSrKyOb2SySwUvqXWjjROKoG5rln2i
11
- HDLXQqNJ7klmFmh90j/hPE3IaIJQZpalBPwHqPrmUCwW3clUZF6YVIUbSmeDpX2/
12
- t8jeKtttwb04TqVPVoT1/ufBbj+CsO4YmrOQhXmQWvPFJMKqmhk7yhfE9xmfTU2j
13
- 2NEzpo3icz58IQekrN5WkNLoiRHGcbVzXhaMKIg4e9QqSIatBNkQ/OsM2wgElaiX
14
- BxdMuhunb4C236U0g0q0YEGbvpUZXScDkI0/eEBkmPcZLtb5GpBl0fruwBehh6ML
15
- b4y/de3qGGkEZVEErPLlPoELs26ptkZnqp4jrrg2RzIPrfcgH9Cww4kbCGrrflJA
16
- DTXfprj17AxPW4xxLYAPhndQfhE8knJdMTgFxE3Z7w0QiL6FgSjM1106w45Wde11
17
- E9w7/NmgbJlphEQwy5xpxE74f+cCIjx/9qbUIEUgpfMGGwSn6b6ZSu3IKLa/Twsj
18
- F4Vv9jjraagGKtC1cM+FsHq6fXQvSVRopMcwIX4ilD0BXMewNUVVfKFCtcSHXv3P
19
- lrIxbHZlnL9Xky8bNd/HD0nLRBJOMzCV3TfxKa7h0FhIrfgYEjlv+0Xj8n6ndHBR
20
- riqTyAUMYTQyxvLdTvqTsNKHNOTGmBljP68dRibhOwxIT5Dp8XPE06pmOPz+6ChZ
21
- 6lNzydTPU5HCpFWAm7ZkmFgFkf4Fw44OXb7zWq0p10Wht4shxQX+jZaBzg9iWwt2
22
- Q+arLuV7Z9ucqK/MtbTOrCtvoVZ/zWPx6v0ORhv9XKbLJVZUNRotguyyXfLtTSt5
23
- ifU8RQyqK3UjVcGfL4xfPLJ3RB5vU7yswcneO16W57N1PnLLEINY5r23kWxFDg65
24
- limd1LL7u4v+dJMcExUnBBCC+fttxtTC9VlmuHMh7D7I2bUfDSQUfFb5nAe1xqLm
25
- ycU+EN9bkyDQgEv5c1+Bi5fvenky6vbPCdDTX6S6IQ1pBzacuw31w994I35q/pZZ
26
- 7f0QEFoPVhLlMLeyxW8Yl4cC4YvN8asqgtveUY2+iNEtYCZduE8DtBkyaKIaISTw
27
- AfHumzs4QHA7hoOBTXjSO9ozfspmeUHS5jUFU/QDFvkE+DCvKu2fxDzK5rfcH9sy
28
- DcnyEJJScJQRar96yJHP/9Q8JcQHt/taU8t4yAecZ+qoYPG/q6mxFQsMeHjedJh0
29
- mxU//a1UHJrCLM1AfnxTkr8mB/LTZmoRh6KhwHPVQ1/H+MDCijBr7lqmsXNybwB4
30
- -----END RSA PRIVATE KEY-----
@@ -1 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tns="https://api.example.com/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Header xmlns:wsa="http://www.w3.org/2005/08/addressing"><wsa:Action>http://api.example.com/echo</wsa:Action><wsa:To>https://api.example.com</wsa:To><wsa:MessageID xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">urn:uuid:52d12080-5bec-0132-62fb-38f6b11526bf</wsa:MessageID></env:Header><env:Body xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="Body-69182b6fd3cdbaa69e00e0bca6c58f6aee1e0c27"><tns:echo>Example</tns:echo></env:Body></env:Envelope>
@@ -1,3 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soap:Header><oasis:Security xmlns:oasis="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
3
- <oasis:BinarySecurityToken ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" wsu:Id="uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1">MIIEZTCCA02gAwIBAgIJALaQmjuYuxpuMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAldXMRIwEAYDVQQIEwlXb3JsZHdpZGUxETAPBgNVBAcTCFhNTCBjaXR5MREwDwYDVQQKEwhTYXZvbi5yYjEhMB8GA1UECxMYQWthbWkgdGVzdGluZyBkZXBhcnRtZW50MRIwEAYDVQQDEwlBa2FtaSBHZW0wHhcNMTQwNjEwMDg1NjEzWhcNMjQwNjA3MDg1NjEzWjB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvjKxq8WnYOT7ymrSNmN95NFMXhLxdumQz0QniRURVQ1P2sOwxOw9mlFnMsdGwsTYUJ9TwwBvA82UAaHEp/mMlHVc0oIKBzMWXj3qK3paRpcooh9hVSGlnqGep+/mzpP9SgPeJRXUgewnnXYsdPkV3k+EFLP/ZwGKOu3lTf4eTNm+TfnW4jHQYg2DpXHXtfV/H2mlDl/p/oUSoUnD3rWrF8IDPTSpy/30KtiY9ijy4RhllbSxM5Y230rpvlty1qqlNI/g34thL15nFaU/aIWQ/KwiCqthldd3m92S9gQ+iY4YtJkxAFsVAWT8gF32pmCKeH5IMmihZqlno6pUG0pIHwIDAQABo4HlMIHiMB0GA1UdDgQWBBQxpPv3f9MSv1y+BoR07lNRWi78ODCBsgYDVR0jBIGqMIGngBQxpPv3f9MSv1y+BoR07lNRWi78OKGBg6SBgDB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtggkAtpCaO5i7Gm4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAZphue2C31+5SpoZiIQav3xtwfIt+PRtK0ZN0w2ZxR1LmbWS9jX4elvwE5B5Yyu4UmjyvXGA6j9s5PGedXMabpi9GWsaEfHRKsF/TrH0KauhPrAWTuc1UxMFM5zPc6LeWJ8ofaVIgg4S4UFnf/fnkc/BtMMDCIyb62HkRmV+FqOOD+LlkcT701VKty68ubCg9xKaLg7L4zZBPYJrt0iLY2LWKh4ABinxfA1DFEVw9PVIEQKopwkO1A10rrKbfZqALQg5egVQypfVJ7E0Nkq5VeT3d3u3ybnZw/ZprQR0uPm+Ap492itLMMUX3iyJkxteAfT+03ztKWEsmGMbZpzG7VA==</oasis:BinarySecurityToken><Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/><Reference URI="#_779bc0e70903ff79e62739956a11c7e3584a9012"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>8yHW2c0jdon+CADkxk47/gLo0ps=</DigestValue></Reference><Reference URI="#_747c942c134dd275275707f2cf63e8de7881d367"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>eRsb4CWXD17hl5exQvaZYDnOQOM=</DigestValue></Reference><Reference URI="#_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>1aznRVYGR81veFFG2lNU9WjUhDs=</DigestValue></Reference><Reference URI="#_1f546393fdadf04fd9afcf172658c78cfd1b735d"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>KXKU6ZFziN415Hd2K6WevzUihYs=</DigestValue></Reference><Reference URI="#_724554b8920321ee32020dac076be1f58d92d3c7"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>YrKqrE99N7hNGYEvrhifL/LaxKQ=</DigestValue></Reference><Reference URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>VevrJZBe3aVif18GuHIrSZz5my8=</DigestValue></Reference></SignedInfo><SignatureValue>NEJTWOxr2IdWOyV+b1XjRU1Koaa0OYDbz0MqErcqjEgLt3rgK2YyZpg2yMBB++YmlwhS2Gm/Iqnyv6U909hvF4Hg+9/kw/FiwqhavcW+/N9HZKo0vGww/rU4qcKrNdU/lETQhxfk5DpKAoAUWV6yGxnbP8GzTXWGtP4sfLlcFjfOkTnePEM7QLjJLk9l2YkvbmyaRClj3psYrh0Fo1G+LWZ7W8UpaPzoo8e+s2EkKDAbchWoQJp2vEIhLnRRWDMuweRpsURigjbIkJCKnawmZ8SG1nA68nYa9jTh6824XVepxbkvtvNzEFC6dmZAjwAWhADf1+7lpqUyml/wZyHWRw==</SignatureValue><KeyInfo><o:SecurityTokenReference><o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"/></o:SecurityTokenReference></KeyInfo></Signature></oasis:Security><wsa:Action wsu:Id="_779bc0e70903ff79e62739956a11c7e3584a9012">SomeAction</wsa:Action><wsa:To wsu:Id="_747c942c134dd275275707f2cf63e8de7881d367">https://strict.endpoint/path</wsa:To><wsa:ReplyTo wsu:Id="_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:MessageID wsu:Id="_1f546393fdadf04fd9afcf172658c78cfd1b735d">SRV-0f687bbd-62503e99-926a4d3c-5dde443c-dbf6d68f</wsa:MessageID></soap:Header><soap:Body wsu:Id="_724554b8920321ee32020dac076be1f58d92d3c7"><messageCode>code</messageCode><!-- Comments should be ignored during canonicalization --><message>message</message></soap:Body></soap:Envelope>
@@ -1,3 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soap:Header><oasis:Security xmlns:oasis="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
3
- <oasis:BinarySecurityToken ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" wsu:Id="uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1">MIIEZTCCA02gAwIBAgIJALaQmjuYuxpuMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAldXMRIwEAYDVQQIEwlXb3JsZHdpZGUxETAPBgNVBAcTCFhNTCBjaXR5MREwDwYDVQQKEwhTYXZvbi5yYjEhMB8GA1UECxMYQWthbWkgdGVzdGluZyBkZXBhcnRtZW50MRIwEAYDVQQDEwlBa2FtaSBHZW0wHhcNMTQwNjEwMDg1NjEzWhcNMjQwNjA3MDg1NjEzWjB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvjKxq8WnYOT7ymrSNmN95NFMXhLxdumQz0QniRURVQ1P2sOwxOw9mlFnMsdGwsTYUJ9TwwBvA82UAaHEp/mMlHVc0oIKBzMWXj3qK3paRpcooh9hVSGlnqGep+/mzpP9SgPeJRXUgewnnXYsdPkV3k+EFLP/ZwGKOu3lTf4eTNm+TfnW4jHQYg2DpXHXtfV/H2mlDl/p/oUSoUnD3rWrF8IDPTSpy/30KtiY9ijy4RhllbSxM5Y230rpvlty1qqlNI/g34thL15nFaU/aIWQ/KwiCqthldd3m92S9gQ+iY4YtJkxAFsVAWT8gF32pmCKeH5IMmihZqlno6pUG0pIHwIDAQABo4HlMIHiMB0GA1UdDgQWBBQxpPv3f9MSv1y+BoR07lNRWi78ODCBsgYDVR0jBIGqMIGngBQxpPv3f9MSv1y+BoR07lNRWi78OKGBg6SBgDB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtggkAtpCaO5i7Gm4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAZphue2C31+5SpoZiIQav3xtwfIt+PRtK0ZN0w2ZxR1LmbWS9jX4elvwE5B5Yyu4UmjyvXGA6j9s5PGedXMabpi9GWsaEfHRKsF/TrH0KauhPrAWTuc1UxMFM5zPc6LeWJ8ofaVIgg4S4UFnf/fnkc/BtMMDCIyb62HkRmV+FqOOD+LlkcT701VKty68ubCg9xKaLg7L4zZBPYJrt0iLY2LWKh4ABinxfA1DFEVw9PVIEQKopwkO1A10rrKbfZqALQg5egVQypfVJ7E0Nkq5VeT3d3u3ybnZw/ZprQR0uPm+Ap492itLMMUX3iyJkxteAfT+03ztKWEsmGMbZpzG7VA==</oasis:BinarySecurityToken><Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/><Reference URI="#_779bc0e70903ff79e62739956a11c7e3584a9012"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>8yHW2c0jdon+cADkxk47/gLo0ps=</DigestValue></Reference><Reference URI="#_747c942c134dd275275707f2cf63e8de7881d367"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>eRsb4CWXD17hl5exQvaZYDnOQOM=</DigestValue></Reference><Reference URI="#_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>1aznRVYGR81veFFG2lNU9WjUhDs=</DigestValue></Reference><Reference URI="#_1f546393fdadf04fd9afcf172658c78cfd1b735d"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>KXKU6ZFziN415Hd2K6WevzUihYs=</DigestValue></Reference><Reference URI="#_724554b8920321ee32020dac076be1f58d92d3c7"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>YrKqrE99N7hNGYEvrhifL/LaxKQ=</DigestValue></Reference><Reference URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>VevrJZBe3aVif18GuHIrSZz5my8=</DigestValue></Reference></SignedInfo><SignatureValue>NEJTWOxr2IdWOyV+b1XjRU1Koaa0OYDbz0MqErcqjEgLt3rgK2YyZpg2yMBB++YmlwhS2Gm/Iqnyv6U909hvF4Hg+9/kw/FiwqhavcW+/N9HZKo0vGww/rU4qcKrNdU/lETQhxfk5DpKAoAUWV6yGxnbP8GzTXWGtP4sfLlcFjfOkTnePEM7QLjJLk9l2YkvbmyaRClj3psYrh0Fo1G+LWZ7W8UpaPzoo8e+s2EkKDAbchWoQJp2vEIhLnRRWDMuweRpsURigjbIkJCKnawmZ8SG1nA68nYa9jTh6824XVepxbkvtvNzEFC6dmZAjwAWhADf1+7lpqUyml/wZyHWRw==</SignatureValue><KeyInfo><o:SecurityTokenReference><o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"/></o:SecurityTokenReference></KeyInfo></Signature></oasis:Security><wsa:Action wsu:Id="_779bc0e70903ff79e62739956a11c7e3584a9012">SomeAction</wsa:Action><wsa:To wsu:Id="_747c942c134dd275275707f2cf63e8de7881d367">https://strict.endpoint/path</wsa:To><wsa:ReplyTo wsu:Id="_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:MessageID wsu:Id="_1f546393fdadf04fd9afcf172658c78cfd1b735d">SRV-0f687bbd-62503e99-926a4d3c-5dde443c-dbf6d68f</wsa:MessageID></soap:Header><soap:Body wsu:Id="_724554b8920321ee32020dac076be1f58d92d3c7"><messageCode>code</messageCode><!-- Comments should be ignored during canonicalization --><message>fake_message</message></soap:Body></soap:Envelope>
@@ -1,3 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soap:Header unexpected="unexpected"><oasis:Security xmlns:oasis="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
3
- <oasis:BinarySecurityToken ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" wsu:Id="uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1">MIIEZTCCA02gAwIBAgIJALaQmjuYuxpuMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAldXMRIwEAYDVQQIEwlXb3JsZHdpZGUxETAPBgNVBAcTCFhNTCBjaXR5MREwDwYDVQQKEwhTYXZvbi5yYjEhMB8GA1UECxMYQWthbWkgdGVzdGluZyBkZXBhcnRtZW50MRIwEAYDVQQDEwlBa2FtaSBHZW0wHhcNMTQwNjEwMDg1NjEzWhcNMjQwNjA3MDg1NjEzWjB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvjKxq8WnYOT7ymrSNmN95NFMXhLxdumQz0QniRURVQ1P2sOwxOw9mlFnMsdGwsTYUJ9TwwBvA82UAaHEp/mMlHVc0oIKBzMWXj3qK3paRpcooh9hVSGlnqGep+/mzpP9SgPeJRXUgewnnXYsdPkV3k+EFLP/ZwGKOu3lTf4eTNm+TfnW4jHQYg2DpXHXtfV/H2mlDl/p/oUSoUnD3rWrF8IDPTSpy/30KtiY9ijy4RhllbSxM5Y230rpvlty1qqlNI/g34thL15nFaU/aIWQ/KwiCqthldd3m92S9gQ+iY4YtJkxAFsVAWT8gF32pmCKeH5IMmihZqlno6pUG0pIHwIDAQABo4HlMIHiMB0GA1UdDgQWBBQxpPv3f9MSv1y+BoR07lNRWi78ODCBsgYDVR0jBIGqMIGngBQxpPv3f9MSv1y+BoR07lNRWi78OKGBg6SBgDB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtggkAtpCaO5i7Gm4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAZphue2C31+5SpoZiIQav3xtwfIt+PRtK0ZN0w2ZxR1LmbWS9jX4elvwE5B5Yyu4UmjyvXGA6j9s5PGedXMabpi9GWsaEfHRKsF/TrH0KauhPrAWTuc1UxMFM5zPc6LeWJ8ofaVIgg4S4UFnf/fnkc/BtMMDCIyb62HkRmV+FqOOD+LlkcT701VKty68ubCg9xKaLg7L4zZBPYJrt0iLY2LWKh4ABinxfA1DFEVw9PVIEQKopwkO1A10rrKbfZqALQg5egVQypfVJ7E0Nkq5VeT3d3u3ybnZw/ZprQR0uPm+Ap492itLMMUX3iyJkxteAfT+03ztKWEsmGMbZpzG7VA==</oasis:BinarySecurityToken><Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/><Reference URI="#_779bc0e70903ff79e62739956a11c7e3584a9012"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>8yHW2c0jdon+cADkxk47/gLo0ps=</DigestValue></Reference><Reference URI="#_747c942c134dd275275707f2cf63e8de7881d367"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>eRsb4CWXD17hl5exQvaZYDnOQOM=</DigestValue></Reference><Reference URI="#_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>1aznRVYGR81veFFG2lNU9WjUhDs=</DigestValue></Reference><Reference URI="#_1f546393fdadf04fd9afcf172658c78cfd1b735d"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>KXKU6ZFziN415Hd2K6WevzUihYs=</DigestValue></Reference><Reference URI="#_724554b8920321ee32020dac076be1f58d92d3c7"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>YrKqrE99N7hNGYEvrhifL/LaxKQ=</DigestValue></Reference><Reference URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>VevrJZBe3aVif18GuHIrSZz5my8=</DigestValue></Reference></SignedInfo><SignatureValue>NYETWOxr2IdWOyV+b1XjRU1Koaa0OYDbz0MqErcqjEgLt3rgK2YyZpg2yMBB++YmlwhS2Gm/Iqnyv6U909hvF4Hg+9/kw/FiwqhavcW+/N9HZKo0vGww/rU4qcKrNdU/lETQhxfk5DpKAoAUWV6yGxnbP8GzTXWGtP4sfLlcFjfOkTnePEM7QLjJLk9l2YkvbmyaRClj3psYrh0Fo1G+LWZ7W8UpaPzoo8e+s2EkKDAbchWoQJp2vEIhLnRRWDMuweRpsURigjbIkJCKnawmZ8SG1nA68nYa9jTh6824XVepxbkvtvNzEFC6dmZAjwAWhADf1+7lpqUyml/wZyHWRw==</SignatureValue><KeyInfo><o:SecurityTokenReference><o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"/></o:SecurityTokenReference></KeyInfo></Signature></oasis:Security><wsa:Action wsu:Id="_779bc0e70903ff79e62739956a11c7e3584a9012">SomeAction</wsa:Action><wsa:To wsu:Id="_747c942c134dd275275707f2cf63e8de7881d367">https://strict.endpoint/path</wsa:To><wsa:ReplyTo wsu:Id="_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:MessageID wsu:Id="_1f546393fdadf04fd9afcf172658c78cfd1b735d">SRV-0f687bbd-62503e99-926a4d3c-5dde443c-dbf6d68f</wsa:MessageID></soap:Header><soap:Body wsu:Id="_724554b8920321ee32020dac076be1f58d92d3c7"><messageCode>code</messageCode><!-- Comments should be ignored during canonicalization --><message>message</message></soap:Body></soap:Envelope>
@@ -1,3 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soap:Header><oasis:Security xmlns:oasis="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
3
- <oasis:BinarySecurityToken ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" wsu:Id="uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1">MIIEZTCCA02gAwIBAgIJALaQmjuYuxpuMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAldXMRIwEAYDVQQIEwlXb3JsZHdpZGUxETAPBgNVBAcTCFhNTCBjaXR5MREwDwYDVQQKEwhTYXZvbi5yYjEhMB8GA1UECxMYQWthbWkgdGVzdGluZyBkZXBhcnRtZW50MRIwEAYDVQQDEwlBa2FtaSBHZW0wHhcNMTQwNjEwMDg1NjEzWhcNMjQwNjA3MDg1NjEzWjB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvjKxq8WnYOT7ymrSNmN95NFMXhLxdumQz0QniRURVQ1P2sOwxOw9mlFnMsdGwsTYUJ9TwwBvA82UAaHEp/mMlHVc0oIKBzMWXj3qK3paRpcooh9hVSGlnqGep+/mzpP9SgPeJRXUgewnnXYsdPkV3k+EFLP/ZwGKOu3lTf4eTNm+TfnW4jHQYg2DpXHXtfV/H2mlDl/p/oUSoUnD3rWrF8IDPTSpy/30KtiY9ijy4RhllbSxM5Y230rpvlty1qqlNI/g34thL15nFaU/aIWQ/KwiCqthldd3m92S9gQ+iY4YtJkxAFsVAWT8gF32pmCKeH5IMmihZqlno6pUG0pIHwIDAQABo4HlMIHiMB0GA1UdDgQWBBQxpPv3f9MSv1y+BoR07lNRWi78ODCBsgYDVR0jBIGqMIGngBQxpPv3f9MSv1y+BoR07lNRWi78OKGBg6SBgDB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtggkAtpCaO5i7Gm4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAZphue2C31+5SpoZiIQav3xtwfIt+PRtK0ZN0w2ZxR1LmbWS9jX4elvwE5B5Yyu4UmjyvXGA6j9s5PGedXMabpi9GWsaEfHRKsF/TrH0KauhPrAWTuc1UxMFM5zPc6LeWJ8ofaVIgg4S4UFnf/fnkc/BtMMDCIyb62HkRmV+FqOOD+LlkcT701VKty68ubCg9xKaLg7L4zZBPYJrt0iLY2LWKh4ABinxfA1DFEVw9PVIEQKopwkO1A10rrKbfZqALQg5egVQypfVJ7E0Nkq5VeT3d3u3ybnZw/ZprQR0uPm+Ap492itLMMUX3iyJkxteAfT+03ztKWEsmGMbZpzG7VA==</oasis:BinarySecurityToken><Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/><Reference URI="#_779bc0e70903ff79e62739956a11c7e3584a9012"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>8yHW2c0jdon+cADkxk47/gLo0ps=</DigestValue></Reference><Reference URI="#_747c942c134dd275275707f2cf63e8de7881d367"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>eRsb4CWXD17hl5exQvaZYDnOQOM=</DigestValue></Reference><Reference URI="#_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>1aznRVYGR81veFFG2lNU9WjUhDs=</DigestValue></Reference><Reference URI="#_1f546393fdadf04fd9afcf172658c78cfd1b735d"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>KXKU6ZFziN415Hd2K6WevzUihYs=</DigestValue></Reference><Reference URI="#_724554b8920321ee32020dac076be1f58d92d3c7"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>YrKqrE99N7hNGYEvrhifL/LaxKQ=</DigestValue></Reference><Reference URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>VevrJZBe3aVif18GuHIrSZz5my8=</DigestValue></Reference></SignedInfo><SignatureValue>NEJTWOxr2IdWOyV+b1XjRU1Koaa0OYDbz0MqErcqjEgLt3rgK2YyZpg2yMBB++YmlwhS2Gm/Iqnyv6U909hvF4Hg+9/kw/FiwqhavcW+/N9HZKo0vGww/rU4qcKrNdU/lETQhxfk5DpKAoAUWV6yGxnbP8GzTXWGtP4sfLlcFjfOkTnePEM7QLjJLk9l2YkvbmyaRClj3psYrh0Fo1G+LWZ7W8UpaPzoo8e+s2EkKDAbchWoQJp2vEIhLnRRWDMuweRpsURigjbIkJCKnawmZ8SG1nA68nYa9jTh6824XVepxbkvtvNzEFC6dmZAjwAWhADf1+7lpqUyml/wZyHWRw==</SignatureValue><KeyInfo><o:SecurityTokenReference><o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"/></o:SecurityTokenReference></KeyInfo></Signature></oasis:Security><wsa:Action wsu:Id="_779bc0e70903ff79e62739956a11c7e3584a9012">SomeAction</wsa:Action><wsa:To wsu:Id="_747c942c134dd275275707f2cf63e8de7881d367">https://strict.endpoint/path</wsa:To><wsa:ReplyTo wsu:Id="_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:MessageID wsu:Id="_1f546393fdadf04fd9afcf172658c78cfd1b735d">SRV-0f687bbd-62503e99-926a4d3c-5dde443c-dbf6d68f</wsa:MessageID></soap:Header><soap:Body wsu:Id="_724554b8920321ee32020dac076be1f58d92d3c7"><messageCode>code</messageCode><!-- Comments should be ignored during canonicalization --><message>message</message></soap:Body></soap:Envelope>
@@ -1,3 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <bzzz:Envelope xmlns:bzzz="http://www.w3.org/2003/05/soap-envelope" xmlns:argh="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:blam="http://www.w3.org/2005/08/addressing"><bzzz:Header><pfff:Security xmlns:pfff="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
3
- <pfff:BinarySecurityToken ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" argh:Id="uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1">MIIEZTCCA02gAwIBAgIJALaQmjuYuxpuMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAldXMRIwEAYDVQQIEwlXb3JsZHdpZGUxETAPBgNVBAcTCFhNTCBjaXR5MREwDwYDVQQKEwhTYXZvbi5yYjEhMB8GA1UECxMYQWthbWkgdGVzdGluZyBkZXBhcnRtZW50MRIwEAYDVQQDEwlBa2FtaSBHZW0wHhcNMTQwNjEwMDg1NjEzWhcNMjQwNjA3MDg1NjEzWjB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvjKxq8WnYOT7ymrSNmN95NFMXhLxdumQz0QniRURVQ1P2sOwxOw9mlFnMsdGwsTYUJ9TwwBvA82UAaHEp/mMlHVc0oIKBzMWXj3qK3paRpcooh9hVSGlnqGep+/mzpP9SgPeJRXUgewnnXYsdPkV3k+EFLP/ZwGKOu3lTf4eTNm+TfnW4jHQYg2DpXHXtfV/H2mlDl/p/oUSoUnD3rWrF8IDPTSpy/30KtiY9ijy4RhllbSxM5Y230rpvlty1qqlNI/g34thL15nFaU/aIWQ/KwiCqthldd3m92S9gQ+iY4YtJkxAFsVAWT8gF32pmCKeH5IMmihZqlno6pUG0pIHwIDAQABo4HlMIHiMB0GA1UdDgQWBBQxpPv3f9MSv1y+BoR07lNRWi78ODCBsgYDVR0jBIGqMIGngBQxpPv3f9MSv1y+BoR07lNRWi78OKGBg6SBgDB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtggkAtpCaO5i7Gm4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAZphue2C31+5SpoZiIQav3xtwfIt+PRtK0ZN0w2ZxR1LmbWS9jX4elvwE5B5Yyu4UmjyvXGA6j9s5PGedXMabpi9GWsaEfHRKsF/TrH0KauhPrAWTuc1UxMFM5zPc6LeWJ8ofaVIgg4S4UFnf/fnkc/BtMMDCIyb62HkRmV+FqOOD+LlkcT701VKty68ubCg9xKaLg7L4zZBPYJrt0iLY2LWKh4ABinxfA1DFEVw9PVIEQKopwkO1A10rrKbfZqALQg5egVQypfVJ7E0Nkq5VeT3d3u3ybnZw/ZprQR0uPm+Ap492itLMMUX3iyJkxteAfT+03ztKWEsmGMbZpzG7VA==</pfff:BinarySecurityToken><Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/><Reference URI="#_32e8273d0122bb59bb8369e2cd2c3bc4d9f0fd94"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>/qQ8ucFN9UNj/PeYzpqdBaqfbDE=</DigestValue></Reference><Reference URI="#_ae66d576c72c371b63c5cb64f506a7cfbb6523b1"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>zwhy5nIdDYQw+PAtp5xJF37AwKY=</DigestValue></Reference><Reference URI="#_1f38c96249928ef39807ddc3ae7810691e080b3d"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>0ka0+fILJ/K0l+QquJ7oGI5BZ/g=</DigestValue></Reference><Reference URI="#_10cdeece6969bac5d9e6ac8d7d40df9c604781a4"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>JukA7+7mBcqtplGntFoHJ+Fk+jQ=</DigestValue></Reference><Reference URI="#_35c546657feb5dc1cf4474488f7b5d5a991f0604"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>fCQv9hvbeyNBGBrqbJ/A166hSB8=</DigestValue></Reference><Reference URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>5uVUuwPoZPnXoWjo5czBnYIywcA=</DigestValue></Reference></SignedInfo><SignatureValue>BXSWTruDmrWJYwmqqkMDUquD+Q39mOLJ2d2XZ31o/jU0jdaWg4fGwTnAYsIELbDdLBbFj5R9gsMSzw+nprglOtuMyheYuO4EZbwJijeR2n5hoaYAqQdjA4n8tFXiKo+puiKvAsWUDmVqVqSLOUtKCTCxL+NjJavgUjVKwmK3dRgMKcH4RZHTM/qgMT42N7DvSOLbuBbW/hblz74pcc86vDMrMOLrC3z7F18vOFTUpoScZuFf14wes6G+FoS7un7EvLV4Yvjq15VUh7Tczv2qzzkWfUY0So+SujGo+JivULYjJ9UJB+sL6SOrazgYNLXyz1eHHcfraUKHKJVOp4naqg==</SignatureValue><KeyInfo><o:SecurityTokenReference><o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"/></o:SecurityTokenReference></KeyInfo></Signature></pfff:Security><blam:Action argh:Id="_32e8273d0122bb59bb8369e2cd2c3bc4d9f0fd94">SomeAction</blam:Action><blam:To argh:Id="_ae66d576c72c371b63c5cb64f506a7cfbb6523b1">https://strict.endpoint/path</blam:To><blam:ReplyTo argh:Id="_1f38c96249928ef39807ddc3ae7810691e080b3d"><blam:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</blam:Address></blam:ReplyTo><blam:MessageID argh:Id="_10cdeece6969bac5d9e6ac8d7d40df9c604781a4">SRV-0f687bbd-62503e99-926a4d3c-5dde443c-dbf6d68f</blam:MessageID></bzzz:Header><bzzz:Body argh:Id="_35c546657feb5dc1cf4474488f7b5d5a991f0604"><ws:messageCode>code</ws:messageCode><!-- Comments should be ignored during canonicalization --><ws:message>message</ws:message></bzzz:Body></bzzz:Envelope>
@@ -1,3 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soap:Header><oasis:Security xmlns:oasis="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
3
- <oasis:BinarySecurityToken ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" wsu:Id="uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1">MIIEZTCCA02gAwIBAgIJALaQmjuYuxpuMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAldXMRIwEAYDVQQIEwlXb3JsZHdpZGUxETAPBgNVBAcTCFhNTCBjaXR5MREwDwYDVQQKEwhTYXZvbi5yYjEhMB8GA1UECxMYQWthbWkgdGVzdGluZyBkZXBhcnRtZW50MRIwEAYDVQQDEwlBa2FtaSBHZW0wHhcNMTQwNjEwMDg1NjEzWhcNMjQwNjA3MDg1NjEzWjB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvjKxq8WnYOT7ymrSNmN95NFMXhLxdumQz0QniRURVQ1P2sOwxOw9mlFnMsdGwsTYUJ9TwwBvA82UAaHEp/mMlHVc0oIKBzMWXj3qK3paRpcooh9hVSGlnqGep+/mzpP9SgPeJRXUgewnnXYsdPkV3k+EFLP/ZwGKOu3lTf4eTNm+TfnW4jHQYg2DpXHXtfV/H2mlDl/p/oUSoUnD3rWrF8IDPTSpy/30KtiY9ijy4RhllbSxM5Y230rpvlty1qqlNI/g34thL15nFaU/aIWQ/KwiCqthldd3m92S9gQ+iY4YtJkxAFsVAWT8gF32pmCKeH5IMmihZqlno6pUG0pIHwIDAQABo4HlMIHiMB0GA1UdDgQWBBQxpPv3f9MSv1y+BoR07lNRWi78ODCBsgYDVR0jBIGqMIGngBQxpPv3f9MSv1y+BoR07lNRWi78OKGBg6SBgDB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtggkAtpCaO5i7Gm4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAZphue2C31+5SpoZiIQav3xtwfIt+PRtK0ZN0w2ZxR1LmbWS9jX4elvwE5B5Yyu4UmjyvXGA6j9s5PGedXMabpi9GWsaEfHRKsF/TrH0KauhPrAWTuc1UxMFM5zPc6LeWJ8ofaVIgg4S4UFnf/fnkc/BtMMDCIyb62HkRmV+FqOOD+LlkcT701VKty68ubCg9xKaLg7L4zZBPYJrt0iLY2LWKh4ABinxfA1DFEVw9PVIEQKopwkO1A10rrKbfZqALQg5egVQypfVJ7E0Nkq5VeT3d3u3ybnZw/ZprQR0uPm+Ap492itLMMUX3iyJkxteAfT+03ztKWEsmGMbZpzG7VA==</oasis:BinarySecurityToken><Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/><Reference URI="#_779bc0e70903ff79e62739956a11c7e3584a9012"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr3411"/><DigestValue>Ua/7KXhpaT9/zNLttYl7kWc6zxrssuvI9FopvNyl/hs=</DigestValue></Reference><Reference URI="#_747c942c134dd275275707f2cf63e8de7881d367"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr3411"/><DigestValue>0tk2wqp+ybAP16lhi/7Rrvl3B7+/sOLDmX1jev5ZMdM=</DigestValue></Reference><Reference URI="#_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr3411"/><DigestValue>WI8rWnflY+PhigG807yZijyET1K8iBLMdX4KOgWoEjU=</DigestValue></Reference><Reference URI="#_1f546393fdadf04fd9afcf172658c78cfd1b735d"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr3411"/><DigestValue>rvdJaIekkEvD7QImJX7nMevmVQN5B3xW5ZExpyoMdN0=</DigestValue></Reference><Reference URI="#_724554b8920321ee32020dac076be1f58d92d3c7"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr3411"/><DigestValue>3OkHjVwY6I/pj8hKhOzKfPOdBjAFcjCzM6IsRJpbQEU=</DigestValue></Reference><Reference URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr3411"/><DigestValue>zTmupwEL0lMuPyQlc9qx9+R+SOuIA8zwAqOA0qnXI1g=</DigestValue></Reference></SignedInfo><SignatureValue>TFqPZHrnQuN8QdquaMSG4uKkijaXmsNa1bikQ5z5JTrfGsOHaAZc/+a/jIo5Gd+m7eF1O22rtk8lm1MPmDaRXBc71uQ5yJ+qefCShfYua/gb9y24Cowoh6ONf+WymVJ1fi/H2DjmZ1T1lRq3KoqTlv7tk34t1Ta2hjFv0buBO039woXfNflbFNsfvzlTRgMeZiDC5tMGe7tmlAdll3eD/R1lGCMgRHY6KraSeksWwNVPewDyqc26nv7/R6a4VJ5E7UvDAgSi/pvy37QROiFSt59ONSM1PPaGE18U0A6Q6kH4o6JM6+bqa5jKCThLqf3yyDRKha5Co+A7s/OerJuA0A==</SignatureValue><KeyInfo><o:SecurityTokenReference><o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"/></o:SecurityTokenReference></KeyInfo></Signature></oasis:Security><wsa:Action wsu:Id="_779bc0e70903ff79e62739956a11c7e3584a9012">SomeAction</wsa:Action><wsa:To wsu:Id="_747c942c134dd275275707f2cf63e8de7881d367">https://strict.endpoint/path</wsa:To><wsa:ReplyTo wsu:Id="_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:MessageID wsu:Id="_1f546393fdadf04fd9afcf172658c78cfd1b735d">SRV-0f687bbd-62503e99-926a4d3c-5dde443c-dbf6d68f</wsa:MessageID></soap:Header><soap:Body wsu:Id="_724554b8920321ee32020dac076be1f58d92d3c7"><messageCode>code</messageCode><!-- Comments should be ignored during canonicalization --><message>message</message></soap:Body></soap:Envelope>
@@ -1,3 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soap:Header><oasis:Security xmlns:oasis="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
3
- <oasis:BinarySecurityToken ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" wsu:Id="uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1">MIIEZTCCA02gAwIBAgIJALaQmjuYuxpuMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAldXMRIwEAYDVQQIEwlXb3JsZHdpZGUxETAPBgNVBAcTCFhNTCBjaXR5MREwDwYDVQQKEwhTYXZvbi5yYjEhMB8GA1UECxMYQWthbWkgdGVzdGluZyBkZXBhcnRtZW50MRIwEAYDVQQDEwlBa2FtaSBHZW0wHhcNMTQwNjEwMDg1NjEzWhcNMjQwNjA3MDg1NjEzWjB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvjKxq8WnYOT7ymrSNmN95NFMXhLxdumQz0QniRURVQ1P2sOwxOw9mlFnMsdGwsTYUJ9TwwBvA82UAaHEp/mMlHVc0oIKBzMWXj3qK3paRpcooh9hVSGlnqGep+/mzpP9SgPeJRXUgewnnXYsdPkV3k+EFLP/ZwGKOu3lTf4eTNm+TfnW4jHQYg2DpXHXtfV/H2mlDl/p/oUSoUnD3rWrF8IDPTSpy/30KtiY9ijy4RhllbSxM5Y230rpvlty1qqlNI/g34thL15nFaU/aIWQ/KwiCqthldd3m92S9gQ+iY4YtJkxAFsVAWT8gF32pmCKeH5IMmihZqlno6pUG0pIHwIDAQABo4HlMIHiMB0GA1UdDgQWBBQxpPv3f9MSv1y+BoR07lNRWi78ODCBsgYDVR0jBIGqMIGngBQxpPv3f9MSv1y+BoR07lNRWi78OKGBg6SBgDB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtggkAtpCaO5i7Gm4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAZphue2C31+5SpoZiIQav3xtwfIt+PRtK0ZN0w2ZxR1LmbWS9jX4elvwE5B5Yyu4UmjyvXGA6j9s5PGedXMabpi9GWsaEfHRKsF/TrH0KauhPrAWTuc1UxMFM5zPc6LeWJ8ofaVIgg4S4UFnf/fnkc/BtMMDCIyb62HkRmV+FqOOD+LlkcT701VKty68ubCg9xKaLg7L4zZBPYJrt0iLY2LWKh4ABinxfA1DFEVw9PVIEQKopwkO1A10rrKbfZqALQg5egVQypfVJ7E0Nkq5VeT3d3u3ybnZw/ZprQR0uPm+Ap492itLMMUX3iyJkxteAfT+03ztKWEsmGMbZpzG7VA==</oasis:BinarySecurityToken><Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/><SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/><Reference URI="#_779bc0e70903ff79e62739956a11c7e3584a9012"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/><DigestValue>5kMYzrEfrLHK1wquUdWVF9ZxWLWh1p3AUi55JEcEpwA=</DigestValue></Reference><Reference URI="#_747c942c134dd275275707f2cf63e8de7881d367"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/><DigestValue>kXFE39LW1LZapv8qvvwDI1aAYGvpIyJJt5tfwFHpWLM=</DigestValue></Reference><Reference URI="#_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/><DigestValue>bd5OjPsMDJpwQV1Y3F4fFd3aAdV73cBYkpqu/R/ywPs=</DigestValue></Reference><Reference URI="#_1f546393fdadf04fd9afcf172658c78cfd1b735d"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/><DigestValue>EsMzDJn7KGXHPwFqTGiaa8E17Wp67tFomVdODtNmKQ4=</DigestValue></Reference><Reference URI="#_724554b8920321ee32020dac076be1f58d92d3c7"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/><DigestValue>5gEEiIwYC1zy99DExX+YRXD1Sv8+xVgGPeyDQjMPddU=</DigestValue></Reference><Reference URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"><Transforms><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/><DigestValue>U+JTJP1qMZnzGV7bhlQ7y4D/aeYO2ajghskz4mjFNwI=</DigestValue></Reference></SignedInfo><SignatureValue>Fh+YPbR+D1DQcEvdlYn2krKGI445VKRW75mNtIm/n10k0QoAwL+BQ49cnc81UTzZBB1bs22Y6wDGFYwLXMhGa3YioGoyo0IqnCacIDuaNn1OjUVWGDheEl8wTvKIHPDMEhkb6XFLXokLjv/IXdoNq7g7sbhoPd8Qcx8CKYU3aDq1oyiCrtPbowDf4YEBsKxMkZbR4jXzjUmhNI3A82bzTweQLrkxgB/DmtyPHLXF/jitdzKqpKM/K7+4BVWuuKcOFIKYcN3gn4lTXPCVXfCiwhVhIogW+mmC5mjmglKP80hSUBn5csKLbFB8pHtBDcfO9PPV1NoaUtgOwdWGEKqI3w==</SignatureValue><KeyInfo><o:SecurityTokenReference><o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"/></o:SecurityTokenReference></KeyInfo></Signature></oasis:Security><wsa:Action wsu:Id="_779bc0e70903ff79e62739956a11c7e3584a9012">SomeAction</wsa:Action><wsa:To wsu:Id="_747c942c134dd275275707f2cf63e8de7881d367">https://strict.endpoint/path</wsa:To><wsa:ReplyTo wsu:Id="_2dc10b4daca971ef4ddb482338ebd7ba30112e2a"><wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:MessageID wsu:Id="_1f546393fdadf04fd9afcf172658c78cfd1b735d">SRV-0f687bbd-62503e99-926a4d3c-5dde443c-dbf6d68f</wsa:MessageID></soap:Header><soap:Body wsu:Id="_724554b8920321ee32020dac076be1f58d92d3c7"><messageCode>code</messageCode><!-- Comments should be ignored during canonicalization --><message>message</message></soap:Body></soap:Envelope>
@@ -1,75 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa="http://www.w3.org/2005/08/addressing">
3
- <soap:Header>
4
- <oasis:Security xmlns:oasis="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
5
- <oasis:BinarySecurityToken ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" wsu:Id="uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1">MIIEZTCCA02gAwIBAgIJALaQmjuYuxpuMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAldXMRIwEAYDVQQIEwlXb3JsZHdpZGUxETAPBgNVBAcTCFhNTCBjaXR5MREwDwYDVQQKEwhTYXZvbi5yYjEhMB8GA1UECxMYQWthbWkgdGVzdGluZyBkZXBhcnRtZW50MRIwEAYDVQQDEwlBa2FtaSBHZW0wHhcNMTQwNjEwMDg1NjEzWhcNMjQwNjA3MDg1NjEzWjB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvjKxq8WnYOT7ymrSNmN95NFMXhLxdumQz0QniRURVQ1P2sOwxOw9mlFnMsdGwsTYUJ9TwwBvA82UAaHEp/mMlHVc0oIKBzMWXj3qK3paRpcooh9hVSGlnqGep+/mzpP9SgPeJRXUgewnnXYsdPkV3k+EFLP/ZwGKOu3lTf4eTNm+TfnW4jHQYg2DpXHXtfV/H2mlDl/p/oUSoUnD3rWrF8IDPTSpy/30KtiY9ijy4RhllbSxM5Y230rpvlty1qqlNI/g34thL15nFaU/aIWQ/KwiCqthldd3m92S9gQ+iY4YtJkxAFsVAWT8gF32pmCKeH5IMmihZqlno6pUG0pIHwIDAQABo4HlMIHiMB0GA1UdDgQWBBQxpPv3f9MSv1y+BoR07lNRWi78ODCBsgYDVR0jBIGqMIGngBQxpPv3f9MSv1y+BoR07lNRWi78OKGBg6SBgDB+MQswCQYDVQQGEwJXVzESMBAGA1UECBMJV29ybGR3aWRlMREwDwYDVQQHEwhYTUwgY2l0eTERMA8GA1UEChMIU2F2b24ucmIxITAfBgNVBAsTGEFrYW1pIHRlc3RpbmcgZGVwYXJ0bWVudDESMBAGA1UEAxMJQWthbWkgR2VtggkAtpCaO5i7Gm4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAZphue2C31+5SpoZiIQav3xtwfIt+PRtK0ZN0w2ZxR1LmbWS9jX4elvwE5B5Yyu4UmjyvXGA6j9s5PGedXMabpi9GWsaEfHRKsF/TrH0KauhPrAWTuc1UxMFM5zPc6LeWJ8ofaVIgg4S4UFnf/fnkc/BtMMDCIyb62HkRmV+FqOOD+LlkcT701VKty68ubCg9xKaLg7L4zZBPYJrt0iLY2LWKh4ABinxfA1DFEVw9PVIEQKopwkO1A10rrKbfZqALQg5egVQypfVJ7E0Nkq5VeT3d3u3ybnZw/ZprQR0uPm+Ap492itLMMUX3iyJkxteAfT+03ztKWEsmGMbZpzG7VA==</oasis:BinarySecurityToken>
6
- <Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
7
- <SignedInfo>
8
- <CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
9
- <SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
10
- <Reference URI="#_779bc0e70903ff79e62739956a11c7e3584a9012">
11
- <Transforms>
12
- <Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
13
- </Transforms>
14
- <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
15
- <DigestValue>8yHW2c0jdon+cADkxk47/gLo0ps=</DigestValue>
16
- </Reference>
17
- <Reference URI="#_747c942c134dd275275707f2cf63e8de7881d367">
18
- <Transforms>
19
- <Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
20
- </Transforms>
21
- <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
22
- <DigestValue>eRsb4CWXD17hl5exQvaZYDnOQOM=</DigestValue>
23
- </Reference>
24
- <Reference URI="#_2dc10b4daca971ef4ddb482338ebd7ba30112e2a">
25
- <Transforms>
26
- <Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
27
- </Transforms>
28
- <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
29
- <DigestValue>1aznRVYGR81veFFG2lNU9WjUhDs=</DigestValue>
30
- </Reference>
31
- <Reference URI="#_1f546393fdadf04fd9afcf172658c78cfd1b735d">
32
- <Transforms>
33
- <Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
34
- </Transforms>
35
- <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
36
- <DigestValue>KXKU6ZFziN415Hd2K6WevzUihYs=</DigestValue>
37
- </Reference>
38
- <Reference URI="#_724554b8920321ee32020dac076be1f58d92d3c7">
39
- <Transforms>
40
- <Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
41
- </Transforms>
42
- <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
43
- <DigestValue>YrKqrE99N7hNGYEvrhifL/LaxKQ=</DigestValue>
44
- </Reference>
45
- <Reference URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1">
46
- <Transforms>
47
- <Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
48
- </Transforms>
49
- <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
50
- <DigestValue>VevrJZBe3aVif18GuHIrSZz5my8=</DigestValue>
51
- </Reference>
52
- </SignedInfo>
53
- <SignatureValue>
54
- NEJTWOxr2IdWOyV+b1XjRU1Koaa0OYDbz0MqErcqjEgLt3rgK2YyZpg2yMBB++YmlwhS2Gm/Iqnyv6U909hvF4Hg+9/kw/FiwqhavcW+/N9HZKo0vGww/rU4qcKrNdU/lETQhxfk5DpKAoAUWV6yGxnbP8GzTXWGtP4sfLlcFjfOkTnePEM7QLjJLk9l2YkvbmyaRClj3psYrh0Fo1G+LWZ7W8UpaPzoo8e+s2EkKDAbchWoQJp2vEIhLnRRWDMuweRpsURigjbIkJCKnawmZ8SG1nA68nYa9jTh6824XVepxbkvtvNzEFC6dmZAjwAWhADf1+7lpqUyml/wZyHWRw==
55
- </SignatureValue>
56
- <KeyInfo>
57
- <o:SecurityTokenReference>
58
- <o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-639b8970-7644-4f9e-9bc4-9c2e367808fc-1"/>
59
- </o:SecurityTokenReference>
60
- </KeyInfo>
61
- </Signature>
62
- </oasis:Security>
63
- <wsa:Action wsu:Id="_779bc0e70903ff79e62739956a11c7e3584a9012">SomeAction</wsa:Action>
64
- <wsa:To wsu:Id="_747c942c134dd275275707f2cf63e8de7881d367">https://strict.endpoint/path</wsa:To>
65
- <wsa:ReplyTo wsu:Id="_2dc10b4daca971ef4ddb482338ebd7ba30112e2a">
66
- <wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address>
67
- </wsa:ReplyTo>
68
- <wsa:MessageID wsu:Id="_1f546393fdadf04fd9afcf172658c78cfd1b735d">SRV-0f687bbd-62503e99-926a4d3c-5dde443c-dbf6d68f</wsa:MessageID>
69
- </soap:Header>
70
- <soap:Body wsu:Id="_724554b8920321ee32020dac076be1f58d92d3c7">
71
- <messageCode>code</messageCode>
72
- <!-- Comments should be ignored during canonicalization -->
73
- <message>message</message>
74
- </soap:Body>
75
- </soap:Envelope>
data/spec/spec_helper.rb DELETED
@@ -1,6 +0,0 @@
1
- require "bundler"
2
- Bundler.require :default, :development
3
-
4
- def fixture(local_path)
5
- File.read(File.join(File.dirname(__FILE__), 'fixtures', local_path))
6
- end