Libsodium not available?

Is libsodium not available at all? My PHP version supports libsodium, yet it doesn’t seem to be present.

What is your URL?

I doubt the sodium extension is enabled, mostly because of what it does. You can check whether its available using this small bit of PHP code:

if (extension_loaded("sodium")) {
   echo "sodium extension is loaded!";
}

Yes, we don’t have the sodium extension enabled. We run custom PHP builds which don’t have this module enabled.

If I were to go to premium hosting, would I be able to use libsodium?

My own premium testing account has it, yes. Or at least, it’s available in the list of modules that can be activated.

Alright, thank you!