Method: Saml::Encoding.inflate
- Defined in:
- lib/saml/encoding.rb
.inflate(gzip_binary_string, max_bits = nil) ⇒ Object
26 27 28 29 30 31 32 33 |
# File 'lib/saml/encoding.rb', line 26 def self.inflate gzip_binary_string, max_bits=nil zstream = Zlib::Inflate.new(max_bits) begin zstream.inflate(gzip_binary_string) ensure zstream.close end end |