[DRE-commits] [ruby-saml] 01/04: Merge tag 'upstream/1.0.0'

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Thu Sep 24 14:48:23 UTC 2015


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository ruby-saml.

commit 7b106db1ef46ef85b5d42788d6e1b8dafc01d2cd
Merge: 7fb76d4 5b8a165
Author: Praveen Arimbrathodiyil <praveen at debian.org>
Date:   Thu Sep 24 20:10:06 2015 +0530

    Merge tag 'upstream/1.0.0'
    
    Upstream version 1.0.0
    
    # gpg: Signature made Thursday 24 September 2015 08:10:01 PM IST using RSA key ID 4512C22A
    # gpg: Good signature from "Praveen Arimbrathodiyil (piratepin) <praveen at debian.org>"
    # gpg:                 aka "Pirate Praveen (pirates.org.in) <praveen at onenetbeyond.org>"
    # gpg:                 aka "Pirate Praveen (piratesin) <me at j4v4m4n.in>"
    # gpg:                 aka "Pirate Praveen (PP) <praveen at privacyrequired.com>"
    # gpg:                 aka "Praveen Arimbrathodiyil (j4v4m4n) <pravi.a at gmail.com>"

 .gitignore                                         |    1 +
 LICENSE                                            |    2 +-
 README.md                                          |   86 +-
 changelog.md                                       |   18 +-
 lib/onelogin/ruby-saml.rb                          |    1 +
 lib/onelogin/ruby-saml/attribute_service.rb        |   27 +-
 lib/onelogin/ruby-saml/attributes.rb               |   65 +-
 lib/onelogin/ruby-saml/authrequest.rb              |   41 +-
 lib/onelogin/ruby-saml/http_error.rb               |    7 +
 lib/onelogin/ruby-saml/idp_metadata_parser.rb      |   71 +-
 lib/onelogin/ruby-saml/logging.rb                  |   24 +-
 lib/onelogin/ruby-saml/logoutrequest.rb            |   53 +-
 lib/onelogin/ruby-saml/logoutresponse.rb           |  203 +++-
 lib/onelogin/ruby-saml/metadata.rb                 |   63 +-
 lib/onelogin/ruby-saml/response.rb                 |  644 ++++++++++--
 lib/onelogin/ruby-saml/saml_message.rb             |   94 +-
 lib/onelogin/ruby-saml/settings.rb                 |   85 +-
 lib/onelogin/ruby-saml/slo_logoutrequest.rb        |  226 ++++-
 lib/onelogin/ruby-saml/slo_logoutresponse.rb       |   57 +-
 lib/onelogin/ruby-saml/utils.rb                    |  198 +++-
 lib/onelogin/ruby-saml/version.rb                  |    2 +-
 lib/schemas/saml-schema-metadata-2.0.xsd           |    2 -
 lib/xml_security.rb                                |  113 ++-
 metadata.yml                                       |  165 ++-
 ruby-saml.gemspec                                  |    1 +
 ...icate2_base64 => certificate_without_head_foot} |    0
 test/certificates/formatted_certificate            |   14 +
 test/certificates/formatted_private_key            |   12 +
 test/certificates/formatted_rsa_private_key        |   12 +
 test/certificates/invalid_certificate1             |    1 +
 test/certificates/invalid_certificate2             |    1 +
 test/certificates/invalid_certificate3             |   12 +
 test/certificates/invalid_private_key1             |    1 +
 test/certificates/invalid_private_key2             |    1 +
 test/certificates/invalid_private_key3             |   10 +
 test/certificates/invalid_rsa_private_key1         |    1 +
 test/certificates/invalid_rsa_private_key2         |    1 +
 test/certificates/invalid_rsa_private_key3         |   10 +
 test/idp_metadata_parser_test.rb                   |   45 +-
 test/logging_test.rb                               |   62 ++
 test/logout_requests/invalid_slo_request.xml       |    6 +
 .../{responses => logout_requests}/slo_request.xml |    0
 test/logout_requests/slo_request.xml.base64        |    1 +
 .../slo_request_deflated.xml.base64                |    1 +
 .../slo_request_with_session_index.xml             |    5 +
 .../logoutresponse_fixtures.rb                     |   12 +-
 test/logoutrequest_test.rb                         |  131 ++-
 test/logoutresponse_test.rb                        |  265 +++--
 test/metadata_test.rb                              |   84 +-
 test/request_test.rb                               |  145 +--
 test/response_test.rb                              | 1051 ++++++++++++++++----
 test/responses/attackxee.xml                       |   13 +
 .../responses/invalids/invalid_audience.xml.base64 |    1 +
 .../invalids/invalid_issuer_assertion.xml.base64   |    1 +
 .../invalids/invalid_issuer_message.xml.base64     |    1 +
 .../invalids/invalid_signature_position.xml.base64 |    1 +
 ...valid_subjectconfirmation_inresponse.xml.base64 |    1 +
 .../invalid_subjectconfirmation_nb.xml.base64      |    1 +
 .../invalid_subjectconfirmation_noa.xml.base64     |    1 +
 ...nvalid_subjectconfirmation_recipient.xml.base64 |    1 +
 .../invalids/multiple_assertions.xml.base64        |    2 +
 test/responses/invalids/multiple_signed.xml.base64 |    1 +
 test/responses/invalids/no_id.xml.base64           |    1 +
 test/responses/invalids/no_saml2.xml.base64        |    1 +
 test/responses/invalids/no_signature.xml.base64    |    1 +
 test/responses/invalids/no_status.xml.base64       |    1 +
 test/responses/invalids/no_status_code.xml.base64  |    1 +
 .../no_subjectconfirmation_data.xml.base64         |    1 +
 .../no_subjectconfirmation_method.xml.base64       |    1 +
 .../invalids/response_encrypted_attrs.xml.base64   |    1 +
 .../response_invalid_signed_element.xml.base64     |    1 +
 .../invalids/status_code_responder.xml.base64      |    1 +
 .../status_code_responer_and_msg.xml.base64        |    1 +
 ...ase64 => response_assertion_wrapped.xml.base64} |    0
 .../responses/response_encrypted_nameid.xml.base64 |    1 +
 test/responses/response_unsigned_xml_base64        |    1 +
 ...64 => response_with_saml2_namespace.xml.base64} |    0
 ...4 => response_with_signed_assertion.xml.base64} |    0
 ...=> response_with_signed_assertion_2.xml.base64} |    0
 ...> response_with_undefined_recipient.xml.base64} |    0
 ...se64 => response_without_attributes.xml.base64} |    0
 ...se_2.xml.base64 => response_wrapped.xml.base64} |    0
 ...d_message_encrypted_signed_assertion.xml.base64 |    1 +
 ...message_encrypted_unsigned_assertion.xml.base64 |    1 +
 ...ge_aes128_encrypted_signed_assertion.xml.base64 |    1 +
 ...ge_aes192_encrypted_signed_assertion.xml.base64 |    1 +
 ...ge_aes256_encrypted_signed_assertion.xml.base64 |    1 +
 ...ge_des192_encrypted_signed_assertion.xml.base64 |    1 +
 ...ted_assertion_without_saml_namespace.xml.base64 |    1 +
 ...d_message_encrypted_signed_assertion.xml.base64 |    1 +
 ...message_encrypted_unsigned_assertion.xml.base64 |    1 +
 test/responses/valid_response.xml.base64           |    1 +
 test/saml_message_test.rb                          |   56 ++
 test/settings_test.rb                              |  139 ++-
 test/slo_logoutrequest_test.rb                     |  267 ++++-
 test/slo_logoutresponse_test.rb                    |  164 +--
 test/test_helper.rb                                |  169 +++-
 test/utils_test.rb                                 |  145 +++
 test/xml_security_test.rb                          |  211 ++--
 99 files changed, 4368 insertions(+), 963 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-saml.git



More information about the Pkg-ruby-extras-commits mailing list