-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some ext-sodium functions are missing from polyfill #92
Comments
Those functions in libsodium are actually newer than the polyfill lib. I'll get to work on them for |
Should we include a CI step that checks existence of all functions over at ext-sodium?
<?php
require_once 'sodium_compat/autoload.php';
var_export(function_exists($argv[1]));
echo "\n"; |
We've got a full list now.
|
21 tasks
Fixed in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a PHP project which is not (yet) compatible with PHP7.2+ versions but that uses lib sodium.
I wish to use timing attacks safer versions of several functions like
bin2base64
which are declared in extension from version 7.2.0 https://github.com/php/php-src/blob/PHP-7.2.0/ext/sodium/php_libsodium.h#L39Sadly, some of these are not implemented in this repo. So this repo can NOT say it provides
ext-sodium
as is intended in #59 (comment)The text was updated successfully, but these errors were encountered: