hi,
yes it's just regular base64 enconding; however it's also compressed via qCompress() so you'll need to qUncompress() the result of QByteArray::fromBase64() (from Qt core library) to have it exactly the whole chunk as the plugin would get/set it
beware that the final decoded result might be just binary and non-human intelligible though--it actually depends on the plugin at stake.
hi,
yes it's just regular base64 enconding; however it's also compressed via qCompress() so you'll need to qUncompress() the result of QByteArray::fromBase64() (from Qt core library) to have it exactly the whole chunk as the plugin would get/set it
beware that the final decoded result might be just binary and non-human intelligible though--it actually depends on the plugin at stake.
hth.
cheers