Hi is there any native function (not install other gem, or not calling openssl from shell) to compress string or encrypt a string?
sort of like mysql compress.
"a very long and loose string".compress
output = "8d20\1l\201"
"8d20\1l\201".decompress
output = "a very long and loose string"?
and likewise to encrypt some string?