Are you asking why some session modules use Storable to serialize data? Data has to be serialized somehow, and Storable is faster and more compact than any of the other methods. That's all there is to it. If you want to read the data in a session, just load it with Storable. It's not encrypted in any way.