]> granicus.if.org Git - php/commitdiff
sodium ext: sort prototypes
authorFrank Denis <jedisct1@php.net>
Wed, 12 Jul 2017 21:06:43 +0000 (23:06 +0200)
committerFrank Denis <jedisct1@php.net>
Wed, 12 Jul 2017 21:06:43 +0000 (23:06 +0200)
ext/sodium/php_libsodium.h

index 6e6e3fbe2d81e785765cb3d7ae401d365ed40605..52a19cc1329aceb127c0aaa8b660a03680ee70f3 100644 (file)
@@ -34,9 +34,12 @@ PHP_RINIT_FUNCTION(sodium);
 PHP_RSHUTDOWN_FUNCTION(sodium);
 PHP_MINFO_FUNCTION(sodium);
 
-PHP_FUNCTION(sodium_crypto_aead_aes256gcm_is_available);
+PHP_FUNCTION(sodium_add);
+PHP_FUNCTION(sodium_bin2hex);
+PHP_FUNCTION(sodium_compare);
 PHP_FUNCTION(sodium_crypto_aead_aes256gcm_decrypt);
 PHP_FUNCTION(sodium_crypto_aead_aes256gcm_encrypt);
+PHP_FUNCTION(sodium_crypto_aead_aes256gcm_is_available);
 PHP_FUNCTION(sodium_crypto_aead_chacha20poly1305_decrypt);
 PHP_FUNCTION(sodium_crypto_aead_chacha20poly1305_encrypt);
 PHP_FUNCTION(sodium_crypto_aead_chacha20poly1305_ietf_decrypt);
@@ -47,7 +50,6 @@ PHP_FUNCTION(sodium_crypto_auth);
 PHP_FUNCTION(sodium_crypto_auth_verify);
 PHP_FUNCTION(sodium_crypto_box);
 PHP_FUNCTION(sodium_crypto_box_keypair);
-PHP_FUNCTION(sodium_crypto_box_seed_keypair);
 PHP_FUNCTION(sodium_crypto_box_keypair_from_secretkey_and_publickey);
 PHP_FUNCTION(sodium_crypto_box_open);
 PHP_FUNCTION(sodium_crypto_box_publickey);
@@ -55,6 +57,7 @@ PHP_FUNCTION(sodium_crypto_box_publickey_from_secretkey);
 PHP_FUNCTION(sodium_crypto_box_seal);
 PHP_FUNCTION(sodium_crypto_box_seal_open);
 PHP_FUNCTION(sodium_crypto_box_secretkey);
+PHP_FUNCTION(sodium_crypto_box_seed_keypair);
 PHP_FUNCTION(sodium_crypto_generichash);
 PHP_FUNCTION(sodium_crypto_generichash_final);
 PHP_FUNCTION(sodium_crypto_generichash_init);
@@ -66,11 +69,11 @@ PHP_FUNCTION(sodium_crypto_kx_secretkey);
 PHP_FUNCTION(sodium_crypto_kx_seed_keypair);
 PHP_FUNCTION(sodium_crypto_kx_server_session_keys);
 PHP_FUNCTION(sodium_crypto_pwhash);
-PHP_FUNCTION(sodium_crypto_pwhash_str);
-PHP_FUNCTION(sodium_crypto_pwhash_str_verify);
 PHP_FUNCTION(sodium_crypto_pwhash_scryptsalsa208sha256);
 PHP_FUNCTION(sodium_crypto_pwhash_scryptsalsa208sha256_str);
 PHP_FUNCTION(sodium_crypto_pwhash_scryptsalsa208sha256_str_verify);
+PHP_FUNCTION(sodium_crypto_pwhash_str);
+PHP_FUNCTION(sodium_crypto_pwhash_str_verify);
 PHP_FUNCTION(sodium_crypto_scalarmult);
 PHP_FUNCTION(sodium_crypto_scalarmult_base);
 PHP_FUNCTION(sodium_crypto_secretbox);
@@ -90,16 +93,13 @@ PHP_FUNCTION(sodium_crypto_sign_seed_keypair);
 PHP_FUNCTION(sodium_crypto_sign_verify_detached);
 PHP_FUNCTION(sodium_crypto_stream);
 PHP_FUNCTION(sodium_crypto_stream_xor);
-PHP_FUNCTION(sodium_randombytes_buf);
-PHP_FUNCTION(sodium_randombytes_random16);
-PHP_FUNCTION(sodium_randombytes_uniform);
-PHP_FUNCTION(sodium_bin2hex);
-PHP_FUNCTION(sodium_compare);
 PHP_FUNCTION(sodium_hex2bin);
 PHP_FUNCTION(sodium_increment);
-PHP_FUNCTION(sodium_add);
 PHP_FUNCTION(sodium_memcmp);
 PHP_FUNCTION(sodium_memzero);
+PHP_FUNCTION(sodium_randombytes_buf);
+PHP_FUNCTION(sodium_randombytes_random16);
+PHP_FUNCTION(sodium_randombytes_uniform);
 
 #define crypto_kx_BYTES crypto_scalarmult_BYTES
 #define crypto_kx_PUBLICKEYBYTES crypto_scalarmult_SCALARBYTES