Xmldsig
This gem is a (partial) implementation of the XMLDsig specification (http://www.w3.org/TR/xmldsig-core)
Installation
Add this line to your application's Gemfile:
gem 'xmldsig'
And then execute:
$ bundle
Or install it yourself as:
$ gem install xmldsig
Usage
unsigned_xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<foo:Foo ID=\"foo\" xmlns:foo=\"http://example.com/foo#\" xmlns:ds=\"http://www.w3.org/2000/09/xmldsig#\" xmlns:ec=\"http://www.w3.org/2001/10/xml-exc-c14n#\">\n <foo:Bar>bar</foo:Bar>\n <ds:Signature>\n <ds:SignedInfo>\n <ds:CanonicalizationMethod Algorithm=\"http://www.w3.org/2001/10/xml-exc-c14n#\"/>\n <ds:SignatureMethod Algorithm=\"http://www.w3.org/2001/04/xmldsig-more#rsa-sha256\"/>\n <ds:Reference URI=\"#foo\">\n <ds:Transforms>\n <ds:Transform Algorithm=\"http://www.w3.org/2000/09/xmldsig#enveloped-signature\"/>\n <ds:Transform Algorithm=\"http://www.w3.org/2001/10/xml-exc-c14n#\">\n <ec:InclusiveNamespaces PrefixList=\"foo\"/>\n </ds:Transform>\n </ds:Transforms>\n <ds:DigestMethod Algorithm=\"http://www.w3.org/2001/04/xmlenc#sha256\"/>\n <ds:DigestValue></ds:DigestValue>\n </ds:Reference>\n </ds:SignedInfo>\n <ds:SignatureValue></ds:SignatureValue>\n </ds:Signature>\n</foo:Foo>\n"
private_key = OpenSSL::PKey::RSA.new(File.read("key.pem"))
certificate = OpenSSL::X509::Certificate.new(File.read("certificate.cer"))
unsigned_document = Xmldsig::SignedDocument.new(unsigned_xml)
signed_xml = unsigned_document.sign(private_key)
# With block
signed_xml = unsigned_document.sign do |data|
private_key.sign(OpenSSL::Digest::SHA256.new, data)
end
# Validation
signed_document = Xmldsig::SignedDocument.new(signed_xml)
document_validates = signed_document.validate(certificate)
# With block
signed_document = Xmldsig::SignedDocument.new(signed_xml)
signed_document.validate do |signature_value, data|
document_validates = certificate.public_key.verify(OpenSSL::Digest::SHA256.new, signature_value, data)
end
# Custom ID attribute
signed_document = Xmldsig::SignedDocument.new(signed_xml, id_attr: "MyID")
signed_document.validate(certificate)
Known issues
- Windows in app purchase verification requires extra whitespace removal: https://github.com/benoist/xmldsig/issues/13
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
