如何压缩和解压缩URL C ++中存在的xml

时间:2018-05-07 05:51:23

标签: c++ xml saml

我用C ++编写saml SP,但不知道如何压缩xml。

  

http://acme.com:16006/idp/samlv20?SAMLRequest= {xmlCompressedandBase64encodedString}

现在xmlCompressedandBase64encodedString是我知道Base64编码的问题部分,但我不知道xml压缩。

我的saml请求将如下所示:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <samlp:AuthnRequest 
        xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"
        xmlns:enc="http://www.w3.org/2001/04/xmlenc#" 
        xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" 
        xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol" 
        xmlns:x500="urn:oasis:names:tc:SAML:2.0:profiles:attribute:X500" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        ProtocolBinding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" 
        ID="id-_Abcd1234&-rQjG" 
        Version="2.0" 
        IssueInstant="2018-05-03T06:02:22Z" 
        Destination="http://acme.com:16006/idp/samlv20">
    <saml:Issuer Format="urn:oasis:names:tc:SAML:2.0:nameid-format:entity">
            https://flight.com::14213/sp
    </saml:Issuer>
    <samlp:NameIDPolicy AllowCreate="true"/>

    </samlp:AuthnRequest>

同样适用于SamlRespone的解压缩。

1 个答案:

答案 0 :(得分:0)

有一个wikipedia article表示你应该使用DEFLATE altorithm。

zlib是实现DEFLATE algorihm的最着名的库之一。我听说Boost.iostream也可以使用zlib作为依赖,但我不确定。