@@ -27,65 +27,65 @@ |
||
| 27 | 27 | */ |
| 28 | 28 | |
| 29 | 29 | if (!is_callable('random_bytes')) { |
| 30 | - /** |
|
| 31 | - * Windows with PHP < 5.3.0 will not have the function |
|
| 32 | - * openssl_random_pseudo_bytes() available, so let's use |
|
| 33 | - * CAPICOM to work around this deficiency. |
|
| 34 | - * |
|
| 35 | - * @param int $bytes |
|
| 36 | - * |
|
| 37 | - * @throws Exception |
|
| 38 | - * |
|
| 39 | - * @return string |
|
| 40 | - */ |
|
| 41 | - function random_bytes($bytes) |
|
| 42 | - { |
|
| 43 | - try { |
|
| 44 | - /** @var int $bytes */ |
|
| 45 | - $bytes = RandomCompat_intval($bytes); |
|
| 46 | - } catch (TypeError $ex) { |
|
| 47 | - throw new TypeError( |
|
| 48 | - 'random_bytes(): $bytes must be an integer' |
|
| 49 | - ); |
|
| 50 | - } |
|
| 30 | + /** |
|
| 31 | + * Windows with PHP < 5.3.0 will not have the function |
|
| 32 | + * openssl_random_pseudo_bytes() available, so let's use |
|
| 33 | + * CAPICOM to work around this deficiency. |
|
| 34 | + * |
|
| 35 | + * @param int $bytes |
|
| 36 | + * |
|
| 37 | + * @throws Exception |
|
| 38 | + * |
|
| 39 | + * @return string |
|
| 40 | + */ |
|
| 41 | + function random_bytes($bytes) |
|
| 42 | + { |
|
| 43 | + try { |
|
| 44 | + /** @var int $bytes */ |
|
| 45 | + $bytes = RandomCompat_intval($bytes); |
|
| 46 | + } catch (TypeError $ex) { |
|
| 47 | + throw new TypeError( |
|
| 48 | + 'random_bytes(): $bytes must be an integer' |
|
| 49 | + ); |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | - if ($bytes < 1) { |
|
| 53 | - throw new Error( |
|
| 54 | - 'Length must be greater than 0' |
|
| 55 | - ); |
|
| 56 | - } |
|
| 52 | + if ($bytes < 1) { |
|
| 53 | + throw new Error( |
|
| 54 | + 'Length must be greater than 0' |
|
| 55 | + ); |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | - /** @var string $buf */ |
|
| 59 | - $buf = ''; |
|
| 60 | - if (!class_exists('COM')) { |
|
| 61 | - throw new Error( |
|
| 62 | - 'COM does not exist' |
|
| 63 | - ); |
|
| 64 | - } |
|
| 65 | - /** @var COM $util */ |
|
| 66 | - $util = new COM('CAPICOM.Utilities.1'); |
|
| 67 | - $execCount = 0; |
|
| 58 | + /** @var string $buf */ |
|
| 59 | + $buf = ''; |
|
| 60 | + if (!class_exists('COM')) { |
|
| 61 | + throw new Error( |
|
| 62 | + 'COM does not exist' |
|
| 63 | + ); |
|
| 64 | + } |
|
| 65 | + /** @var COM $util */ |
|
| 66 | + $util = new COM('CAPICOM.Utilities.1'); |
|
| 67 | + $execCount = 0; |
|
| 68 | 68 | |
| 69 | - /** |
|
| 70 | - * Let's not let it loop forever. If we run N times and fail to |
|
| 71 | - * get N bytes of random data, then CAPICOM has failed us. |
|
| 72 | - */ |
|
| 73 | - do { |
|
| 74 | - $buf .= base64_decode((string) $util->GetRandom($bytes, 0)); |
|
| 75 | - if (RandomCompat_strlen($buf) >= $bytes) { |
|
| 76 | - /** |
|
| 77 | - * Return our random entropy buffer here: |
|
| 78 | - */ |
|
| 79 | - return (string) RandomCompat_substr($buf, 0, $bytes); |
|
| 80 | - } |
|
| 81 | - ++$execCount; |
|
| 82 | - } while ($execCount < $bytes); |
|
| 69 | + /** |
|
| 70 | + * Let's not let it loop forever. If we run N times and fail to |
|
| 71 | + * get N bytes of random data, then CAPICOM has failed us. |
|
| 72 | + */ |
|
| 73 | + do { |
|
| 74 | + $buf .= base64_decode((string) $util->GetRandom($bytes, 0)); |
|
| 75 | + if (RandomCompat_strlen($buf) >= $bytes) { |
|
| 76 | + /** |
|
| 77 | + * Return our random entropy buffer here: |
|
| 78 | + */ |
|
| 79 | + return (string) RandomCompat_substr($buf, 0, $bytes); |
|
| 80 | + } |
|
| 81 | + ++$execCount; |
|
| 82 | + } while ($execCount < $bytes); |
|
| 83 | 83 | |
| 84 | - /** |
|
| 85 | - * If we reach here, PHP has failed us. |
|
| 86 | - */ |
|
| 87 | - throw new Exception( |
|
| 88 | - 'Could not gather sufficient random data' |
|
| 89 | - ); |
|
| 90 | - } |
|
| 84 | + /** |
|
| 85 | + * If we reach here, PHP has failed us. |
|
| 86 | + */ |
|
| 87 | + throw new Exception( |
|
| 88 | + 'Could not gather sufficient random data' |
|
| 89 | + ); |
|
| 90 | + } |
|
| 91 | 91 | } |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | * SOFTWARE. |
| 27 | 27 | */ |
| 28 | 28 | |
| 29 | -if (!is_callable('random_bytes')) { |
|
| 29 | +if ( ! is_callable( 'random_bytes' ) ) { |
|
| 30 | 30 | /** |
| 31 | 31 | * Windows with PHP < 5.3.0 will not have the function |
| 32 | 32 | * openssl_random_pseudo_bytes() available, so let's use |
@@ -38,18 +38,18 @@ discard block |
||
| 38 | 38 | * |
| 39 | 39 | * @return string |
| 40 | 40 | */ |
| 41 | - function random_bytes($bytes) |
|
| 41 | + function random_bytes( $bytes ) |
|
| 42 | 42 | { |
| 43 | 43 | try { |
| 44 | 44 | /** @var int $bytes */ |
| 45 | - $bytes = RandomCompat_intval($bytes); |
|
| 46 | - } catch (TypeError $ex) { |
|
| 45 | + $bytes = RandomCompat_intval( $bytes ); |
|
| 46 | + } catch ( TypeError $ex ) { |
|
| 47 | 47 | throw new TypeError( |
| 48 | 48 | 'random_bytes(): $bytes must be an integer' |
| 49 | 49 | ); |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - if ($bytes < 1) { |
|
| 52 | + if ( $bytes < 1 ) { |
|
| 53 | 53 | throw new Error( |
| 54 | 54 | 'Length must be greater than 0' |
| 55 | 55 | ); |
@@ -57,13 +57,13 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | /** @var string $buf */ |
| 59 | 59 | $buf = ''; |
| 60 | - if (!class_exists('COM')) { |
|
| 60 | + if ( ! class_exists( 'COM' ) ) { |
|
| 61 | 61 | throw new Error( |
| 62 | 62 | 'COM does not exist' |
| 63 | 63 | ); |
| 64 | 64 | } |
| 65 | 65 | /** @var COM $util */ |
| 66 | - $util = new COM('CAPICOM.Utilities.1'); |
|
| 66 | + $util = new COM( 'CAPICOM.Utilities.1' ); |
|
| 67 | 67 | $execCount = 0; |
| 68 | 68 | |
| 69 | 69 | /** |
@@ -71,15 +71,15 @@ discard block |
||
| 71 | 71 | * get N bytes of random data, then CAPICOM has failed us. |
| 72 | 72 | */ |
| 73 | 73 | do { |
| 74 | - $buf .= base64_decode((string) $util->GetRandom($bytes, 0)); |
|
| 75 | - if (RandomCompat_strlen($buf) >= $bytes) { |
|
| 74 | + $buf .= base64_decode( (string)$util->GetRandom( $bytes, 0 ) ); |
|
| 75 | + if ( RandomCompat_strlen( $buf ) >= $bytes ) { |
|
| 76 | 76 | /** |
| 77 | 77 | * Return our random entropy buffer here: |
| 78 | 78 | */ |
| 79 | - return (string) RandomCompat_substr($buf, 0, $bytes); |
|
| 79 | + return (string)RandomCompat_substr( $buf, 0, $bytes ); |
|
| 80 | 80 | } |
| 81 | 81 | ++$execCount; |
| 82 | - } while ($execCount < $bytes); |
|
| 82 | + } while ( $execCount < $bytes ); |
|
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * If we reach here, PHP has failed us. |
@@ -40,8 +40,7 @@ |
||
| 40 | 40 | * |
| 41 | 41 | * @return string |
| 42 | 42 | */ |
| 43 | - function random_bytes($bytes) |
|
| 44 | - { |
|
| 43 | + function random_bytes($bytes) { |
|
| 45 | 44 | try { |
| 46 | 45 | /** @var int $bytes */ |
| 47 | 46 | $bytes = RandomCompat_intval($bytes); |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace Sodium; |
| 3 | 3 | |
| 4 | -require_once dirname(dirname(__FILE__)) . '/autoload.php'; |
|
| 4 | +require_once dirname( dirname( __FILE__ ) ) . '/autoload.php'; |
|
| 5 | 5 | |
| 6 | 6 | use ParagonIE_Sodium_Compat; |
| 7 | 7 | |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | require_once dirname(dirname(__FILE__)) . '/autoload.php'; |
| 4 | 4 | |
| 5 | 5 | if (PHP_VERSION_ID < 50300) { |
| 6 | - return; |
|
| 6 | + return; |
|
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | /* |
@@ -21,28 +21,28 @@ discard block |
||
| 21 | 21 | * $x = Compat::crypto_aead_xchacha20poly1305_encrypt(...$args); |
| 22 | 22 | */ |
| 23 | 23 | spl_autoload_register(function ($class) { |
| 24 | - if ($class[0] === '\\') { |
|
| 25 | - $class = substr($class, 1); |
|
| 26 | - } |
|
| 27 | - $namespace = 'ParagonIE\\Sodium'; |
|
| 28 | - // Does the class use the namespace prefix? |
|
| 29 | - $len = strlen($namespace); |
|
| 30 | - if (strncmp($namespace, $class, $len) !== 0) { |
|
| 31 | - // no, move to the next registered autoloader |
|
| 32 | - return false; |
|
| 33 | - } |
|
| 24 | + if ($class[0] === '\\') { |
|
| 25 | + $class = substr($class, 1); |
|
| 26 | + } |
|
| 27 | + $namespace = 'ParagonIE\\Sodium'; |
|
| 28 | + // Does the class use the namespace prefix? |
|
| 29 | + $len = strlen($namespace); |
|
| 30 | + if (strncmp($namespace, $class, $len) !== 0) { |
|
| 31 | + // no, move to the next registered autoloader |
|
| 32 | + return false; |
|
| 33 | + } |
|
| 34 | 34 | |
| 35 | - // Get the relative class name |
|
| 36 | - $relative_class = substr($class, $len); |
|
| 35 | + // Get the relative class name |
|
| 36 | + $relative_class = substr($class, $len); |
|
| 37 | 37 | |
| 38 | - // Replace the namespace prefix with the base directory, replace namespace |
|
| 39 | - // separators with directory separators in the relative class name, append |
|
| 40 | - // with .php |
|
| 41 | - $file = dirname(dirname(__FILE__)) . '/namespaced/' . str_replace('\\', '/', $relative_class) . '.php'; |
|
| 42 | - // if the file exists, require it |
|
| 43 | - if (file_exists($file)) { |
|
| 44 | - require_once $file; |
|
| 45 | - return true; |
|
| 46 | - } |
|
| 47 | - return false; |
|
| 38 | + // Replace the namespace prefix with the base directory, replace namespace |
|
| 39 | + // separators with directory separators in the relative class name, append |
|
| 40 | + // with .php |
|
| 41 | + $file = dirname(dirname(__FILE__)) . '/namespaced/' . str_replace('\\', '/', $relative_class) . '.php'; |
|
| 42 | + // if the file exists, require it |
|
| 43 | + if (file_exists($file)) { |
|
| 44 | + require_once $file; |
|
| 45 | + return true; |
|
| 46 | + } |
|
| 47 | + return false; |
|
| 48 | 48 | }); |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -require_once dirname(dirname(__FILE__)) . '/autoload.php'; |
|
| 3 | +require_once dirname( dirname( __FILE__ ) ) . '/autoload.php'; |
|
| 4 | 4 | |
| 5 | -if (PHP_VERSION_ID < 50300) { |
|
| 5 | +if ( PHP_VERSION_ID < 50300 ) { |
|
| 6 | 6 | return; |
| 7 | 7 | } |
| 8 | 8 | |
@@ -20,27 +20,27 @@ discard block |
||
| 20 | 20 | * |
| 21 | 21 | * $x = Compat::crypto_aead_xchacha20poly1305_encrypt(...$args); |
| 22 | 22 | */ |
| 23 | -spl_autoload_register(function ($class) { |
|
| 24 | - if ($class[0] === '\\') { |
|
| 25 | - $class = substr($class, 1); |
|
| 23 | +spl_autoload_register( function( $class ) { |
|
| 24 | + if ( $class[ 0 ] === '\\' ) { |
|
| 25 | + $class = substr( $class, 1 ); |
|
| 26 | 26 | } |
| 27 | 27 | $namespace = 'ParagonIE\\Sodium'; |
| 28 | 28 | // Does the class use the namespace prefix? |
| 29 | - $len = strlen($namespace); |
|
| 30 | - if (strncmp($namespace, $class, $len) !== 0) { |
|
| 29 | + $len = strlen( $namespace ); |
|
| 30 | + if ( strncmp( $namespace, $class, $len ) !== 0 ) { |
|
| 31 | 31 | // no, move to the next registered autoloader |
| 32 | 32 | return false; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | // Get the relative class name |
| 36 | - $relative_class = substr($class, $len); |
|
| 36 | + $relative_class = substr( $class, $len ); |
|
| 37 | 37 | |
| 38 | 38 | // Replace the namespace prefix with the base directory, replace namespace |
| 39 | 39 | // separators with directory separators in the relative class name, append |
| 40 | 40 | // with .php |
| 41 | - $file = dirname(dirname(__FILE__)) . '/namespaced/' . str_replace('\\', '/', $relative_class) . '.php'; |
|
| 41 | + $file = dirname( dirname( __FILE__ ) ) . '/namespaced/' . str_replace( '\\', '/', $relative_class ) . '.php'; |
|
| 42 | 42 | // if the file exists, require it |
| 43 | - if (file_exists($file)) { |
|
| 43 | + if ( file_exists( $file ) ) { |
|
| 44 | 44 | require_once $file; |
| 45 | 45 | return true; |
| 46 | 46 | } |
@@ -9,8 +9,7 @@ |
||
| 9 | 9 | * |
| 10 | 10 | * @return bool Stop autoloading? |
| 11 | 11 | */ |
| 12 | - function sodiumCompatAutoloader($class) |
|
| 13 | - { |
|
| 12 | + function sodiumCompatAutoloader($class) { |
|
| 14 | 13 | $namespace = 'ParagonIE_Sodium_'; |
| 15 | 14 | // Does the class use the namespace prefix? |
| 16 | 15 | $len = strlen($namespace); |
@@ -1,75 +1,75 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if (PHP_VERSION_ID < 70000) { |
| 4 | - if (!is_callable('sodiumCompatAutoloader')) { |
|
| 5 | - /** |
|
| 6 | - * Sodium_Compat autoloader. |
|
| 7 | - * |
|
| 8 | - * @param string $class Class name to be autoloaded. |
|
| 9 | - * |
|
| 10 | - * @return bool Stop autoloading? |
|
| 11 | - */ |
|
| 12 | - function sodiumCompatAutoloader($class) |
|
| 13 | - { |
|
| 14 | - $namespace = 'ParagonIE_Sodium_'; |
|
| 15 | - // Does the class use the namespace prefix? |
|
| 16 | - $len = strlen($namespace); |
|
| 17 | - if (strncmp($namespace, $class, $len) !== 0) { |
|
| 18 | - // no, move to the next registered autoloader |
|
| 19 | - return false; |
|
| 20 | - } |
|
| 4 | + if (!is_callable('sodiumCompatAutoloader')) { |
|
| 5 | + /** |
|
| 6 | + * Sodium_Compat autoloader. |
|
| 7 | + * |
|
| 8 | + * @param string $class Class name to be autoloaded. |
|
| 9 | + * |
|
| 10 | + * @return bool Stop autoloading? |
|
| 11 | + */ |
|
| 12 | + function sodiumCompatAutoloader($class) |
|
| 13 | + { |
|
| 14 | + $namespace = 'ParagonIE_Sodium_'; |
|
| 15 | + // Does the class use the namespace prefix? |
|
| 16 | + $len = strlen($namespace); |
|
| 17 | + if (strncmp($namespace, $class, $len) !== 0) { |
|
| 18 | + // no, move to the next registered autoloader |
|
| 19 | + return false; |
|
| 20 | + } |
|
| 21 | 21 | |
| 22 | - // Get the relative class name |
|
| 23 | - $relative_class = substr($class, $len); |
|
| 22 | + // Get the relative class name |
|
| 23 | + $relative_class = substr($class, $len); |
|
| 24 | 24 | |
| 25 | - // Replace the namespace prefix with the base directory, replace namespace |
|
| 26 | - // separators with directory separators in the relative class name, append |
|
| 27 | - // with .php |
|
| 28 | - $file = dirname(__FILE__) . '/src/' . str_replace('_', '/', $relative_class) . '.php'; |
|
| 29 | - // if the file exists, require it |
|
| 30 | - if (file_exists($file)) { |
|
| 31 | - require_once $file; |
|
| 32 | - return true; |
|
| 33 | - } |
|
| 34 | - return false; |
|
| 35 | - } |
|
| 25 | + // Replace the namespace prefix with the base directory, replace namespace |
|
| 26 | + // separators with directory separators in the relative class name, append |
|
| 27 | + // with .php |
|
| 28 | + $file = dirname(__FILE__) . '/src/' . str_replace('_', '/', $relative_class) . '.php'; |
|
| 29 | + // if the file exists, require it |
|
| 30 | + if (file_exists($file)) { |
|
| 31 | + require_once $file; |
|
| 32 | + return true; |
|
| 33 | + } |
|
| 34 | + return false; |
|
| 35 | + } |
|
| 36 | 36 | |
| 37 | - // Now that we have an autoloader, let's register it! |
|
| 38 | - spl_autoload_register('sodiumCompatAutoloader'); |
|
| 39 | - } |
|
| 37 | + // Now that we have an autoloader, let's register it! |
|
| 38 | + spl_autoload_register('sodiumCompatAutoloader'); |
|
| 39 | + } |
|
| 40 | 40 | } else { |
| 41 | - require_once dirname(__FILE__) . '/autoload-php7.php'; |
|
| 41 | + require_once dirname(__FILE__) . '/autoload-php7.php'; |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /* Explicitly, always load the Compat class: */ |
| 45 | 45 | if (!class_exists('ParagonIE_Sodium_Compat', false)) { |
| 46 | - require_once dirname(__FILE__) . '/src/Compat.php'; |
|
| 46 | + require_once dirname(__FILE__) . '/src/Compat.php'; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | if (!class_exists('SodiumException', false)) { |
| 50 | - require_once dirname(__FILE__) . '/src/SodiumException.php'; |
|
| 50 | + require_once dirname(__FILE__) . '/src/SodiumException.php'; |
|
| 51 | 51 | } |
| 52 | 52 | if (PHP_VERSION_ID >= 50300) { |
| 53 | - // Namespaces didn't exist before 5.3.0, so don't even try to use this |
|
| 54 | - // unless PHP >= 5.3.0 |
|
| 55 | - require_once dirname(__FILE__) . '/lib/namespaced.php'; |
|
| 56 | - require_once dirname(__FILE__) . '/lib/sodium_compat.php'; |
|
| 53 | + // Namespaces didn't exist before 5.3.0, so don't even try to use this |
|
| 54 | + // unless PHP >= 5.3.0 |
|
| 55 | + require_once dirname(__FILE__) . '/lib/namespaced.php'; |
|
| 56 | + require_once dirname(__FILE__) . '/lib/sodium_compat.php'; |
|
| 57 | 57 | } else { |
| 58 | - require_once dirname(__FILE__) . '/src/PHP52/SplFixedArray.php'; |
|
| 58 | + require_once dirname(__FILE__) . '/src/PHP52/SplFixedArray.php'; |
|
| 59 | 59 | } |
| 60 | 60 | if (PHP_VERSION_ID < 70200 || !extension_loaded('sodium')) { |
| 61 | - if (PHP_VERSION_ID >= 50300 && !defined('SODIUM_CRYPTO_SCALARMULT_BYTES')) { |
|
| 62 | - require_once dirname(__FILE__) . '/lib/php72compat_const.php'; |
|
| 63 | - } |
|
| 64 | - if (PHP_VERSION_ID >= 70000) { |
|
| 65 | - assert(class_exists('ParagonIE_Sodium_Compat'), 'Possible filesystem/autoloader bug?'); |
|
| 66 | - } else { |
|
| 67 | - assert(class_exists('ParagonIE_Sodium_Compat')); |
|
| 68 | - } |
|
| 69 | - require_once(dirname(__FILE__) . '/lib/php72compat.php'); |
|
| 61 | + if (PHP_VERSION_ID >= 50300 && !defined('SODIUM_CRYPTO_SCALARMULT_BYTES')) { |
|
| 62 | + require_once dirname(__FILE__) . '/lib/php72compat_const.php'; |
|
| 63 | + } |
|
| 64 | + if (PHP_VERSION_ID >= 70000) { |
|
| 65 | + assert(class_exists('ParagonIE_Sodium_Compat'), 'Possible filesystem/autoloader bug?'); |
|
| 66 | + } else { |
|
| 67 | + assert(class_exists('ParagonIE_Sodium_Compat')); |
|
| 68 | + } |
|
| 69 | + require_once(dirname(__FILE__) . '/lib/php72compat.php'); |
|
| 70 | 70 | } elseif (!function_exists('sodium_crypto_stream_xchacha20_xor')) { |
| 71 | - // Older versions of {PHP, ext/sodium} will not define these |
|
| 72 | - require_once(dirname(__FILE__) . '/lib/php72compat.php'); |
|
| 71 | + // Older versions of {PHP, ext/sodium} will not define these |
|
| 72 | + require_once(dirname(__FILE__) . '/lib/php72compat.php'); |
|
| 73 | 73 | } |
| 74 | 74 | require_once(dirname(__FILE__) . '/lib/stream-xchacha20.php'); |
| 75 | 75 | require_once(dirname(__FILE__) . '/lib/ristretto255.php'); |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if (PHP_VERSION_ID < 70000) { |
|
| 4 | - if (!is_callable('sodiumCompatAutoloader')) { |
|
| 3 | +if ( PHP_VERSION_ID < 70000 ) { |
|
| 4 | + if ( ! is_callable( 'sodiumCompatAutoloader' ) ) { |
|
| 5 | 5 | /** |
| 6 | 6 | * Sodium_Compat autoloader. |
| 7 | 7 | * |
@@ -9,25 +9,25 @@ discard block |
||
| 9 | 9 | * |
| 10 | 10 | * @return bool Stop autoloading? |
| 11 | 11 | */ |
| 12 | - function sodiumCompatAutoloader($class) |
|
| 12 | + function sodiumCompatAutoloader( $class ) |
|
| 13 | 13 | { |
| 14 | 14 | $namespace = 'ParagonIE_Sodium_'; |
| 15 | 15 | // Does the class use the namespace prefix? |
| 16 | - $len = strlen($namespace); |
|
| 17 | - if (strncmp($namespace, $class, $len) !== 0) { |
|
| 16 | + $len = strlen( $namespace ); |
|
| 17 | + if ( strncmp( $namespace, $class, $len ) !== 0 ) { |
|
| 18 | 18 | // no, move to the next registered autoloader |
| 19 | 19 | return false; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | // Get the relative class name |
| 23 | - $relative_class = substr($class, $len); |
|
| 23 | + $relative_class = substr( $class, $len ); |
|
| 24 | 24 | |
| 25 | 25 | // Replace the namespace prefix with the base directory, replace namespace |
| 26 | 26 | // separators with directory separators in the relative class name, append |
| 27 | 27 | // with .php |
| 28 | - $file = dirname(__FILE__) . '/src/' . str_replace('_', '/', $relative_class) . '.php'; |
|
| 28 | + $file = dirname( __FILE__ ) . '/src/' . str_replace( '_', '/', $relative_class ) . '.php'; |
|
| 29 | 29 | // if the file exists, require it |
| 30 | - if (file_exists($file)) { |
|
| 30 | + if ( file_exists( $file ) ) { |
|
| 31 | 31 | require_once $file; |
| 32 | 32 | return true; |
| 33 | 33 | } |
@@ -35,41 +35,41 @@ discard block |
||
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | // Now that we have an autoloader, let's register it! |
| 38 | - spl_autoload_register('sodiumCompatAutoloader'); |
|
| 38 | + spl_autoload_register( 'sodiumCompatAutoloader' ); |
|
| 39 | 39 | } |
| 40 | 40 | } else { |
| 41 | - require_once dirname(__FILE__) . '/autoload-php7.php'; |
|
| 41 | + require_once dirname( __FILE__ ) . '/autoload-php7.php'; |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /* Explicitly, always load the Compat class: */ |
| 45 | -if (!class_exists('ParagonIE_Sodium_Compat', false)) { |
|
| 46 | - require_once dirname(__FILE__) . '/src/Compat.php'; |
|
| 45 | +if ( ! class_exists( 'ParagonIE_Sodium_Compat', false ) ) { |
|
| 46 | + require_once dirname( __FILE__ ) . '/src/Compat.php'; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | -if (!class_exists('SodiumException', false)) { |
|
| 50 | - require_once dirname(__FILE__) . '/src/SodiumException.php'; |
|
| 49 | +if ( ! class_exists( 'SodiumException', false ) ) { |
|
| 50 | + require_once dirname( __FILE__ ) . '/src/SodiumException.php'; |
|
| 51 | 51 | } |
| 52 | -if (PHP_VERSION_ID >= 50300) { |
|
| 52 | +if ( PHP_VERSION_ID >= 50300 ) { |
|
| 53 | 53 | // Namespaces didn't exist before 5.3.0, so don't even try to use this |
| 54 | 54 | // unless PHP >= 5.3.0 |
| 55 | - require_once dirname(__FILE__) . '/lib/namespaced.php'; |
|
| 56 | - require_once dirname(__FILE__) . '/lib/sodium_compat.php'; |
|
| 55 | + require_once dirname( __FILE__ ) . '/lib/namespaced.php'; |
|
| 56 | + require_once dirname( __FILE__ ) . '/lib/sodium_compat.php'; |
|
| 57 | 57 | } else { |
| 58 | - require_once dirname(__FILE__) . '/src/PHP52/SplFixedArray.php'; |
|
| 58 | + require_once dirname( __FILE__ ) . '/src/PHP52/SplFixedArray.php'; |
|
| 59 | 59 | } |
| 60 | -if (PHP_VERSION_ID < 70200 || !extension_loaded('sodium')) { |
|
| 61 | - if (PHP_VERSION_ID >= 50300 && !defined('SODIUM_CRYPTO_SCALARMULT_BYTES')) { |
|
| 62 | - require_once dirname(__FILE__) . '/lib/php72compat_const.php'; |
|
| 60 | +if ( PHP_VERSION_ID < 70200 || ! extension_loaded( 'sodium' ) ) { |
|
| 61 | + if ( PHP_VERSION_ID >= 50300 && ! defined( 'SODIUM_CRYPTO_SCALARMULT_BYTES' ) ) { |
|
| 62 | + require_once dirname( __FILE__ ) . '/lib/php72compat_const.php'; |
|
| 63 | 63 | } |
| 64 | - if (PHP_VERSION_ID >= 70000) { |
|
| 65 | - assert(class_exists('ParagonIE_Sodium_Compat'), 'Possible filesystem/autoloader bug?'); |
|
| 64 | + if ( PHP_VERSION_ID >= 70000 ) { |
|
| 65 | + assert( class_exists( 'ParagonIE_Sodium_Compat' ), 'Possible filesystem/autoloader bug?' ); |
|
| 66 | 66 | } else { |
| 67 | - assert(class_exists('ParagonIE_Sodium_Compat')); |
|
| 67 | + assert( class_exists( 'ParagonIE_Sodium_Compat' ) ); |
|
| 68 | 68 | } |
| 69 | - require_once(dirname(__FILE__) . '/lib/php72compat.php'); |
|
| 70 | -} elseif (!function_exists('sodium_crypto_stream_xchacha20_xor')) { |
|
| 69 | + require_once( dirname( __FILE__ ) . '/lib/php72compat.php' ); |
|
| 70 | +} elseif ( ! function_exists( 'sodium_crypto_stream_xchacha20_xor' ) ) { |
|
| 71 | 71 | // Older versions of {PHP, ext/sodium} will not define these |
| 72 | - require_once(dirname(__FILE__) . '/lib/php72compat.php'); |
|
| 72 | + require_once( dirname( __FILE__ ) . '/lib/php72compat.php' ); |
|
| 73 | 73 | } |
| 74 | -require_once(dirname(__FILE__) . '/lib/stream-xchacha20.php'); |
|
| 75 | -require_once(dirname(__FILE__) . '/lib/ristretto255.php'); |
|
| 74 | +require_once( dirname( __FILE__ ) . '/lib/stream-xchacha20.php' ); |
|
| 75 | +require_once( dirname( __FILE__ ) . '/lib/ristretto255.php' ); |
|
@@ -3,29 +3,29 @@ |
||
| 3 | 3 | This file should only ever be loaded on PHP 7+ |
| 4 | 4 | */ |
| 5 | 5 | if (PHP_VERSION_ID < 70000) { |
| 6 | - return; |
|
| 6 | + return; |
|
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | spl_autoload_register(function ($class) { |
| 10 | - $namespace = 'ParagonIE_Sodium_'; |
|
| 11 | - // Does the class use the namespace prefix? |
|
| 12 | - $len = strlen($namespace); |
|
| 13 | - if (strncmp($namespace, $class, $len) !== 0) { |
|
| 14 | - // no, move to the next registered autoloader |
|
| 15 | - return false; |
|
| 16 | - } |
|
| 10 | + $namespace = 'ParagonIE_Sodium_'; |
|
| 11 | + // Does the class use the namespace prefix? |
|
| 12 | + $len = strlen($namespace); |
|
| 13 | + if (strncmp($namespace, $class, $len) !== 0) { |
|
| 14 | + // no, move to the next registered autoloader |
|
| 15 | + return false; |
|
| 16 | + } |
|
| 17 | 17 | |
| 18 | - // Get the relative class name |
|
| 19 | - $relative_class = substr($class, $len); |
|
| 18 | + // Get the relative class name |
|
| 19 | + $relative_class = substr($class, $len); |
|
| 20 | 20 | |
| 21 | - // Replace the namespace prefix with the base directory, replace namespace |
|
| 22 | - // separators with directory separators in the relative class name, append |
|
| 23 | - // with .php |
|
| 24 | - $file = dirname(__FILE__) . '/src/' . str_replace('_', '/', $relative_class) . '.php'; |
|
| 25 | - // if the file exists, require it |
|
| 26 | - if (file_exists($file)) { |
|
| 27 | - require_once $file; |
|
| 28 | - return true; |
|
| 29 | - } |
|
| 30 | - return false; |
|
| 21 | + // Replace the namespace prefix with the base directory, replace namespace |
|
| 22 | + // separators with directory separators in the relative class name, append |
|
| 23 | + // with .php |
|
| 24 | + $file = dirname(__FILE__) . '/src/' . str_replace('_', '/', $relative_class) . '.php'; |
|
| 25 | + // if the file exists, require it |
|
| 26 | + if (file_exists($file)) { |
|
| 27 | + require_once $file; |
|
| 28 | + return true; |
|
| 29 | + } |
|
| 30 | + return false; |
|
| 31 | 31 | }); |
@@ -2,28 +2,28 @@ |
||
| 2 | 2 | /* |
| 3 | 3 | This file should only ever be loaded on PHP 7+ |
| 4 | 4 | */ |
| 5 | -if (PHP_VERSION_ID < 70000) { |
|
| 5 | +if ( PHP_VERSION_ID < 70000 ) { |
|
| 6 | 6 | return; |
| 7 | 7 | } |
| 8 | 8 | |
| 9 | -spl_autoload_register(function ($class) { |
|
| 9 | +spl_autoload_register( function( $class ) { |
|
| 10 | 10 | $namespace = 'ParagonIE_Sodium_'; |
| 11 | 11 | // Does the class use the namespace prefix? |
| 12 | - $len = strlen($namespace); |
|
| 13 | - if (strncmp($namespace, $class, $len) !== 0) { |
|
| 12 | + $len = strlen( $namespace ); |
|
| 13 | + if ( strncmp( $namespace, $class, $len ) !== 0 ) { |
|
| 14 | 14 | // no, move to the next registered autoloader |
| 15 | 15 | return false; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | // Get the relative class name |
| 19 | - $relative_class = substr($class, $len); |
|
| 19 | + $relative_class = substr( $class, $len ); |
|
| 20 | 20 | |
| 21 | 21 | // Replace the namespace prefix with the base directory, replace namespace |
| 22 | 22 | // separators with directory separators in the relative class name, append |
| 23 | 23 | // with .php |
| 24 | - $file = dirname(__FILE__) . '/src/' . str_replace('_', '/', $relative_class) . '.php'; |
|
| 24 | + $file = dirname( __FILE__ ) . '/src/' . str_replace( '_', '/', $relative_class ) . '.php'; |
|
| 25 | 25 | // if the file exists, require it |
| 26 | - if (file_exists($file)) { |
|
| 26 | + if ( file_exists( $file ) ) { |
|
| 27 | 27 | require_once $file; |
| 28 | 28 | return true; |
| 29 | 29 | } |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if (class_exists('ParagonIE_Sodium_Crypto', false)) { |
| 4 | - return; |
|
| 4 | + return; |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | /** |
@@ -14,1642 +14,1642 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | abstract class ParagonIE_Sodium_Crypto |
| 16 | 16 | { |
| 17 | - const aead_chacha20poly1305_KEYBYTES = 32; |
|
| 18 | - const aead_chacha20poly1305_NSECBYTES = 0; |
|
| 19 | - const aead_chacha20poly1305_NPUBBYTES = 8; |
|
| 20 | - const aead_chacha20poly1305_ABYTES = 16; |
|
| 21 | - |
|
| 22 | - const aead_chacha20poly1305_IETF_KEYBYTES = 32; |
|
| 23 | - const aead_chacha20poly1305_IETF_NSECBYTES = 0; |
|
| 24 | - const aead_chacha20poly1305_IETF_NPUBBYTES = 12; |
|
| 25 | - const aead_chacha20poly1305_IETF_ABYTES = 16; |
|
| 26 | - |
|
| 27 | - const aead_xchacha20poly1305_IETF_KEYBYTES = 32; |
|
| 28 | - const aead_xchacha20poly1305_IETF_NSECBYTES = 0; |
|
| 29 | - const aead_xchacha20poly1305_IETF_NPUBBYTES = 24; |
|
| 30 | - const aead_xchacha20poly1305_IETF_ABYTES = 16; |
|
| 31 | - |
|
| 32 | - const box_curve25519xsalsa20poly1305_SEEDBYTES = 32; |
|
| 33 | - const box_curve25519xsalsa20poly1305_PUBLICKEYBYTES = 32; |
|
| 34 | - const box_curve25519xsalsa20poly1305_SECRETKEYBYTES = 32; |
|
| 35 | - const box_curve25519xsalsa20poly1305_BEFORENMBYTES = 32; |
|
| 36 | - const box_curve25519xsalsa20poly1305_NONCEBYTES = 24; |
|
| 37 | - const box_curve25519xsalsa20poly1305_MACBYTES = 16; |
|
| 38 | - const box_curve25519xsalsa20poly1305_BOXZEROBYTES = 16; |
|
| 39 | - const box_curve25519xsalsa20poly1305_ZEROBYTES = 32; |
|
| 40 | - |
|
| 41 | - const onetimeauth_poly1305_BYTES = 16; |
|
| 42 | - const onetimeauth_poly1305_KEYBYTES = 32; |
|
| 43 | - |
|
| 44 | - const secretbox_xsalsa20poly1305_KEYBYTES = 32; |
|
| 45 | - const secretbox_xsalsa20poly1305_NONCEBYTES = 24; |
|
| 46 | - const secretbox_xsalsa20poly1305_MACBYTES = 16; |
|
| 47 | - const secretbox_xsalsa20poly1305_BOXZEROBYTES = 16; |
|
| 48 | - const secretbox_xsalsa20poly1305_ZEROBYTES = 32; |
|
| 49 | - |
|
| 50 | - const secretbox_xchacha20poly1305_KEYBYTES = 32; |
|
| 51 | - const secretbox_xchacha20poly1305_NONCEBYTES = 24; |
|
| 52 | - const secretbox_xchacha20poly1305_MACBYTES = 16; |
|
| 53 | - const secretbox_xchacha20poly1305_BOXZEROBYTES = 16; |
|
| 54 | - const secretbox_xchacha20poly1305_ZEROBYTES = 32; |
|
| 55 | - |
|
| 56 | - const stream_salsa20_KEYBYTES = 32; |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * AEAD Decryption with ChaCha20-Poly1305 |
|
| 60 | - * |
|
| 61 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 62 | - * |
|
| 63 | - * @param string $message |
|
| 64 | - * @param string $ad |
|
| 65 | - * @param string $nonce |
|
| 66 | - * @param string $key |
|
| 67 | - * @return string |
|
| 68 | - * @throws SodiumException |
|
| 69 | - * @throws TypeError |
|
| 70 | - */ |
|
| 71 | - public static function aead_chacha20poly1305_decrypt( |
|
| 72 | - $message = '', |
|
| 73 | - $ad = '', |
|
| 74 | - $nonce = '', |
|
| 75 | - $key = '' |
|
| 76 | - ) { |
|
| 77 | - /** @var int $len - Length of message (ciphertext + MAC) */ |
|
| 78 | - $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 79 | - |
|
| 80 | - /** @var int $clen - Length of ciphertext */ |
|
| 81 | - $clen = $len - self::aead_chacha20poly1305_ABYTES; |
|
| 82 | - |
|
| 83 | - /** @var int $adlen - Length of associated data */ |
|
| 84 | - $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 85 | - |
|
| 86 | - /** @var string $mac - Message authentication code */ |
|
| 87 | - $mac = ParagonIE_Sodium_Core_Util::substr( |
|
| 88 | - $message, |
|
| 89 | - $clen, |
|
| 90 | - self::aead_chacha20poly1305_ABYTES |
|
| 91 | - ); |
|
| 92 | - |
|
| 93 | - /** @var string $ciphertext - The encrypted message (sans MAC) */ |
|
| 94 | - $ciphertext = ParagonIE_Sodium_Core_Util::substr($message, 0, $clen); |
|
| 95 | - |
|
| 96 | - /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 97 | - $block0 = ParagonIE_Sodium_Core_ChaCha20::stream( |
|
| 98 | - 32, |
|
| 99 | - $nonce, |
|
| 100 | - $key |
|
| 101 | - ); |
|
| 102 | - |
|
| 103 | - /* Recalculate the Poly1305 authentication tag (MAC): */ |
|
| 104 | - $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 105 | - try { |
|
| 106 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 107 | - } catch (SodiumException $ex) { |
|
| 108 | - $block0 = null; |
|
| 109 | - } |
|
| 110 | - $state->update($ad); |
|
| 111 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 112 | - $state->update($ciphertext); |
|
| 113 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($clen)); |
|
| 114 | - $computed_mac = $state->finish(); |
|
| 115 | - |
|
| 116 | - /* Compare the given MAC with the recalculated MAC: */ |
|
| 117 | - if (!ParagonIE_Sodium_Core_Util::verify_16($computed_mac, $mac)) { |
|
| 118 | - throw new SodiumException('Invalid MAC'); |
|
| 119 | - } |
|
| 120 | - |
|
| 121 | - // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
|
| 122 | - return ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 123 | - $ciphertext, |
|
| 124 | - $nonce, |
|
| 125 | - $key, |
|
| 126 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 127 | - ); |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - /** |
|
| 131 | - * AEAD Encryption with ChaCha20-Poly1305 |
|
| 132 | - * |
|
| 133 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 134 | - * |
|
| 135 | - * @param string $message |
|
| 136 | - * @param string $ad |
|
| 137 | - * @param string $nonce |
|
| 138 | - * @param string $key |
|
| 139 | - * @return string |
|
| 140 | - * @throws SodiumException |
|
| 141 | - * @throws TypeError |
|
| 142 | - */ |
|
| 143 | - public static function aead_chacha20poly1305_encrypt( |
|
| 144 | - $message = '', |
|
| 145 | - $ad = '', |
|
| 146 | - $nonce = '', |
|
| 147 | - $key = '' |
|
| 148 | - ) { |
|
| 149 | - /** @var int $len - Length of the plaintext message */ |
|
| 150 | - $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 151 | - |
|
| 152 | - /** @var int $adlen - Length of the associated data */ |
|
| 153 | - $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 154 | - |
|
| 155 | - /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 156 | - $block0 = ParagonIE_Sodium_Core_ChaCha20::stream( |
|
| 157 | - 32, |
|
| 158 | - $nonce, |
|
| 159 | - $key |
|
| 160 | - ); |
|
| 161 | - $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 162 | - try { |
|
| 163 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 164 | - } catch (SodiumException $ex) { |
|
| 165 | - $block0 = null; |
|
| 166 | - } |
|
| 167 | - |
|
| 168 | - /** @var string $ciphertext - Raw encrypted data */ |
|
| 169 | - $ciphertext = ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 170 | - $message, |
|
| 171 | - $nonce, |
|
| 172 | - $key, |
|
| 173 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 174 | - ); |
|
| 175 | - |
|
| 176 | - $state->update($ad); |
|
| 177 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 178 | - $state->update($ciphertext); |
|
| 179 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($len)); |
|
| 180 | - return $ciphertext . $state->finish(); |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - /** |
|
| 184 | - * AEAD Decryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 185 | - * |
|
| 186 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 187 | - * |
|
| 188 | - * @param string $message |
|
| 189 | - * @param string $ad |
|
| 190 | - * @param string $nonce |
|
| 191 | - * @param string $key |
|
| 192 | - * @return string |
|
| 193 | - * @throws SodiumException |
|
| 194 | - * @throws TypeError |
|
| 195 | - */ |
|
| 196 | - public static function aead_chacha20poly1305_ietf_decrypt( |
|
| 197 | - $message = '', |
|
| 198 | - $ad = '', |
|
| 199 | - $nonce = '', |
|
| 200 | - $key = '' |
|
| 201 | - ) { |
|
| 202 | - /** @var int $adlen - Length of associated data */ |
|
| 203 | - $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 204 | - |
|
| 205 | - /** @var int $len - Length of message (ciphertext + MAC) */ |
|
| 206 | - $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 207 | - |
|
| 208 | - /** @var int $clen - Length of ciphertext */ |
|
| 209 | - $clen = $len - self::aead_chacha20poly1305_IETF_ABYTES; |
|
| 210 | - |
|
| 211 | - /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 212 | - $block0 = ParagonIE_Sodium_Core_ChaCha20::ietfStream( |
|
| 213 | - 32, |
|
| 214 | - $nonce, |
|
| 215 | - $key |
|
| 216 | - ); |
|
| 217 | - |
|
| 218 | - /** @var string $mac - Message authentication code */ |
|
| 219 | - $mac = ParagonIE_Sodium_Core_Util::substr( |
|
| 220 | - $message, |
|
| 221 | - $len - self::aead_chacha20poly1305_IETF_ABYTES, |
|
| 222 | - self::aead_chacha20poly1305_IETF_ABYTES |
|
| 223 | - ); |
|
| 224 | - |
|
| 225 | - /** @var string $ciphertext - The encrypted message (sans MAC) */ |
|
| 226 | - $ciphertext = ParagonIE_Sodium_Core_Util::substr( |
|
| 227 | - $message, |
|
| 228 | - 0, |
|
| 229 | - $len - self::aead_chacha20poly1305_IETF_ABYTES |
|
| 230 | - ); |
|
| 231 | - |
|
| 232 | - /* Recalculate the Poly1305 authentication tag (MAC): */ |
|
| 233 | - $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 234 | - try { |
|
| 235 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 236 | - } catch (SodiumException $ex) { |
|
| 237 | - $block0 = null; |
|
| 238 | - } |
|
| 239 | - $state->update($ad); |
|
| 240 | - $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 241 | - $state->update($ciphertext); |
|
| 242 | - $state->update(str_repeat("\x00", (0x10 - $clen) & 0xf)); |
|
| 243 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 244 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($clen)); |
|
| 245 | - $computed_mac = $state->finish(); |
|
| 246 | - |
|
| 247 | - /* Compare the given MAC with the recalculated MAC: */ |
|
| 248 | - if (!ParagonIE_Sodium_Core_Util::verify_16($computed_mac, $mac)) { |
|
| 249 | - throw new SodiumException('Invalid MAC'); |
|
| 250 | - } |
|
| 251 | - |
|
| 252 | - // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
|
| 253 | - return ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 254 | - $ciphertext, |
|
| 255 | - $nonce, |
|
| 256 | - $key, |
|
| 257 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 258 | - ); |
|
| 259 | - } |
|
| 260 | - |
|
| 261 | - /** |
|
| 262 | - * AEAD Encryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 263 | - * |
|
| 264 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 265 | - * |
|
| 266 | - * @param string $message |
|
| 267 | - * @param string $ad |
|
| 268 | - * @param string $nonce |
|
| 269 | - * @param string $key |
|
| 270 | - * @return string |
|
| 271 | - * @throws SodiumException |
|
| 272 | - * @throws TypeError |
|
| 273 | - */ |
|
| 274 | - public static function aead_chacha20poly1305_ietf_encrypt( |
|
| 275 | - $message = '', |
|
| 276 | - $ad = '', |
|
| 277 | - $nonce = '', |
|
| 278 | - $key = '' |
|
| 279 | - ) { |
|
| 280 | - /** @var int $len - Length of the plaintext message */ |
|
| 281 | - $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 282 | - |
|
| 283 | - /** @var int $adlen - Length of the associated data */ |
|
| 284 | - $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 285 | - |
|
| 286 | - /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 287 | - $block0 = ParagonIE_Sodium_Core_ChaCha20::ietfStream( |
|
| 288 | - 32, |
|
| 289 | - $nonce, |
|
| 290 | - $key |
|
| 291 | - ); |
|
| 292 | - $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 293 | - try { |
|
| 294 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 295 | - } catch (SodiumException $ex) { |
|
| 296 | - $block0 = null; |
|
| 297 | - } |
|
| 298 | - |
|
| 299 | - /** @var string $ciphertext - Raw encrypted data */ |
|
| 300 | - $ciphertext = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 301 | - $message, |
|
| 302 | - $nonce, |
|
| 303 | - $key, |
|
| 304 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 305 | - ); |
|
| 306 | - |
|
| 307 | - $state->update($ad); |
|
| 308 | - $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 309 | - $state->update($ciphertext); |
|
| 310 | - $state->update(str_repeat("\x00", ((0x10 - $len) & 0xf))); |
|
| 311 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 312 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($len)); |
|
| 313 | - return $ciphertext . $state->finish(); |
|
| 314 | - } |
|
| 315 | - |
|
| 316 | - /** |
|
| 317 | - * AEAD Decryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 318 | - * |
|
| 319 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 320 | - * |
|
| 321 | - * @param string $message |
|
| 322 | - * @param string $ad |
|
| 323 | - * @param string $nonce |
|
| 324 | - * @param string $key |
|
| 325 | - * @return string |
|
| 326 | - * @throws SodiumException |
|
| 327 | - * @throws TypeError |
|
| 328 | - */ |
|
| 329 | - public static function aead_xchacha20poly1305_ietf_decrypt( |
|
| 330 | - $message = '', |
|
| 331 | - $ad = '', |
|
| 332 | - $nonce = '', |
|
| 333 | - $key = '' |
|
| 334 | - ) { |
|
| 335 | - $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
|
| 336 | - ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
|
| 337 | - $key |
|
| 338 | - ); |
|
| 339 | - $nonceLast = "\x00\x00\x00\x00" . |
|
| 340 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8); |
|
| 341 | - |
|
| 342 | - return self::aead_chacha20poly1305_ietf_decrypt($message, $ad, $nonceLast, $subkey); |
|
| 343 | - } |
|
| 344 | - |
|
| 345 | - /** |
|
| 346 | - * AEAD Encryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 347 | - * |
|
| 348 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 349 | - * |
|
| 350 | - * @param string $message |
|
| 351 | - * @param string $ad |
|
| 352 | - * @param string $nonce |
|
| 353 | - * @param string $key |
|
| 354 | - * @return string |
|
| 355 | - * @throws SodiumException |
|
| 356 | - * @throws TypeError |
|
| 357 | - */ |
|
| 358 | - public static function aead_xchacha20poly1305_ietf_encrypt( |
|
| 359 | - $message = '', |
|
| 360 | - $ad = '', |
|
| 361 | - $nonce = '', |
|
| 362 | - $key = '' |
|
| 363 | - ) { |
|
| 364 | - $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
|
| 365 | - ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
|
| 366 | - $key |
|
| 367 | - ); |
|
| 368 | - $nonceLast = "\x00\x00\x00\x00" . |
|
| 369 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8); |
|
| 370 | - |
|
| 371 | - return self::aead_chacha20poly1305_ietf_encrypt($message, $ad, $nonceLast, $subkey); |
|
| 372 | - } |
|
| 373 | - |
|
| 374 | - /** |
|
| 375 | - * HMAC-SHA-512-256 (a.k.a. the leftmost 256 bits of HMAC-SHA-512) |
|
| 376 | - * |
|
| 377 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 378 | - * |
|
| 379 | - * @param string $message |
|
| 380 | - * @param string $key |
|
| 381 | - * @return string |
|
| 382 | - * @throws TypeError |
|
| 383 | - */ |
|
| 384 | - public static function auth($message, $key) |
|
| 385 | - { |
|
| 386 | - return ParagonIE_Sodium_Core_Util::substr( |
|
| 387 | - hash_hmac('sha512', $message, $key, true), |
|
| 388 | - 0, |
|
| 389 | - 32 |
|
| 390 | - ); |
|
| 391 | - } |
|
| 392 | - |
|
| 393 | - /** |
|
| 394 | - * HMAC-SHA-512-256 validation. Constant-time via hash_equals(). |
|
| 395 | - * |
|
| 396 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 397 | - * |
|
| 398 | - * @param string $mac |
|
| 399 | - * @param string $message |
|
| 400 | - * @param string $key |
|
| 401 | - * @return bool |
|
| 402 | - * @throws SodiumException |
|
| 403 | - * @throws TypeError |
|
| 404 | - */ |
|
| 405 | - public static function auth_verify($mac, $message, $key) |
|
| 406 | - { |
|
| 407 | - return ParagonIE_Sodium_Core_Util::hashEquals( |
|
| 408 | - $mac, |
|
| 409 | - self::auth($message, $key) |
|
| 410 | - ); |
|
| 411 | - } |
|
| 412 | - |
|
| 413 | - /** |
|
| 414 | - * X25519 key exchange followed by XSalsa20Poly1305 symmetric encryption |
|
| 415 | - * |
|
| 416 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 417 | - * |
|
| 418 | - * @param string $plaintext |
|
| 419 | - * @param string $nonce |
|
| 420 | - * @param string $keypair |
|
| 421 | - * @return string |
|
| 422 | - * @throws SodiumException |
|
| 423 | - * @throws TypeError |
|
| 424 | - */ |
|
| 425 | - public static function box($plaintext, $nonce, $keypair) |
|
| 426 | - { |
|
| 427 | - $c = self::secretbox( |
|
| 428 | - $plaintext, |
|
| 429 | - $nonce, |
|
| 430 | - self::box_beforenm( |
|
| 431 | - self::box_secretkey($keypair), |
|
| 432 | - self::box_publickey($keypair) |
|
| 433 | - ) |
|
| 434 | - ); |
|
| 435 | - return $c; |
|
| 436 | - } |
|
| 437 | - |
|
| 438 | - /** |
|
| 439 | - * X25519-XSalsa20-Poly1305 with one ephemeral X25519 keypair. |
|
| 440 | - * |
|
| 441 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 442 | - * |
|
| 443 | - * @param string $message |
|
| 444 | - * @param string $publicKey |
|
| 445 | - * @return string |
|
| 446 | - * @throws SodiumException |
|
| 447 | - * @throws TypeError |
|
| 448 | - */ |
|
| 449 | - public static function box_seal($message, $publicKey) |
|
| 450 | - { |
|
| 451 | - /** @var string $ephemeralKeypair */ |
|
| 452 | - $ephemeralKeypair = self::box_keypair(); |
|
| 453 | - |
|
| 454 | - /** @var string $ephemeralSK */ |
|
| 455 | - $ephemeralSK = self::box_secretkey($ephemeralKeypair); |
|
| 456 | - |
|
| 457 | - /** @var string $ephemeralPK */ |
|
| 458 | - $ephemeralPK = self::box_publickey($ephemeralKeypair); |
|
| 459 | - |
|
| 460 | - /** @var string $nonce */ |
|
| 461 | - $nonce = self::generichash( |
|
| 462 | - $ephemeralPK . $publicKey, |
|
| 463 | - '', |
|
| 464 | - 24 |
|
| 465 | - ); |
|
| 466 | - |
|
| 467 | - /** @var string $keypair - The combined keypair used in crypto_box() */ |
|
| 468 | - $keypair = self::box_keypair_from_secretkey_and_publickey($ephemeralSK, $publicKey); |
|
| 469 | - |
|
| 470 | - /** @var string $ciphertext Ciphertext + MAC from crypto_box */ |
|
| 471 | - $ciphertext = self::box($message, $nonce, $keypair); |
|
| 472 | - try { |
|
| 473 | - ParagonIE_Sodium_Compat::memzero($ephemeralKeypair); |
|
| 474 | - ParagonIE_Sodium_Compat::memzero($ephemeralSK); |
|
| 475 | - ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 476 | - } catch (SodiumException $ex) { |
|
| 477 | - $ephemeralKeypair = null; |
|
| 478 | - $ephemeralSK = null; |
|
| 479 | - $nonce = null; |
|
| 480 | - } |
|
| 481 | - return $ephemeralPK . $ciphertext; |
|
| 482 | - } |
|
| 483 | - |
|
| 484 | - /** |
|
| 485 | - * Opens a message encrypted via box_seal(). |
|
| 486 | - * |
|
| 487 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 488 | - * |
|
| 489 | - * @param string $message |
|
| 490 | - * @param string $keypair |
|
| 491 | - * @return string |
|
| 492 | - * @throws SodiumException |
|
| 493 | - * @throws TypeError |
|
| 494 | - */ |
|
| 495 | - public static function box_seal_open($message, $keypair) |
|
| 496 | - { |
|
| 497 | - /** @var string $ephemeralPK */ |
|
| 498 | - $ephemeralPK = ParagonIE_Sodium_Core_Util::substr($message, 0, 32); |
|
| 499 | - |
|
| 500 | - /** @var string $ciphertext (ciphertext + MAC) */ |
|
| 501 | - $ciphertext = ParagonIE_Sodium_Core_Util::substr($message, 32); |
|
| 502 | - |
|
| 503 | - /** @var string $secretKey */ |
|
| 504 | - $secretKey = self::box_secretkey($keypair); |
|
| 505 | - |
|
| 506 | - /** @var string $publicKey */ |
|
| 507 | - $publicKey = self::box_publickey($keypair); |
|
| 508 | - |
|
| 509 | - /** @var string $nonce */ |
|
| 510 | - $nonce = self::generichash( |
|
| 511 | - $ephemeralPK . $publicKey, |
|
| 512 | - '', |
|
| 513 | - 24 |
|
| 514 | - ); |
|
| 515 | - |
|
| 516 | - /** @var string $keypair */ |
|
| 517 | - $keypair = self::box_keypair_from_secretkey_and_publickey($secretKey, $ephemeralPK); |
|
| 518 | - |
|
| 519 | - /** @var string $m */ |
|
| 520 | - $m = self::box_open($ciphertext, $nonce, $keypair); |
|
| 521 | - try { |
|
| 522 | - ParagonIE_Sodium_Compat::memzero($secretKey); |
|
| 523 | - ParagonIE_Sodium_Compat::memzero($ephemeralPK); |
|
| 524 | - ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 525 | - } catch (SodiumException $ex) { |
|
| 526 | - $secretKey = null; |
|
| 527 | - $ephemeralPK = null; |
|
| 528 | - $nonce = null; |
|
| 529 | - } |
|
| 530 | - return $m; |
|
| 531 | - } |
|
| 532 | - |
|
| 533 | - /** |
|
| 534 | - * Used by crypto_box() to get the crypto_secretbox() key. |
|
| 535 | - * |
|
| 536 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 537 | - * |
|
| 538 | - * @param string $sk |
|
| 539 | - * @param string $pk |
|
| 540 | - * @return string |
|
| 541 | - * @throws SodiumException |
|
| 542 | - * @throws TypeError |
|
| 543 | - */ |
|
| 544 | - public static function box_beforenm($sk, $pk) |
|
| 545 | - { |
|
| 546 | - return ParagonIE_Sodium_Core_HSalsa20::hsalsa20( |
|
| 547 | - str_repeat("\x00", 16), |
|
| 548 | - self::scalarmult($sk, $pk) |
|
| 549 | - ); |
|
| 550 | - } |
|
| 551 | - |
|
| 552 | - /** |
|
| 553 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 554 | - * |
|
| 555 | - * @return string |
|
| 556 | - * @throws Exception |
|
| 557 | - * @throws SodiumException |
|
| 558 | - * @throws TypeError |
|
| 559 | - */ |
|
| 560 | - public static function box_keypair() |
|
| 561 | - { |
|
| 562 | - $sKey = random_bytes(32); |
|
| 563 | - $pKey = self::scalarmult_base($sKey); |
|
| 564 | - return $sKey . $pKey; |
|
| 565 | - } |
|
| 566 | - |
|
| 567 | - /** |
|
| 568 | - * @param string $seed |
|
| 569 | - * @return string |
|
| 570 | - * @throws SodiumException |
|
| 571 | - * @throws TypeError |
|
| 572 | - */ |
|
| 573 | - public static function box_seed_keypair($seed) |
|
| 574 | - { |
|
| 575 | - $sKey = ParagonIE_Sodium_Core_Util::substr( |
|
| 576 | - hash('sha512', $seed, true), |
|
| 577 | - 0, |
|
| 578 | - 32 |
|
| 579 | - ); |
|
| 580 | - $pKey = self::scalarmult_base($sKey); |
|
| 581 | - return $sKey . $pKey; |
|
| 582 | - } |
|
| 583 | - |
|
| 584 | - /** |
|
| 585 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 586 | - * |
|
| 587 | - * @param string $sKey |
|
| 588 | - * @param string $pKey |
|
| 589 | - * @return string |
|
| 590 | - * @throws TypeError |
|
| 591 | - */ |
|
| 592 | - public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) |
|
| 593 | - { |
|
| 594 | - return ParagonIE_Sodium_Core_Util::substr($sKey, 0, 32) . |
|
| 595 | - ParagonIE_Sodium_Core_Util::substr($pKey, 0, 32); |
|
| 596 | - } |
|
| 597 | - |
|
| 598 | - /** |
|
| 599 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 600 | - * |
|
| 601 | - * @param string $keypair |
|
| 602 | - * @return string |
|
| 603 | - * @throws RangeException |
|
| 604 | - * @throws TypeError |
|
| 605 | - */ |
|
| 606 | - public static function box_secretkey($keypair) |
|
| 607 | - { |
|
| 608 | - if (ParagonIE_Sodium_Core_Util::strlen($keypair) !== 64) { |
|
| 609 | - throw new RangeException( |
|
| 610 | - 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
|
| 611 | - ); |
|
| 612 | - } |
|
| 613 | - return ParagonIE_Sodium_Core_Util::substr($keypair, 0, 32); |
|
| 614 | - } |
|
| 615 | - |
|
| 616 | - /** |
|
| 617 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 618 | - * |
|
| 619 | - * @param string $keypair |
|
| 620 | - * @return string |
|
| 621 | - * @throws RangeException |
|
| 622 | - * @throws TypeError |
|
| 623 | - */ |
|
| 624 | - public static function box_publickey($keypair) |
|
| 625 | - { |
|
| 626 | - if (ParagonIE_Sodium_Core_Util::strlen($keypair) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES) { |
|
| 627 | - throw new RangeException( |
|
| 628 | - 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
|
| 629 | - ); |
|
| 630 | - } |
|
| 631 | - return ParagonIE_Sodium_Core_Util::substr($keypair, 32, 32); |
|
| 632 | - } |
|
| 633 | - |
|
| 634 | - /** |
|
| 635 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 636 | - * |
|
| 637 | - * @param string $sKey |
|
| 638 | - * @return string |
|
| 639 | - * @throws RangeException |
|
| 640 | - * @throws SodiumException |
|
| 641 | - * @throws TypeError |
|
| 642 | - */ |
|
| 643 | - public static function box_publickey_from_secretkey($sKey) |
|
| 644 | - { |
|
| 645 | - if (ParagonIE_Sodium_Core_Util::strlen($sKey) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES) { |
|
| 646 | - throw new RangeException( |
|
| 647 | - 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES bytes long.' |
|
| 648 | - ); |
|
| 649 | - } |
|
| 650 | - return self::scalarmult_base($sKey); |
|
| 651 | - } |
|
| 652 | - |
|
| 653 | - /** |
|
| 654 | - * Decrypt a message encrypted with box(). |
|
| 655 | - * |
|
| 656 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 657 | - * |
|
| 658 | - * @param string $ciphertext |
|
| 659 | - * @param string $nonce |
|
| 660 | - * @param string $keypair |
|
| 661 | - * @return string |
|
| 662 | - * @throws SodiumException |
|
| 663 | - * @throws TypeError |
|
| 664 | - */ |
|
| 665 | - public static function box_open($ciphertext, $nonce, $keypair) |
|
| 666 | - { |
|
| 667 | - return self::secretbox_open( |
|
| 668 | - $ciphertext, |
|
| 669 | - $nonce, |
|
| 670 | - self::box_beforenm( |
|
| 671 | - self::box_secretkey($keypair), |
|
| 672 | - self::box_publickey($keypair) |
|
| 673 | - ) |
|
| 674 | - ); |
|
| 675 | - } |
|
| 676 | - |
|
| 677 | - /** |
|
| 678 | - * Calculate a BLAKE2b hash. |
|
| 679 | - * |
|
| 680 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 681 | - * |
|
| 682 | - * @param string $message |
|
| 683 | - * @param string|null $key |
|
| 684 | - * @param int $outlen |
|
| 685 | - * @return string |
|
| 686 | - * @throws RangeException |
|
| 687 | - * @throws SodiumException |
|
| 688 | - * @throws TypeError |
|
| 689 | - */ |
|
| 690 | - public static function generichash($message, $key = '', $outlen = 32) |
|
| 691 | - { |
|
| 692 | - // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
|
| 693 | - ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
|
| 694 | - |
|
| 695 | - $k = null; |
|
| 696 | - if (!empty($key)) { |
|
| 697 | - /** @var SplFixedArray $k */ |
|
| 698 | - $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($key); |
|
| 699 | - if ($k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES) { |
|
| 700 | - throw new RangeException('Invalid key size'); |
|
| 701 | - } |
|
| 702 | - } |
|
| 703 | - |
|
| 704 | - /** @var SplFixedArray $in */ |
|
| 705 | - $in = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($message); |
|
| 706 | - |
|
| 707 | - /** @var SplFixedArray $ctx */ |
|
| 708 | - $ctx = ParagonIE_Sodium_Core_BLAKE2b::init($k, $outlen); |
|
| 709 | - ParagonIE_Sodium_Core_BLAKE2b::update($ctx, $in, $in->count()); |
|
| 710 | - |
|
| 711 | - /** @var SplFixedArray $out */ |
|
| 712 | - $out = new SplFixedArray($outlen); |
|
| 713 | - $out = ParagonIE_Sodium_Core_BLAKE2b::finish($ctx, $out); |
|
| 714 | - |
|
| 715 | - /** @var array<int, int> */ |
|
| 716 | - $outArray = $out->toArray(); |
|
| 717 | - return ParagonIE_Sodium_Core_Util::intArrayToString($outArray); |
|
| 718 | - } |
|
| 719 | - |
|
| 720 | - /** |
|
| 721 | - * Finalize a BLAKE2b hashing context, returning the hash. |
|
| 722 | - * |
|
| 723 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 724 | - * |
|
| 725 | - * @param string $ctx |
|
| 726 | - * @param int $outlen |
|
| 727 | - * @return string |
|
| 728 | - * @throws SodiumException |
|
| 729 | - * @throws TypeError |
|
| 730 | - */ |
|
| 731 | - public static function generichash_final($ctx, $outlen = 32) |
|
| 732 | - { |
|
| 733 | - if (!is_string($ctx)) { |
|
| 734 | - throw new TypeError('Context must be a string'); |
|
| 735 | - } |
|
| 736 | - $out = new SplFixedArray($outlen); |
|
| 737 | - |
|
| 738 | - /** @var SplFixedArray $context */ |
|
| 739 | - $context = ParagonIE_Sodium_Core_BLAKE2b::stringToContext($ctx); |
|
| 740 | - |
|
| 741 | - /** @var SplFixedArray $out */ |
|
| 742 | - $out = ParagonIE_Sodium_Core_BLAKE2b::finish($context, $out); |
|
| 743 | - |
|
| 744 | - /** @var array<int, int> */ |
|
| 745 | - $outArray = $out->toArray(); |
|
| 746 | - return ParagonIE_Sodium_Core_Util::intArrayToString($outArray); |
|
| 747 | - } |
|
| 748 | - |
|
| 749 | - /** |
|
| 750 | - * Initialize a hashing context for BLAKE2b. |
|
| 751 | - * |
|
| 752 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 753 | - * |
|
| 754 | - * @param string $key |
|
| 755 | - * @param int $outputLength |
|
| 756 | - * @return string |
|
| 757 | - * @throws RangeException |
|
| 758 | - * @throws SodiumException |
|
| 759 | - * @throws TypeError |
|
| 760 | - */ |
|
| 761 | - public static function generichash_init($key = '', $outputLength = 32) |
|
| 762 | - { |
|
| 763 | - // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
|
| 764 | - ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
|
| 765 | - |
|
| 766 | - $k = null; |
|
| 767 | - if (!empty($key)) { |
|
| 768 | - $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($key); |
|
| 769 | - if ($k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES) { |
|
| 770 | - throw new RangeException('Invalid key size'); |
|
| 771 | - } |
|
| 772 | - } |
|
| 773 | - |
|
| 774 | - /** @var SplFixedArray $ctx */ |
|
| 775 | - $ctx = ParagonIE_Sodium_Core_BLAKE2b::init($k, $outputLength); |
|
| 776 | - |
|
| 777 | - return ParagonIE_Sodium_Core_BLAKE2b::contextToString($ctx); |
|
| 778 | - } |
|
| 779 | - |
|
| 780 | - /** |
|
| 781 | - * Initialize a hashing context for BLAKE2b. |
|
| 782 | - * |
|
| 783 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 784 | - * |
|
| 785 | - * @param string $key |
|
| 786 | - * @param int $outputLength |
|
| 787 | - * @param string $salt |
|
| 788 | - * @param string $personal |
|
| 789 | - * @return string |
|
| 790 | - * @throws RangeException |
|
| 791 | - * @throws SodiumException |
|
| 792 | - * @throws TypeError |
|
| 793 | - */ |
|
| 794 | - public static function generichash_init_salt_personal( |
|
| 795 | - $key = '', |
|
| 796 | - $outputLength = 32, |
|
| 797 | - $salt = '', |
|
| 798 | - $personal = '' |
|
| 799 | - ) { |
|
| 800 | - // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
|
| 801 | - ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
|
| 802 | - |
|
| 803 | - $k = null; |
|
| 804 | - if (!empty($key)) { |
|
| 805 | - $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($key); |
|
| 806 | - if ($k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES) { |
|
| 807 | - throw new RangeException('Invalid key size'); |
|
| 808 | - } |
|
| 809 | - } |
|
| 810 | - if (!empty($salt)) { |
|
| 811 | - $s = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($salt); |
|
| 812 | - } else { |
|
| 813 | - $s = null; |
|
| 814 | - } |
|
| 815 | - if (!empty($salt)) { |
|
| 816 | - $p = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($personal); |
|
| 817 | - } else { |
|
| 818 | - $p = null; |
|
| 819 | - } |
|
| 820 | - |
|
| 821 | - /** @var SplFixedArray $ctx */ |
|
| 822 | - $ctx = ParagonIE_Sodium_Core_BLAKE2b::init($k, $outputLength, $s, $p); |
|
| 823 | - |
|
| 824 | - return ParagonIE_Sodium_Core_BLAKE2b::contextToString($ctx); |
|
| 825 | - } |
|
| 826 | - |
|
| 827 | - /** |
|
| 828 | - * Update a hashing context for BLAKE2b with $message |
|
| 829 | - * |
|
| 830 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 831 | - * |
|
| 832 | - * @param string $ctx |
|
| 833 | - * @param string $message |
|
| 834 | - * @return string |
|
| 835 | - * @throws SodiumException |
|
| 836 | - * @throws TypeError |
|
| 837 | - */ |
|
| 838 | - public static function generichash_update($ctx, $message) |
|
| 839 | - { |
|
| 840 | - // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
|
| 841 | - ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
|
| 842 | - |
|
| 843 | - /** @var SplFixedArray $context */ |
|
| 844 | - $context = ParagonIE_Sodium_Core_BLAKE2b::stringToContext($ctx); |
|
| 845 | - |
|
| 846 | - /** @var SplFixedArray $in */ |
|
| 847 | - $in = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($message); |
|
| 848 | - |
|
| 849 | - ParagonIE_Sodium_Core_BLAKE2b::update($context, $in, $in->count()); |
|
| 850 | - |
|
| 851 | - return ParagonIE_Sodium_Core_BLAKE2b::contextToString($context); |
|
| 852 | - } |
|
| 853 | - |
|
| 854 | - /** |
|
| 855 | - * Libsodium's crypto_kx(). |
|
| 856 | - * |
|
| 857 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 858 | - * |
|
| 859 | - * @param string $my_sk |
|
| 860 | - * @param string $their_pk |
|
| 861 | - * @param string $client_pk |
|
| 862 | - * @param string $server_pk |
|
| 863 | - * @return string |
|
| 864 | - * @throws SodiumException |
|
| 865 | - * @throws TypeError |
|
| 866 | - */ |
|
| 867 | - public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) |
|
| 868 | - { |
|
| 869 | - return ParagonIE_Sodium_Compat::crypto_generichash( |
|
| 870 | - ParagonIE_Sodium_Compat::crypto_scalarmult($my_sk, $their_pk) . |
|
| 871 | - $client_pk . |
|
| 872 | - $server_pk |
|
| 873 | - ); |
|
| 874 | - } |
|
| 875 | - |
|
| 876 | - /** |
|
| 877 | - * ECDH over Curve25519 |
|
| 878 | - * |
|
| 879 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 880 | - * |
|
| 881 | - * @param string $sKey |
|
| 882 | - * @param string $pKey |
|
| 883 | - * @return string |
|
| 884 | - * |
|
| 885 | - * @throws SodiumException |
|
| 886 | - * @throws TypeError |
|
| 887 | - */ |
|
| 888 | - public static function scalarmult($sKey, $pKey) |
|
| 889 | - { |
|
| 890 | - $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10($sKey, $pKey); |
|
| 891 | - self::scalarmult_throw_if_zero($q); |
|
| 892 | - return $q; |
|
| 893 | - } |
|
| 894 | - |
|
| 895 | - /** |
|
| 896 | - * ECDH over Curve25519, using the basepoint. |
|
| 897 | - * Used to get a secret key from a public key. |
|
| 898 | - * |
|
| 899 | - * @param string $secret |
|
| 900 | - * @return string |
|
| 901 | - * |
|
| 902 | - * @throws SodiumException |
|
| 903 | - * @throws TypeError |
|
| 904 | - */ |
|
| 905 | - public static function scalarmult_base($secret) |
|
| 906 | - { |
|
| 907 | - $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10_base($secret); |
|
| 908 | - self::scalarmult_throw_if_zero($q); |
|
| 909 | - return $q; |
|
| 910 | - } |
|
| 911 | - |
|
| 912 | - /** |
|
| 913 | - * This throws an Error if a zero public key was passed to the function. |
|
| 914 | - * |
|
| 915 | - * @param string $q |
|
| 916 | - * @return void |
|
| 917 | - * @throws SodiumException |
|
| 918 | - * @throws TypeError |
|
| 919 | - */ |
|
| 920 | - protected static function scalarmult_throw_if_zero($q) |
|
| 921 | - { |
|
| 922 | - $d = 0; |
|
| 923 | - for ($i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i) { |
|
| 924 | - $d |= ParagonIE_Sodium_Core_Util::chrToInt($q[$i]); |
|
| 925 | - } |
|
| 926 | - |
|
| 927 | - /* branch-free variant of === 0 */ |
|
| 928 | - if (-(1 & (($d - 1) >> 8))) { |
|
| 929 | - throw new SodiumException('Zero public key is not allowed'); |
|
| 930 | - } |
|
| 931 | - } |
|
| 932 | - |
|
| 933 | - /** |
|
| 934 | - * XSalsa20-Poly1305 authenticated symmetric-key encryption. |
|
| 935 | - * |
|
| 936 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 937 | - * |
|
| 938 | - * @param string $plaintext |
|
| 939 | - * @param string $nonce |
|
| 940 | - * @param string $key |
|
| 941 | - * @return string |
|
| 942 | - * @throws SodiumException |
|
| 943 | - * @throws TypeError |
|
| 944 | - */ |
|
| 945 | - public static function secretbox($plaintext, $nonce, $key) |
|
| 946 | - { |
|
| 947 | - /** @var string $subkey */ |
|
| 948 | - $subkey = ParagonIE_Sodium_Core_HSalsa20::hsalsa20($nonce, $key); |
|
| 949 | - |
|
| 950 | - /** @var string $block0 */ |
|
| 951 | - $block0 = str_repeat("\x00", 32); |
|
| 952 | - |
|
| 953 | - /** @var int $mlen - Length of the plaintext message */ |
|
| 954 | - $mlen = ParagonIE_Sodium_Core_Util::strlen($plaintext); |
|
| 955 | - $mlen0 = $mlen; |
|
| 956 | - if ($mlen0 > 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 957 | - $mlen0 = 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES; |
|
| 958 | - } |
|
| 959 | - $block0 .= ParagonIE_Sodium_Core_Util::substr($plaintext, 0, $mlen0); |
|
| 960 | - |
|
| 961 | - /** @var string $block0 */ |
|
| 962 | - $block0 = ParagonIE_Sodium_Core_Salsa20::salsa20_xor( |
|
| 963 | - $block0, |
|
| 964 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 965 | - $subkey |
|
| 966 | - ); |
|
| 967 | - |
|
| 968 | - /** @var string $c */ |
|
| 969 | - $c = ParagonIE_Sodium_Core_Util::substr( |
|
| 970 | - $block0, |
|
| 971 | - self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 972 | - ); |
|
| 973 | - if ($mlen > $mlen0) { |
|
| 974 | - $c .= ParagonIE_Sodium_Core_Salsa20::salsa20_xor_ic( |
|
| 975 | - ParagonIE_Sodium_Core_Util::substr( |
|
| 976 | - $plaintext, |
|
| 977 | - self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 978 | - ), |
|
| 979 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 980 | - 1, |
|
| 981 | - $subkey |
|
| 982 | - ); |
|
| 983 | - } |
|
| 984 | - $state = new ParagonIE_Sodium_Core_Poly1305_State( |
|
| 985 | - ParagonIE_Sodium_Core_Util::substr( |
|
| 986 | - $block0, |
|
| 987 | - 0, |
|
| 988 | - self::onetimeauth_poly1305_KEYBYTES |
|
| 989 | - ) |
|
| 990 | - ); |
|
| 991 | - try { |
|
| 992 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 993 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 994 | - } catch (SodiumException $ex) { |
|
| 995 | - $block0 = null; |
|
| 996 | - $subkey = null; |
|
| 997 | - } |
|
| 998 | - |
|
| 999 | - $state->update($c); |
|
| 1000 | - |
|
| 1001 | - /** @var string $c - MAC || ciphertext */ |
|
| 1002 | - $c = $state->finish() . $c; |
|
| 1003 | - unset($state); |
|
| 1004 | - |
|
| 1005 | - return $c; |
|
| 1006 | - } |
|
| 1007 | - |
|
| 1008 | - /** |
|
| 1009 | - * Decrypt a ciphertext generated via secretbox(). |
|
| 1010 | - * |
|
| 1011 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1012 | - * |
|
| 1013 | - * @param string $ciphertext |
|
| 1014 | - * @param string $nonce |
|
| 1015 | - * @param string $key |
|
| 1016 | - * @return string |
|
| 1017 | - * @throws SodiumException |
|
| 1018 | - * @throws TypeError |
|
| 1019 | - */ |
|
| 1020 | - public static function secretbox_open($ciphertext, $nonce, $key) |
|
| 1021 | - { |
|
| 1022 | - /** @var string $mac */ |
|
| 1023 | - $mac = ParagonIE_Sodium_Core_Util::substr( |
|
| 1024 | - $ciphertext, |
|
| 1025 | - 0, |
|
| 1026 | - self::secretbox_xsalsa20poly1305_MACBYTES |
|
| 1027 | - ); |
|
| 1028 | - |
|
| 1029 | - /** @var string $c */ |
|
| 1030 | - $c = ParagonIE_Sodium_Core_Util::substr( |
|
| 1031 | - $ciphertext, |
|
| 1032 | - self::secretbox_xsalsa20poly1305_MACBYTES |
|
| 1033 | - ); |
|
| 1034 | - |
|
| 1035 | - /** @var int $clen */ |
|
| 1036 | - $clen = ParagonIE_Sodium_Core_Util::strlen($c); |
|
| 1037 | - |
|
| 1038 | - /** @var string $subkey */ |
|
| 1039 | - $subkey = ParagonIE_Sodium_Core_HSalsa20::hsalsa20($nonce, $key); |
|
| 1040 | - |
|
| 1041 | - /** @var string $block0 */ |
|
| 1042 | - $block0 = ParagonIE_Sodium_Core_Salsa20::salsa20( |
|
| 1043 | - 64, |
|
| 1044 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1045 | - $subkey |
|
| 1046 | - ); |
|
| 1047 | - $verified = ParagonIE_Sodium_Core_Poly1305::onetimeauth_verify( |
|
| 1048 | - $mac, |
|
| 1049 | - $c, |
|
| 1050 | - ParagonIE_Sodium_Core_Util::substr($block0, 0, 32) |
|
| 1051 | - ); |
|
| 1052 | - if (!$verified) { |
|
| 1053 | - try { |
|
| 1054 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1055 | - } catch (SodiumException $ex) { |
|
| 1056 | - $subkey = null; |
|
| 1057 | - } |
|
| 1058 | - throw new SodiumException('Invalid MAC'); |
|
| 1059 | - } |
|
| 1060 | - |
|
| 1061 | - /** @var string $m - Decrypted message */ |
|
| 1062 | - $m = ParagonIE_Sodium_Core_Util::xorStrings( |
|
| 1063 | - ParagonIE_Sodium_Core_Util::substr($block0, self::secretbox_xsalsa20poly1305_ZEROBYTES), |
|
| 1064 | - ParagonIE_Sodium_Core_Util::substr($c, 0, self::secretbox_xsalsa20poly1305_ZEROBYTES) |
|
| 1065 | - ); |
|
| 1066 | - if ($clen > self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 1067 | - // We had more than 1 block, so let's continue to decrypt the rest. |
|
| 1068 | - $m .= ParagonIE_Sodium_Core_Salsa20::salsa20_xor_ic( |
|
| 1069 | - ParagonIE_Sodium_Core_Util::substr( |
|
| 1070 | - $c, |
|
| 1071 | - self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 1072 | - ), |
|
| 1073 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1074 | - 1, |
|
| 1075 | - (string) $subkey |
|
| 1076 | - ); |
|
| 1077 | - } |
|
| 1078 | - return $m; |
|
| 1079 | - } |
|
| 1080 | - |
|
| 1081 | - /** |
|
| 1082 | - * XChaCha20-Poly1305 authenticated symmetric-key encryption. |
|
| 1083 | - * |
|
| 1084 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1085 | - * |
|
| 1086 | - * @param string $plaintext |
|
| 1087 | - * @param string $nonce |
|
| 1088 | - * @param string $key |
|
| 1089 | - * @return string |
|
| 1090 | - * @throws SodiumException |
|
| 1091 | - * @throws TypeError |
|
| 1092 | - */ |
|
| 1093 | - public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) |
|
| 1094 | - { |
|
| 1095 | - /** @var string $subkey */ |
|
| 1096 | - $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
|
| 1097 | - ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
|
| 1098 | - $key |
|
| 1099 | - ); |
|
| 1100 | - $nonceLast = ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8); |
|
| 1101 | - |
|
| 1102 | - /** @var string $block0 */ |
|
| 1103 | - $block0 = str_repeat("\x00", 32); |
|
| 1104 | - |
|
| 1105 | - /** @var int $mlen - Length of the plaintext message */ |
|
| 1106 | - $mlen = ParagonIE_Sodium_Core_Util::strlen($plaintext); |
|
| 1107 | - $mlen0 = $mlen; |
|
| 1108 | - if ($mlen0 > 64 - self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1109 | - $mlen0 = 64 - self::secretbox_xchacha20poly1305_ZEROBYTES; |
|
| 1110 | - } |
|
| 1111 | - $block0 .= ParagonIE_Sodium_Core_Util::substr($plaintext, 0, $mlen0); |
|
| 1112 | - |
|
| 1113 | - /** @var string $block0 */ |
|
| 1114 | - $block0 = ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 1115 | - $block0, |
|
| 1116 | - $nonceLast, |
|
| 1117 | - $subkey |
|
| 1118 | - ); |
|
| 1119 | - |
|
| 1120 | - /** @var string $c */ |
|
| 1121 | - $c = ParagonIE_Sodium_Core_Util::substr( |
|
| 1122 | - $block0, |
|
| 1123 | - self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1124 | - ); |
|
| 1125 | - if ($mlen > $mlen0) { |
|
| 1126 | - $c .= ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 1127 | - ParagonIE_Sodium_Core_Util::substr( |
|
| 1128 | - $plaintext, |
|
| 1129 | - self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1130 | - ), |
|
| 1131 | - $nonceLast, |
|
| 1132 | - $subkey, |
|
| 1133 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1134 | - ); |
|
| 1135 | - } |
|
| 1136 | - $state = new ParagonIE_Sodium_Core_Poly1305_State( |
|
| 1137 | - ParagonIE_Sodium_Core_Util::substr( |
|
| 1138 | - $block0, |
|
| 1139 | - 0, |
|
| 1140 | - self::onetimeauth_poly1305_KEYBYTES |
|
| 1141 | - ) |
|
| 1142 | - ); |
|
| 1143 | - try { |
|
| 1144 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 1145 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1146 | - } catch (SodiumException $ex) { |
|
| 1147 | - $block0 = null; |
|
| 1148 | - $subkey = null; |
|
| 1149 | - } |
|
| 1150 | - |
|
| 1151 | - $state->update($c); |
|
| 1152 | - |
|
| 1153 | - /** @var string $c - MAC || ciphertext */ |
|
| 1154 | - $c = $state->finish() . $c; |
|
| 1155 | - unset($state); |
|
| 1156 | - |
|
| 1157 | - return $c; |
|
| 1158 | - } |
|
| 1159 | - |
|
| 1160 | - /** |
|
| 1161 | - * Decrypt a ciphertext generated via secretbox_xchacha20poly1305(). |
|
| 1162 | - * |
|
| 1163 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1164 | - * |
|
| 1165 | - * @param string $ciphertext |
|
| 1166 | - * @param string $nonce |
|
| 1167 | - * @param string $key |
|
| 1168 | - * @return string |
|
| 1169 | - * @throws SodiumException |
|
| 1170 | - * @throws TypeError |
|
| 1171 | - */ |
|
| 1172 | - public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) |
|
| 1173 | - { |
|
| 1174 | - /** @var string $mac */ |
|
| 1175 | - $mac = ParagonIE_Sodium_Core_Util::substr( |
|
| 1176 | - $ciphertext, |
|
| 1177 | - 0, |
|
| 1178 | - self::secretbox_xchacha20poly1305_MACBYTES |
|
| 1179 | - ); |
|
| 1180 | - |
|
| 1181 | - /** @var string $c */ |
|
| 1182 | - $c = ParagonIE_Sodium_Core_Util::substr( |
|
| 1183 | - $ciphertext, |
|
| 1184 | - self::secretbox_xchacha20poly1305_MACBYTES |
|
| 1185 | - ); |
|
| 1186 | - |
|
| 1187 | - /** @var int $clen */ |
|
| 1188 | - $clen = ParagonIE_Sodium_Core_Util::strlen($c); |
|
| 1189 | - |
|
| 1190 | - /** @var string $subkey */ |
|
| 1191 | - $subkey = ParagonIE_Sodium_Core_HChaCha20::hchacha20($nonce, $key); |
|
| 1192 | - |
|
| 1193 | - /** @var string $block0 */ |
|
| 1194 | - $block0 = ParagonIE_Sodium_Core_ChaCha20::stream( |
|
| 1195 | - 64, |
|
| 1196 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1197 | - $subkey |
|
| 1198 | - ); |
|
| 1199 | - $verified = ParagonIE_Sodium_Core_Poly1305::onetimeauth_verify( |
|
| 1200 | - $mac, |
|
| 1201 | - $c, |
|
| 1202 | - ParagonIE_Sodium_Core_Util::substr($block0, 0, 32) |
|
| 1203 | - ); |
|
| 1204 | - |
|
| 1205 | - if (!$verified) { |
|
| 1206 | - try { |
|
| 1207 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1208 | - } catch (SodiumException $ex) { |
|
| 1209 | - $subkey = null; |
|
| 1210 | - } |
|
| 1211 | - throw new SodiumException('Invalid MAC'); |
|
| 1212 | - } |
|
| 1213 | - |
|
| 1214 | - /** @var string $m - Decrypted message */ |
|
| 1215 | - $m = ParagonIE_Sodium_Core_Util::xorStrings( |
|
| 1216 | - ParagonIE_Sodium_Core_Util::substr($block0, self::secretbox_xchacha20poly1305_ZEROBYTES), |
|
| 1217 | - ParagonIE_Sodium_Core_Util::substr($c, 0, self::secretbox_xchacha20poly1305_ZEROBYTES) |
|
| 1218 | - ); |
|
| 1219 | - |
|
| 1220 | - if ($clen > self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1221 | - // We had more than 1 block, so let's continue to decrypt the rest. |
|
| 1222 | - $m .= ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 1223 | - ParagonIE_Sodium_Core_Util::substr( |
|
| 1224 | - $c, |
|
| 1225 | - self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1226 | - ), |
|
| 1227 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1228 | - (string) $subkey, |
|
| 1229 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1230 | - ); |
|
| 1231 | - } |
|
| 1232 | - return $m; |
|
| 1233 | - } |
|
| 1234 | - |
|
| 1235 | - /** |
|
| 1236 | - * @param string $key |
|
| 1237 | - * @return array<int, string> Returns a state and a header. |
|
| 1238 | - * @throws Exception |
|
| 1239 | - * @throws SodiumException |
|
| 1240 | - */ |
|
| 1241 | - public static function secretstream_xchacha20poly1305_init_push($key) |
|
| 1242 | - { |
|
| 1243 | - # randombytes_buf(out, crypto_secretstream_xchacha20poly1305_HEADERBYTES); |
|
| 1244 | - $out = random_bytes(24); |
|
| 1245 | - |
|
| 1246 | - # crypto_core_hchacha20(state->k, out, k, NULL); |
|
| 1247 | - $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20($out, $key); |
|
| 1248 | - $state = new ParagonIE_Sodium_Core_SecretStream_State( |
|
| 1249 | - $subkey, |
|
| 1250 | - ParagonIE_Sodium_Core_Util::substr($out, 16, 8) . str_repeat("\0", 4) |
|
| 1251 | - ); |
|
| 1252 | - |
|
| 1253 | - # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
|
| 1254 | - $state->counterReset(); |
|
| 1255 | - |
|
| 1256 | - # memcpy(STATE_INONCE(state), out + crypto_core_hchacha20_INPUTBYTES, |
|
| 1257 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1258 | - # memset(state->_pad, 0, sizeof state->_pad); |
|
| 1259 | - return array( |
|
| 1260 | - $state->toString(), |
|
| 1261 | - $out |
|
| 1262 | - ); |
|
| 1263 | - } |
|
| 1264 | - |
|
| 1265 | - /** |
|
| 1266 | - * @param string $key |
|
| 1267 | - * @param string $header |
|
| 1268 | - * @return string Returns a state. |
|
| 1269 | - * @throws Exception |
|
| 1270 | - */ |
|
| 1271 | - public static function secretstream_xchacha20poly1305_init_pull($key, $header) |
|
| 1272 | - { |
|
| 1273 | - # crypto_core_hchacha20(state->k, in, k, NULL); |
|
| 1274 | - $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
|
| 1275 | - ParagonIE_Sodium_Core_Util::substr($header, 0, 16), |
|
| 1276 | - $key |
|
| 1277 | - ); |
|
| 1278 | - $state = new ParagonIE_Sodium_Core_SecretStream_State( |
|
| 1279 | - $subkey, |
|
| 1280 | - ParagonIE_Sodium_Core_Util::substr($header, 16) |
|
| 1281 | - ); |
|
| 1282 | - $state->counterReset(); |
|
| 1283 | - # memcpy(STATE_INONCE(state), in + crypto_core_hchacha20_INPUTBYTES, |
|
| 1284 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1285 | - # memset(state->_pad, 0, sizeof state->_pad); |
|
| 1286 | - # return 0; |
|
| 1287 | - return $state->toString(); |
|
| 1288 | - } |
|
| 1289 | - |
|
| 1290 | - /** |
|
| 1291 | - * @param string $state |
|
| 1292 | - * @param string $msg |
|
| 1293 | - * @param string $aad |
|
| 1294 | - * @param int $tag |
|
| 1295 | - * @return string |
|
| 1296 | - * @throws SodiumException |
|
| 1297 | - */ |
|
| 1298 | - public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) |
|
| 1299 | - { |
|
| 1300 | - $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
|
| 1301 | - # crypto_onetimeauth_poly1305_state poly1305_state; |
|
| 1302 | - # unsigned char block[64U]; |
|
| 1303 | - # unsigned char slen[8U]; |
|
| 1304 | - # unsigned char *c; |
|
| 1305 | - # unsigned char *mac; |
|
| 1306 | - |
|
| 1307 | - $msglen = ParagonIE_Sodium_Core_Util::strlen($msg); |
|
| 1308 | - $aadlen = ParagonIE_Sodium_Core_Util::strlen($aad); |
|
| 1309 | - |
|
| 1310 | - if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1311 | - throw new SodiumException( |
|
| 1312 | - 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
|
| 1313 | - ); |
|
| 1314 | - } |
|
| 1315 | - |
|
| 1316 | - # if (outlen_p != NULL) { |
|
| 1317 | - # *outlen_p = 0U; |
|
| 1318 | - # } |
|
| 1319 | - # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
|
| 1320 | - # sodium_misuse(); |
|
| 1321 | - # } |
|
| 1322 | - |
|
| 1323 | - # crypto_stream_chacha20_ietf(block, sizeof block, state->nonce, state->k); |
|
| 1324 | - # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
|
| 1325 | - # sodium_memzero(block, sizeof block); |
|
| 1326 | - $auth = new ParagonIE_Sodium_Core_Poly1305_State( |
|
| 1327 | - ParagonIE_Sodium_Core_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1328 | - ); |
|
| 1329 | - |
|
| 1330 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
|
| 1331 | - $auth->update($aad); |
|
| 1332 | - |
|
| 1333 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
|
| 1334 | - # (0x10 - adlen) & 0xf); |
|
| 1335 | - $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1336 | - |
|
| 1337 | - # memset(block, 0, sizeof block); |
|
| 1338 | - # block[0] = tag; |
|
| 1339 | - # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
|
| 1340 | - # state->nonce, 1U, state->k); |
|
| 1341 | - $block = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1342 | - ParagonIE_Sodium_Core_Util::intToChr($tag) . str_repeat("\0", 63), |
|
| 1343 | - $st->getCombinedNonce(), |
|
| 1344 | - $st->getKey(), |
|
| 1345 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1346 | - ); |
|
| 1347 | - |
|
| 1348 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
|
| 1349 | - $auth->update($block); |
|
| 1350 | - |
|
| 1351 | - # out[0] = block[0]; |
|
| 1352 | - $out = $block[0]; |
|
| 1353 | - # c = out + (sizeof tag); |
|
| 1354 | - # crypto_stream_chacha20_ietf_xor_ic(c, m, mlen, state->nonce, 2U, state->k); |
|
| 1355 | - $cipher = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1356 | - $msg, |
|
| 1357 | - $st->getCombinedNonce(), |
|
| 1358 | - $st->getKey(), |
|
| 1359 | - ParagonIE_Sodium_Core_Util::store64_le(2) |
|
| 1360 | - ); |
|
| 1361 | - |
|
| 1362 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
|
| 1363 | - $auth->update($cipher); |
|
| 1364 | - |
|
| 1365 | - $out .= $cipher; |
|
| 1366 | - unset($cipher); |
|
| 1367 | - |
|
| 1368 | - # crypto_onetimeauth_poly1305_update |
|
| 1369 | - # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
|
| 1370 | - $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1371 | - |
|
| 1372 | - # STORE64_LE(slen, (uint64_t) adlen); |
|
| 1373 | - $slen = ParagonIE_Sodium_Core_Util::store64_le($aadlen); |
|
| 1374 | - |
|
| 1375 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1376 | - $auth->update($slen); |
|
| 1377 | - |
|
| 1378 | - # STORE64_LE(slen, (sizeof block) + mlen); |
|
| 1379 | - $slen = ParagonIE_Sodium_Core_Util::store64_le(64 + $msglen); |
|
| 1380 | - |
|
| 1381 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1382 | - $auth->update($slen); |
|
| 1383 | - |
|
| 1384 | - # mac = c + mlen; |
|
| 1385 | - # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
|
| 1386 | - $mac = $auth->finish(); |
|
| 1387 | - $out .= $mac; |
|
| 1388 | - |
|
| 1389 | - # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
|
| 1390 | - unset($auth); |
|
| 1391 | - |
|
| 1392 | - |
|
| 1393 | - # XOR_BUF(STATE_INONCE(state), mac, |
|
| 1394 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1395 | - $st->xorNonce($mac); |
|
| 1396 | - |
|
| 1397 | - # sodium_increment(STATE_COUNTER(state), |
|
| 1398 | - # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
|
| 1399 | - $st->incrementCounter(); |
|
| 1400 | - // Overwrite by reference: |
|
| 1401 | - $state = $st->toString(); |
|
| 1402 | - |
|
| 1403 | - /** @var bool $rekey */ |
|
| 1404 | - $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1405 | - # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
|
| 1406 | - # sodium_is_zero(STATE_COUNTER(state), |
|
| 1407 | - # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
|
| 1408 | - # crypto_secretstream_xchacha20poly1305_rekey(state); |
|
| 1409 | - # } |
|
| 1410 | - if ($rekey || $st->needsRekey()) { |
|
| 1411 | - // DO REKEY |
|
| 1412 | - self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1413 | - } |
|
| 1414 | - # if (outlen_p != NULL) { |
|
| 1415 | - # *outlen_p = crypto_secretstream_xchacha20poly1305_ABYTES + mlen; |
|
| 1416 | - # } |
|
| 1417 | - return $out; |
|
| 1418 | - } |
|
| 1419 | - |
|
| 1420 | - /** |
|
| 1421 | - * @param string $state |
|
| 1422 | - * @param string $cipher |
|
| 1423 | - * @param string $aad |
|
| 1424 | - * @return bool|array{0: string, 1: int} |
|
| 1425 | - * @throws SodiumException |
|
| 1426 | - */ |
|
| 1427 | - public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') |
|
| 1428 | - { |
|
| 1429 | - $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
|
| 1430 | - |
|
| 1431 | - $cipherlen = ParagonIE_Sodium_Core_Util::strlen($cipher); |
|
| 1432 | - # mlen = inlen - crypto_secretstream_xchacha20poly1305_ABYTES; |
|
| 1433 | - $msglen = $cipherlen - ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_ABYTES; |
|
| 1434 | - $aadlen = ParagonIE_Sodium_Core_Util::strlen($aad); |
|
| 1435 | - |
|
| 1436 | - # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
|
| 1437 | - # sodium_misuse(); |
|
| 1438 | - # } |
|
| 1439 | - if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1440 | - throw new SodiumException( |
|
| 1441 | - 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
|
| 1442 | - ); |
|
| 1443 | - } |
|
| 1444 | - |
|
| 1445 | - # crypto_stream_chacha20_ietf(block, sizeof block, state->nonce, state->k); |
|
| 1446 | - # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
|
| 1447 | - # sodium_memzero(block, sizeof block); |
|
| 1448 | - $auth = new ParagonIE_Sodium_Core_Poly1305_State( |
|
| 1449 | - ParagonIE_Sodium_Core_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1450 | - ); |
|
| 1451 | - |
|
| 1452 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
|
| 1453 | - $auth->update($aad); |
|
| 1454 | - |
|
| 1455 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
|
| 1456 | - # (0x10 - adlen) & 0xf); |
|
| 1457 | - $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1458 | - |
|
| 1459 | - |
|
| 1460 | - # memset(block, 0, sizeof block); |
|
| 1461 | - # block[0] = in[0]; |
|
| 1462 | - # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
|
| 1463 | - # state->nonce, 1U, state->k); |
|
| 1464 | - $block = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1465 | - $cipher[0] . str_repeat("\0", 63), |
|
| 1466 | - $st->getCombinedNonce(), |
|
| 1467 | - $st->getKey(), |
|
| 1468 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1469 | - ); |
|
| 1470 | - # tag = block[0]; |
|
| 1471 | - # block[0] = in[0]; |
|
| 1472 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
|
| 1473 | - $tag = ParagonIE_Sodium_Core_Util::chrToInt($block[0]); |
|
| 1474 | - $block[0] = $cipher[0]; |
|
| 1475 | - $auth->update($block); |
|
| 1476 | - |
|
| 1477 | - |
|
| 1478 | - # c = in + (sizeof tag); |
|
| 1479 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
|
| 1480 | - $auth->update(ParagonIE_Sodium_Core_Util::substr($cipher, 1, $msglen)); |
|
| 1481 | - |
|
| 1482 | - # crypto_onetimeauth_poly1305_update |
|
| 1483 | - # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
|
| 1484 | - $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1485 | - |
|
| 1486 | - # STORE64_LE(slen, (uint64_t) adlen); |
|
| 1487 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1488 | - $slen = ParagonIE_Sodium_Core_Util::store64_le($aadlen); |
|
| 1489 | - $auth->update($slen); |
|
| 1490 | - |
|
| 1491 | - # STORE64_LE(slen, (sizeof block) + mlen); |
|
| 1492 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1493 | - $slen = ParagonIE_Sodium_Core_Util::store64_le(64 + $msglen); |
|
| 1494 | - $auth->update($slen); |
|
| 1495 | - |
|
| 1496 | - # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
|
| 1497 | - # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
|
| 1498 | - $mac = $auth->finish(); |
|
| 1499 | - |
|
| 1500 | - # stored_mac = c + mlen; |
|
| 1501 | - # if (sodium_memcmp(mac, stored_mac, sizeof mac) != 0) { |
|
| 1502 | - # sodium_memzero(mac, sizeof mac); |
|
| 1503 | - # return -1; |
|
| 1504 | - # } |
|
| 1505 | - |
|
| 1506 | - $stored = ParagonIE_Sodium_Core_Util::substr($cipher, $msglen + 1, 16); |
|
| 1507 | - if (!ParagonIE_Sodium_Core_Util::hashEquals($mac, $stored)) { |
|
| 1508 | - return false; |
|
| 1509 | - } |
|
| 1510 | - |
|
| 1511 | - # crypto_stream_chacha20_ietf_xor_ic(m, c, mlen, state->nonce, 2U, state->k); |
|
| 1512 | - $out = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1513 | - ParagonIE_Sodium_Core_Util::substr($cipher, 1, $msglen), |
|
| 1514 | - $st->getCombinedNonce(), |
|
| 1515 | - $st->getKey(), |
|
| 1516 | - ParagonIE_Sodium_Core_Util::store64_le(2) |
|
| 1517 | - ); |
|
| 1518 | - |
|
| 1519 | - # XOR_BUF(STATE_INONCE(state), mac, |
|
| 1520 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1521 | - $st->xorNonce($mac); |
|
| 1522 | - |
|
| 1523 | - # sodium_increment(STATE_COUNTER(state), |
|
| 1524 | - # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
|
| 1525 | - $st->incrementCounter(); |
|
| 1526 | - |
|
| 1527 | - # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
|
| 1528 | - # sodium_is_zero(STATE_COUNTER(state), |
|
| 1529 | - # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
|
| 1530 | - # crypto_secretstream_xchacha20poly1305_rekey(state); |
|
| 1531 | - # } |
|
| 1532 | - |
|
| 1533 | - // Overwrite by reference: |
|
| 1534 | - $state = $st->toString(); |
|
| 1535 | - |
|
| 1536 | - /** @var bool $rekey */ |
|
| 1537 | - $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1538 | - if ($rekey || $st->needsRekey()) { |
|
| 1539 | - // DO REKEY |
|
| 1540 | - self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1541 | - } |
|
| 1542 | - return array($out, $tag); |
|
| 1543 | - } |
|
| 1544 | - |
|
| 1545 | - /** |
|
| 1546 | - * @param string $state |
|
| 1547 | - * @return void |
|
| 1548 | - * @throws SodiumException |
|
| 1549 | - */ |
|
| 1550 | - public static function secretstream_xchacha20poly1305_rekey(&$state) |
|
| 1551 | - { |
|
| 1552 | - $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
|
| 1553 | - # unsigned char new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + |
|
| 1554 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES]; |
|
| 1555 | - # size_t i; |
|
| 1556 | - # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
|
| 1557 | - # new_key_and_inonce[i] = state->k[i]; |
|
| 1558 | - # } |
|
| 1559 | - $new_key_and_inonce = $st->getKey(); |
|
| 1560 | - |
|
| 1561 | - # for (i = 0U; i < crypto_secretstream_xchacha20poly1305_INONCEBYTES; i++) { |
|
| 1562 | - # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i] = |
|
| 1563 | - # STATE_INONCE(state)[i]; |
|
| 1564 | - # } |
|
| 1565 | - $new_key_and_inonce .= ParagonIE_Sodium_Core_Util::substR($st->getNonce(), 0, 8); |
|
| 1566 | - |
|
| 1567 | - # crypto_stream_chacha20_ietf_xor(new_key_and_inonce, new_key_and_inonce, |
|
| 1568 | - # sizeof new_key_and_inonce, |
|
| 1569 | - # state->nonce, state->k); |
|
| 1570 | - |
|
| 1571 | - $st->rekey(ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1572 | - $new_key_and_inonce, |
|
| 1573 | - $st->getCombinedNonce(), |
|
| 1574 | - $st->getKey(), |
|
| 1575 | - ParagonIE_Sodium_Core_Util::store64_le(0) |
|
| 1576 | - )); |
|
| 1577 | - |
|
| 1578 | - # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
|
| 1579 | - # state->k[i] = new_key_and_inonce[i]; |
|
| 1580 | - # } |
|
| 1581 | - # for (i = 0U; i < crypto_secretstream_xchacha20poly1305_INONCEBYTES; i++) { |
|
| 1582 | - # STATE_INONCE(state)[i] = |
|
| 1583 | - # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i]; |
|
| 1584 | - # } |
|
| 1585 | - # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
|
| 1586 | - $st->counterReset(); |
|
| 1587 | - |
|
| 1588 | - $state = $st->toString(); |
|
| 1589 | - } |
|
| 1590 | - |
|
| 1591 | - /** |
|
| 1592 | - * Detached Ed25519 signature. |
|
| 1593 | - * |
|
| 1594 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1595 | - * |
|
| 1596 | - * @param string $message |
|
| 1597 | - * @param string $sk |
|
| 1598 | - * @return string |
|
| 1599 | - * @throws SodiumException |
|
| 1600 | - * @throws TypeError |
|
| 1601 | - */ |
|
| 1602 | - public static function sign_detached($message, $sk) |
|
| 1603 | - { |
|
| 1604 | - return ParagonIE_Sodium_Core_Ed25519::sign_detached($message, $sk); |
|
| 1605 | - } |
|
| 1606 | - |
|
| 1607 | - /** |
|
| 1608 | - * Attached Ed25519 signature. (Returns a signed message.) |
|
| 1609 | - * |
|
| 1610 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1611 | - * |
|
| 1612 | - * @param string $message |
|
| 1613 | - * @param string $sk |
|
| 1614 | - * @return string |
|
| 1615 | - * @throws SodiumException |
|
| 1616 | - * @throws TypeError |
|
| 1617 | - */ |
|
| 1618 | - public static function sign($message, $sk) |
|
| 1619 | - { |
|
| 1620 | - return ParagonIE_Sodium_Core_Ed25519::sign($message, $sk); |
|
| 1621 | - } |
|
| 1622 | - |
|
| 1623 | - /** |
|
| 1624 | - * Opens a signed message. If valid, returns the message. |
|
| 1625 | - * |
|
| 1626 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1627 | - * |
|
| 1628 | - * @param string $signedMessage |
|
| 1629 | - * @param string $pk |
|
| 1630 | - * @return string |
|
| 1631 | - * @throws SodiumException |
|
| 1632 | - * @throws TypeError |
|
| 1633 | - */ |
|
| 1634 | - public static function sign_open($signedMessage, $pk) |
|
| 1635 | - { |
|
| 1636 | - return ParagonIE_Sodium_Core_Ed25519::sign_open($signedMessage, $pk); |
|
| 1637 | - } |
|
| 1638 | - |
|
| 1639 | - /** |
|
| 1640 | - * Verify a detached signature of a given message and public key. |
|
| 1641 | - * |
|
| 1642 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1643 | - * |
|
| 1644 | - * @param string $signature |
|
| 1645 | - * @param string $message |
|
| 1646 | - * @param string $pk |
|
| 1647 | - * @return bool |
|
| 1648 | - * @throws SodiumException |
|
| 1649 | - * @throws TypeError |
|
| 1650 | - */ |
|
| 1651 | - public static function sign_verify_detached($signature, $message, $pk) |
|
| 1652 | - { |
|
| 1653 | - return ParagonIE_Sodium_Core_Ed25519::verify_detached($signature, $message, $pk); |
|
| 1654 | - } |
|
| 17 | + const aead_chacha20poly1305_KEYBYTES = 32; |
|
| 18 | + const aead_chacha20poly1305_NSECBYTES = 0; |
|
| 19 | + const aead_chacha20poly1305_NPUBBYTES = 8; |
|
| 20 | + const aead_chacha20poly1305_ABYTES = 16; |
|
| 21 | + |
|
| 22 | + const aead_chacha20poly1305_IETF_KEYBYTES = 32; |
|
| 23 | + const aead_chacha20poly1305_IETF_NSECBYTES = 0; |
|
| 24 | + const aead_chacha20poly1305_IETF_NPUBBYTES = 12; |
|
| 25 | + const aead_chacha20poly1305_IETF_ABYTES = 16; |
|
| 26 | + |
|
| 27 | + const aead_xchacha20poly1305_IETF_KEYBYTES = 32; |
|
| 28 | + const aead_xchacha20poly1305_IETF_NSECBYTES = 0; |
|
| 29 | + const aead_xchacha20poly1305_IETF_NPUBBYTES = 24; |
|
| 30 | + const aead_xchacha20poly1305_IETF_ABYTES = 16; |
|
| 31 | + |
|
| 32 | + const box_curve25519xsalsa20poly1305_SEEDBYTES = 32; |
|
| 33 | + const box_curve25519xsalsa20poly1305_PUBLICKEYBYTES = 32; |
|
| 34 | + const box_curve25519xsalsa20poly1305_SECRETKEYBYTES = 32; |
|
| 35 | + const box_curve25519xsalsa20poly1305_BEFORENMBYTES = 32; |
|
| 36 | + const box_curve25519xsalsa20poly1305_NONCEBYTES = 24; |
|
| 37 | + const box_curve25519xsalsa20poly1305_MACBYTES = 16; |
|
| 38 | + const box_curve25519xsalsa20poly1305_BOXZEROBYTES = 16; |
|
| 39 | + const box_curve25519xsalsa20poly1305_ZEROBYTES = 32; |
|
| 40 | + |
|
| 41 | + const onetimeauth_poly1305_BYTES = 16; |
|
| 42 | + const onetimeauth_poly1305_KEYBYTES = 32; |
|
| 43 | + |
|
| 44 | + const secretbox_xsalsa20poly1305_KEYBYTES = 32; |
|
| 45 | + const secretbox_xsalsa20poly1305_NONCEBYTES = 24; |
|
| 46 | + const secretbox_xsalsa20poly1305_MACBYTES = 16; |
|
| 47 | + const secretbox_xsalsa20poly1305_BOXZEROBYTES = 16; |
|
| 48 | + const secretbox_xsalsa20poly1305_ZEROBYTES = 32; |
|
| 49 | + |
|
| 50 | + const secretbox_xchacha20poly1305_KEYBYTES = 32; |
|
| 51 | + const secretbox_xchacha20poly1305_NONCEBYTES = 24; |
|
| 52 | + const secretbox_xchacha20poly1305_MACBYTES = 16; |
|
| 53 | + const secretbox_xchacha20poly1305_BOXZEROBYTES = 16; |
|
| 54 | + const secretbox_xchacha20poly1305_ZEROBYTES = 32; |
|
| 55 | + |
|
| 56 | + const stream_salsa20_KEYBYTES = 32; |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * AEAD Decryption with ChaCha20-Poly1305 |
|
| 60 | + * |
|
| 61 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 62 | + * |
|
| 63 | + * @param string $message |
|
| 64 | + * @param string $ad |
|
| 65 | + * @param string $nonce |
|
| 66 | + * @param string $key |
|
| 67 | + * @return string |
|
| 68 | + * @throws SodiumException |
|
| 69 | + * @throws TypeError |
|
| 70 | + */ |
|
| 71 | + public static function aead_chacha20poly1305_decrypt( |
|
| 72 | + $message = '', |
|
| 73 | + $ad = '', |
|
| 74 | + $nonce = '', |
|
| 75 | + $key = '' |
|
| 76 | + ) { |
|
| 77 | + /** @var int $len - Length of message (ciphertext + MAC) */ |
|
| 78 | + $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 79 | + |
|
| 80 | + /** @var int $clen - Length of ciphertext */ |
|
| 81 | + $clen = $len - self::aead_chacha20poly1305_ABYTES; |
|
| 82 | + |
|
| 83 | + /** @var int $adlen - Length of associated data */ |
|
| 84 | + $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 85 | + |
|
| 86 | + /** @var string $mac - Message authentication code */ |
|
| 87 | + $mac = ParagonIE_Sodium_Core_Util::substr( |
|
| 88 | + $message, |
|
| 89 | + $clen, |
|
| 90 | + self::aead_chacha20poly1305_ABYTES |
|
| 91 | + ); |
|
| 92 | + |
|
| 93 | + /** @var string $ciphertext - The encrypted message (sans MAC) */ |
|
| 94 | + $ciphertext = ParagonIE_Sodium_Core_Util::substr($message, 0, $clen); |
|
| 95 | + |
|
| 96 | + /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 97 | + $block0 = ParagonIE_Sodium_Core_ChaCha20::stream( |
|
| 98 | + 32, |
|
| 99 | + $nonce, |
|
| 100 | + $key |
|
| 101 | + ); |
|
| 102 | + |
|
| 103 | + /* Recalculate the Poly1305 authentication tag (MAC): */ |
|
| 104 | + $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 105 | + try { |
|
| 106 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 107 | + } catch (SodiumException $ex) { |
|
| 108 | + $block0 = null; |
|
| 109 | + } |
|
| 110 | + $state->update($ad); |
|
| 111 | + $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 112 | + $state->update($ciphertext); |
|
| 113 | + $state->update(ParagonIE_Sodium_Core_Util::store64_le($clen)); |
|
| 114 | + $computed_mac = $state->finish(); |
|
| 115 | + |
|
| 116 | + /* Compare the given MAC with the recalculated MAC: */ |
|
| 117 | + if (!ParagonIE_Sodium_Core_Util::verify_16($computed_mac, $mac)) { |
|
| 118 | + throw new SodiumException('Invalid MAC'); |
|
| 119 | + } |
|
| 120 | + |
|
| 121 | + // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
|
| 122 | + return ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 123 | + $ciphertext, |
|
| 124 | + $nonce, |
|
| 125 | + $key, |
|
| 126 | + ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 127 | + ); |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + /** |
|
| 131 | + * AEAD Encryption with ChaCha20-Poly1305 |
|
| 132 | + * |
|
| 133 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 134 | + * |
|
| 135 | + * @param string $message |
|
| 136 | + * @param string $ad |
|
| 137 | + * @param string $nonce |
|
| 138 | + * @param string $key |
|
| 139 | + * @return string |
|
| 140 | + * @throws SodiumException |
|
| 141 | + * @throws TypeError |
|
| 142 | + */ |
|
| 143 | + public static function aead_chacha20poly1305_encrypt( |
|
| 144 | + $message = '', |
|
| 145 | + $ad = '', |
|
| 146 | + $nonce = '', |
|
| 147 | + $key = '' |
|
| 148 | + ) { |
|
| 149 | + /** @var int $len - Length of the plaintext message */ |
|
| 150 | + $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 151 | + |
|
| 152 | + /** @var int $adlen - Length of the associated data */ |
|
| 153 | + $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 154 | + |
|
| 155 | + /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 156 | + $block0 = ParagonIE_Sodium_Core_ChaCha20::stream( |
|
| 157 | + 32, |
|
| 158 | + $nonce, |
|
| 159 | + $key |
|
| 160 | + ); |
|
| 161 | + $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 162 | + try { |
|
| 163 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 164 | + } catch (SodiumException $ex) { |
|
| 165 | + $block0 = null; |
|
| 166 | + } |
|
| 167 | + |
|
| 168 | + /** @var string $ciphertext - Raw encrypted data */ |
|
| 169 | + $ciphertext = ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 170 | + $message, |
|
| 171 | + $nonce, |
|
| 172 | + $key, |
|
| 173 | + ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 174 | + ); |
|
| 175 | + |
|
| 176 | + $state->update($ad); |
|
| 177 | + $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 178 | + $state->update($ciphertext); |
|
| 179 | + $state->update(ParagonIE_Sodium_Core_Util::store64_le($len)); |
|
| 180 | + return $ciphertext . $state->finish(); |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + /** |
|
| 184 | + * AEAD Decryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 185 | + * |
|
| 186 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 187 | + * |
|
| 188 | + * @param string $message |
|
| 189 | + * @param string $ad |
|
| 190 | + * @param string $nonce |
|
| 191 | + * @param string $key |
|
| 192 | + * @return string |
|
| 193 | + * @throws SodiumException |
|
| 194 | + * @throws TypeError |
|
| 195 | + */ |
|
| 196 | + public static function aead_chacha20poly1305_ietf_decrypt( |
|
| 197 | + $message = '', |
|
| 198 | + $ad = '', |
|
| 199 | + $nonce = '', |
|
| 200 | + $key = '' |
|
| 201 | + ) { |
|
| 202 | + /** @var int $adlen - Length of associated data */ |
|
| 203 | + $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 204 | + |
|
| 205 | + /** @var int $len - Length of message (ciphertext + MAC) */ |
|
| 206 | + $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 207 | + |
|
| 208 | + /** @var int $clen - Length of ciphertext */ |
|
| 209 | + $clen = $len - self::aead_chacha20poly1305_IETF_ABYTES; |
|
| 210 | + |
|
| 211 | + /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 212 | + $block0 = ParagonIE_Sodium_Core_ChaCha20::ietfStream( |
|
| 213 | + 32, |
|
| 214 | + $nonce, |
|
| 215 | + $key |
|
| 216 | + ); |
|
| 217 | + |
|
| 218 | + /** @var string $mac - Message authentication code */ |
|
| 219 | + $mac = ParagonIE_Sodium_Core_Util::substr( |
|
| 220 | + $message, |
|
| 221 | + $len - self::aead_chacha20poly1305_IETF_ABYTES, |
|
| 222 | + self::aead_chacha20poly1305_IETF_ABYTES |
|
| 223 | + ); |
|
| 224 | + |
|
| 225 | + /** @var string $ciphertext - The encrypted message (sans MAC) */ |
|
| 226 | + $ciphertext = ParagonIE_Sodium_Core_Util::substr( |
|
| 227 | + $message, |
|
| 228 | + 0, |
|
| 229 | + $len - self::aead_chacha20poly1305_IETF_ABYTES |
|
| 230 | + ); |
|
| 231 | + |
|
| 232 | + /* Recalculate the Poly1305 authentication tag (MAC): */ |
|
| 233 | + $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 234 | + try { |
|
| 235 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 236 | + } catch (SodiumException $ex) { |
|
| 237 | + $block0 = null; |
|
| 238 | + } |
|
| 239 | + $state->update($ad); |
|
| 240 | + $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 241 | + $state->update($ciphertext); |
|
| 242 | + $state->update(str_repeat("\x00", (0x10 - $clen) & 0xf)); |
|
| 243 | + $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 244 | + $state->update(ParagonIE_Sodium_Core_Util::store64_le($clen)); |
|
| 245 | + $computed_mac = $state->finish(); |
|
| 246 | + |
|
| 247 | + /* Compare the given MAC with the recalculated MAC: */ |
|
| 248 | + if (!ParagonIE_Sodium_Core_Util::verify_16($computed_mac, $mac)) { |
|
| 249 | + throw new SodiumException('Invalid MAC'); |
|
| 250 | + } |
|
| 251 | + |
|
| 252 | + // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
|
| 253 | + return ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 254 | + $ciphertext, |
|
| 255 | + $nonce, |
|
| 256 | + $key, |
|
| 257 | + ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 258 | + ); |
|
| 259 | + } |
|
| 260 | + |
|
| 261 | + /** |
|
| 262 | + * AEAD Encryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 263 | + * |
|
| 264 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 265 | + * |
|
| 266 | + * @param string $message |
|
| 267 | + * @param string $ad |
|
| 268 | + * @param string $nonce |
|
| 269 | + * @param string $key |
|
| 270 | + * @return string |
|
| 271 | + * @throws SodiumException |
|
| 272 | + * @throws TypeError |
|
| 273 | + */ |
|
| 274 | + public static function aead_chacha20poly1305_ietf_encrypt( |
|
| 275 | + $message = '', |
|
| 276 | + $ad = '', |
|
| 277 | + $nonce = '', |
|
| 278 | + $key = '' |
|
| 279 | + ) { |
|
| 280 | + /** @var int $len - Length of the plaintext message */ |
|
| 281 | + $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 282 | + |
|
| 283 | + /** @var int $adlen - Length of the associated data */ |
|
| 284 | + $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 285 | + |
|
| 286 | + /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 287 | + $block0 = ParagonIE_Sodium_Core_ChaCha20::ietfStream( |
|
| 288 | + 32, |
|
| 289 | + $nonce, |
|
| 290 | + $key |
|
| 291 | + ); |
|
| 292 | + $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 293 | + try { |
|
| 294 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 295 | + } catch (SodiumException $ex) { |
|
| 296 | + $block0 = null; |
|
| 297 | + } |
|
| 298 | + |
|
| 299 | + /** @var string $ciphertext - Raw encrypted data */ |
|
| 300 | + $ciphertext = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 301 | + $message, |
|
| 302 | + $nonce, |
|
| 303 | + $key, |
|
| 304 | + ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 305 | + ); |
|
| 306 | + |
|
| 307 | + $state->update($ad); |
|
| 308 | + $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 309 | + $state->update($ciphertext); |
|
| 310 | + $state->update(str_repeat("\x00", ((0x10 - $len) & 0xf))); |
|
| 311 | + $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 312 | + $state->update(ParagonIE_Sodium_Core_Util::store64_le($len)); |
|
| 313 | + return $ciphertext . $state->finish(); |
|
| 314 | + } |
|
| 315 | + |
|
| 316 | + /** |
|
| 317 | + * AEAD Decryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 318 | + * |
|
| 319 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 320 | + * |
|
| 321 | + * @param string $message |
|
| 322 | + * @param string $ad |
|
| 323 | + * @param string $nonce |
|
| 324 | + * @param string $key |
|
| 325 | + * @return string |
|
| 326 | + * @throws SodiumException |
|
| 327 | + * @throws TypeError |
|
| 328 | + */ |
|
| 329 | + public static function aead_xchacha20poly1305_ietf_decrypt( |
|
| 330 | + $message = '', |
|
| 331 | + $ad = '', |
|
| 332 | + $nonce = '', |
|
| 333 | + $key = '' |
|
| 334 | + ) { |
|
| 335 | + $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
|
| 336 | + ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
|
| 337 | + $key |
|
| 338 | + ); |
|
| 339 | + $nonceLast = "\x00\x00\x00\x00" . |
|
| 340 | + ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8); |
|
| 341 | + |
|
| 342 | + return self::aead_chacha20poly1305_ietf_decrypt($message, $ad, $nonceLast, $subkey); |
|
| 343 | + } |
|
| 344 | + |
|
| 345 | + /** |
|
| 346 | + * AEAD Encryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 347 | + * |
|
| 348 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 349 | + * |
|
| 350 | + * @param string $message |
|
| 351 | + * @param string $ad |
|
| 352 | + * @param string $nonce |
|
| 353 | + * @param string $key |
|
| 354 | + * @return string |
|
| 355 | + * @throws SodiumException |
|
| 356 | + * @throws TypeError |
|
| 357 | + */ |
|
| 358 | + public static function aead_xchacha20poly1305_ietf_encrypt( |
|
| 359 | + $message = '', |
|
| 360 | + $ad = '', |
|
| 361 | + $nonce = '', |
|
| 362 | + $key = '' |
|
| 363 | + ) { |
|
| 364 | + $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
|
| 365 | + ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
|
| 366 | + $key |
|
| 367 | + ); |
|
| 368 | + $nonceLast = "\x00\x00\x00\x00" . |
|
| 369 | + ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8); |
|
| 370 | + |
|
| 371 | + return self::aead_chacha20poly1305_ietf_encrypt($message, $ad, $nonceLast, $subkey); |
|
| 372 | + } |
|
| 373 | + |
|
| 374 | + /** |
|
| 375 | + * HMAC-SHA-512-256 (a.k.a. the leftmost 256 bits of HMAC-SHA-512) |
|
| 376 | + * |
|
| 377 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 378 | + * |
|
| 379 | + * @param string $message |
|
| 380 | + * @param string $key |
|
| 381 | + * @return string |
|
| 382 | + * @throws TypeError |
|
| 383 | + */ |
|
| 384 | + public static function auth($message, $key) |
|
| 385 | + { |
|
| 386 | + return ParagonIE_Sodium_Core_Util::substr( |
|
| 387 | + hash_hmac('sha512', $message, $key, true), |
|
| 388 | + 0, |
|
| 389 | + 32 |
|
| 390 | + ); |
|
| 391 | + } |
|
| 392 | + |
|
| 393 | + /** |
|
| 394 | + * HMAC-SHA-512-256 validation. Constant-time via hash_equals(). |
|
| 395 | + * |
|
| 396 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 397 | + * |
|
| 398 | + * @param string $mac |
|
| 399 | + * @param string $message |
|
| 400 | + * @param string $key |
|
| 401 | + * @return bool |
|
| 402 | + * @throws SodiumException |
|
| 403 | + * @throws TypeError |
|
| 404 | + */ |
|
| 405 | + public static function auth_verify($mac, $message, $key) |
|
| 406 | + { |
|
| 407 | + return ParagonIE_Sodium_Core_Util::hashEquals( |
|
| 408 | + $mac, |
|
| 409 | + self::auth($message, $key) |
|
| 410 | + ); |
|
| 411 | + } |
|
| 412 | + |
|
| 413 | + /** |
|
| 414 | + * X25519 key exchange followed by XSalsa20Poly1305 symmetric encryption |
|
| 415 | + * |
|
| 416 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 417 | + * |
|
| 418 | + * @param string $plaintext |
|
| 419 | + * @param string $nonce |
|
| 420 | + * @param string $keypair |
|
| 421 | + * @return string |
|
| 422 | + * @throws SodiumException |
|
| 423 | + * @throws TypeError |
|
| 424 | + */ |
|
| 425 | + public static function box($plaintext, $nonce, $keypair) |
|
| 426 | + { |
|
| 427 | + $c = self::secretbox( |
|
| 428 | + $plaintext, |
|
| 429 | + $nonce, |
|
| 430 | + self::box_beforenm( |
|
| 431 | + self::box_secretkey($keypair), |
|
| 432 | + self::box_publickey($keypair) |
|
| 433 | + ) |
|
| 434 | + ); |
|
| 435 | + return $c; |
|
| 436 | + } |
|
| 437 | + |
|
| 438 | + /** |
|
| 439 | + * X25519-XSalsa20-Poly1305 with one ephemeral X25519 keypair. |
|
| 440 | + * |
|
| 441 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 442 | + * |
|
| 443 | + * @param string $message |
|
| 444 | + * @param string $publicKey |
|
| 445 | + * @return string |
|
| 446 | + * @throws SodiumException |
|
| 447 | + * @throws TypeError |
|
| 448 | + */ |
|
| 449 | + public static function box_seal($message, $publicKey) |
|
| 450 | + { |
|
| 451 | + /** @var string $ephemeralKeypair */ |
|
| 452 | + $ephemeralKeypair = self::box_keypair(); |
|
| 453 | + |
|
| 454 | + /** @var string $ephemeralSK */ |
|
| 455 | + $ephemeralSK = self::box_secretkey($ephemeralKeypair); |
|
| 456 | + |
|
| 457 | + /** @var string $ephemeralPK */ |
|
| 458 | + $ephemeralPK = self::box_publickey($ephemeralKeypair); |
|
| 459 | + |
|
| 460 | + /** @var string $nonce */ |
|
| 461 | + $nonce = self::generichash( |
|
| 462 | + $ephemeralPK . $publicKey, |
|
| 463 | + '', |
|
| 464 | + 24 |
|
| 465 | + ); |
|
| 466 | + |
|
| 467 | + /** @var string $keypair - The combined keypair used in crypto_box() */ |
|
| 468 | + $keypair = self::box_keypair_from_secretkey_and_publickey($ephemeralSK, $publicKey); |
|
| 469 | + |
|
| 470 | + /** @var string $ciphertext Ciphertext + MAC from crypto_box */ |
|
| 471 | + $ciphertext = self::box($message, $nonce, $keypair); |
|
| 472 | + try { |
|
| 473 | + ParagonIE_Sodium_Compat::memzero($ephemeralKeypair); |
|
| 474 | + ParagonIE_Sodium_Compat::memzero($ephemeralSK); |
|
| 475 | + ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 476 | + } catch (SodiumException $ex) { |
|
| 477 | + $ephemeralKeypair = null; |
|
| 478 | + $ephemeralSK = null; |
|
| 479 | + $nonce = null; |
|
| 480 | + } |
|
| 481 | + return $ephemeralPK . $ciphertext; |
|
| 482 | + } |
|
| 483 | + |
|
| 484 | + /** |
|
| 485 | + * Opens a message encrypted via box_seal(). |
|
| 486 | + * |
|
| 487 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 488 | + * |
|
| 489 | + * @param string $message |
|
| 490 | + * @param string $keypair |
|
| 491 | + * @return string |
|
| 492 | + * @throws SodiumException |
|
| 493 | + * @throws TypeError |
|
| 494 | + */ |
|
| 495 | + public static function box_seal_open($message, $keypair) |
|
| 496 | + { |
|
| 497 | + /** @var string $ephemeralPK */ |
|
| 498 | + $ephemeralPK = ParagonIE_Sodium_Core_Util::substr($message, 0, 32); |
|
| 499 | + |
|
| 500 | + /** @var string $ciphertext (ciphertext + MAC) */ |
|
| 501 | + $ciphertext = ParagonIE_Sodium_Core_Util::substr($message, 32); |
|
| 502 | + |
|
| 503 | + /** @var string $secretKey */ |
|
| 504 | + $secretKey = self::box_secretkey($keypair); |
|
| 505 | + |
|
| 506 | + /** @var string $publicKey */ |
|
| 507 | + $publicKey = self::box_publickey($keypair); |
|
| 508 | + |
|
| 509 | + /** @var string $nonce */ |
|
| 510 | + $nonce = self::generichash( |
|
| 511 | + $ephemeralPK . $publicKey, |
|
| 512 | + '', |
|
| 513 | + 24 |
|
| 514 | + ); |
|
| 515 | + |
|
| 516 | + /** @var string $keypair */ |
|
| 517 | + $keypair = self::box_keypair_from_secretkey_and_publickey($secretKey, $ephemeralPK); |
|
| 518 | + |
|
| 519 | + /** @var string $m */ |
|
| 520 | + $m = self::box_open($ciphertext, $nonce, $keypair); |
|
| 521 | + try { |
|
| 522 | + ParagonIE_Sodium_Compat::memzero($secretKey); |
|
| 523 | + ParagonIE_Sodium_Compat::memzero($ephemeralPK); |
|
| 524 | + ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 525 | + } catch (SodiumException $ex) { |
|
| 526 | + $secretKey = null; |
|
| 527 | + $ephemeralPK = null; |
|
| 528 | + $nonce = null; |
|
| 529 | + } |
|
| 530 | + return $m; |
|
| 531 | + } |
|
| 532 | + |
|
| 533 | + /** |
|
| 534 | + * Used by crypto_box() to get the crypto_secretbox() key. |
|
| 535 | + * |
|
| 536 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 537 | + * |
|
| 538 | + * @param string $sk |
|
| 539 | + * @param string $pk |
|
| 540 | + * @return string |
|
| 541 | + * @throws SodiumException |
|
| 542 | + * @throws TypeError |
|
| 543 | + */ |
|
| 544 | + public static function box_beforenm($sk, $pk) |
|
| 545 | + { |
|
| 546 | + return ParagonIE_Sodium_Core_HSalsa20::hsalsa20( |
|
| 547 | + str_repeat("\x00", 16), |
|
| 548 | + self::scalarmult($sk, $pk) |
|
| 549 | + ); |
|
| 550 | + } |
|
| 551 | + |
|
| 552 | + /** |
|
| 553 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 554 | + * |
|
| 555 | + * @return string |
|
| 556 | + * @throws Exception |
|
| 557 | + * @throws SodiumException |
|
| 558 | + * @throws TypeError |
|
| 559 | + */ |
|
| 560 | + public static function box_keypair() |
|
| 561 | + { |
|
| 562 | + $sKey = random_bytes(32); |
|
| 563 | + $pKey = self::scalarmult_base($sKey); |
|
| 564 | + return $sKey . $pKey; |
|
| 565 | + } |
|
| 566 | + |
|
| 567 | + /** |
|
| 568 | + * @param string $seed |
|
| 569 | + * @return string |
|
| 570 | + * @throws SodiumException |
|
| 571 | + * @throws TypeError |
|
| 572 | + */ |
|
| 573 | + public static function box_seed_keypair($seed) |
|
| 574 | + { |
|
| 575 | + $sKey = ParagonIE_Sodium_Core_Util::substr( |
|
| 576 | + hash('sha512', $seed, true), |
|
| 577 | + 0, |
|
| 578 | + 32 |
|
| 579 | + ); |
|
| 580 | + $pKey = self::scalarmult_base($sKey); |
|
| 581 | + return $sKey . $pKey; |
|
| 582 | + } |
|
| 583 | + |
|
| 584 | + /** |
|
| 585 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 586 | + * |
|
| 587 | + * @param string $sKey |
|
| 588 | + * @param string $pKey |
|
| 589 | + * @return string |
|
| 590 | + * @throws TypeError |
|
| 591 | + */ |
|
| 592 | + public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) |
|
| 593 | + { |
|
| 594 | + return ParagonIE_Sodium_Core_Util::substr($sKey, 0, 32) . |
|
| 595 | + ParagonIE_Sodium_Core_Util::substr($pKey, 0, 32); |
|
| 596 | + } |
|
| 597 | + |
|
| 598 | + /** |
|
| 599 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 600 | + * |
|
| 601 | + * @param string $keypair |
|
| 602 | + * @return string |
|
| 603 | + * @throws RangeException |
|
| 604 | + * @throws TypeError |
|
| 605 | + */ |
|
| 606 | + public static function box_secretkey($keypair) |
|
| 607 | + { |
|
| 608 | + if (ParagonIE_Sodium_Core_Util::strlen($keypair) !== 64) { |
|
| 609 | + throw new RangeException( |
|
| 610 | + 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
|
| 611 | + ); |
|
| 612 | + } |
|
| 613 | + return ParagonIE_Sodium_Core_Util::substr($keypair, 0, 32); |
|
| 614 | + } |
|
| 615 | + |
|
| 616 | + /** |
|
| 617 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 618 | + * |
|
| 619 | + * @param string $keypair |
|
| 620 | + * @return string |
|
| 621 | + * @throws RangeException |
|
| 622 | + * @throws TypeError |
|
| 623 | + */ |
|
| 624 | + public static function box_publickey($keypair) |
|
| 625 | + { |
|
| 626 | + if (ParagonIE_Sodium_Core_Util::strlen($keypair) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES) { |
|
| 627 | + throw new RangeException( |
|
| 628 | + 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
|
| 629 | + ); |
|
| 630 | + } |
|
| 631 | + return ParagonIE_Sodium_Core_Util::substr($keypair, 32, 32); |
|
| 632 | + } |
|
| 633 | + |
|
| 634 | + /** |
|
| 635 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 636 | + * |
|
| 637 | + * @param string $sKey |
|
| 638 | + * @return string |
|
| 639 | + * @throws RangeException |
|
| 640 | + * @throws SodiumException |
|
| 641 | + * @throws TypeError |
|
| 642 | + */ |
|
| 643 | + public static function box_publickey_from_secretkey($sKey) |
|
| 644 | + { |
|
| 645 | + if (ParagonIE_Sodium_Core_Util::strlen($sKey) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES) { |
|
| 646 | + throw new RangeException( |
|
| 647 | + 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES bytes long.' |
|
| 648 | + ); |
|
| 649 | + } |
|
| 650 | + return self::scalarmult_base($sKey); |
|
| 651 | + } |
|
| 652 | + |
|
| 653 | + /** |
|
| 654 | + * Decrypt a message encrypted with box(). |
|
| 655 | + * |
|
| 656 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 657 | + * |
|
| 658 | + * @param string $ciphertext |
|
| 659 | + * @param string $nonce |
|
| 660 | + * @param string $keypair |
|
| 661 | + * @return string |
|
| 662 | + * @throws SodiumException |
|
| 663 | + * @throws TypeError |
|
| 664 | + */ |
|
| 665 | + public static function box_open($ciphertext, $nonce, $keypair) |
|
| 666 | + { |
|
| 667 | + return self::secretbox_open( |
|
| 668 | + $ciphertext, |
|
| 669 | + $nonce, |
|
| 670 | + self::box_beforenm( |
|
| 671 | + self::box_secretkey($keypair), |
|
| 672 | + self::box_publickey($keypair) |
|
| 673 | + ) |
|
| 674 | + ); |
|
| 675 | + } |
|
| 676 | + |
|
| 677 | + /** |
|
| 678 | + * Calculate a BLAKE2b hash. |
|
| 679 | + * |
|
| 680 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 681 | + * |
|
| 682 | + * @param string $message |
|
| 683 | + * @param string|null $key |
|
| 684 | + * @param int $outlen |
|
| 685 | + * @return string |
|
| 686 | + * @throws RangeException |
|
| 687 | + * @throws SodiumException |
|
| 688 | + * @throws TypeError |
|
| 689 | + */ |
|
| 690 | + public static function generichash($message, $key = '', $outlen = 32) |
|
| 691 | + { |
|
| 692 | + // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
|
| 693 | + ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
|
| 694 | + |
|
| 695 | + $k = null; |
|
| 696 | + if (!empty($key)) { |
|
| 697 | + /** @var SplFixedArray $k */ |
|
| 698 | + $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($key); |
|
| 699 | + if ($k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES) { |
|
| 700 | + throw new RangeException('Invalid key size'); |
|
| 701 | + } |
|
| 702 | + } |
|
| 703 | + |
|
| 704 | + /** @var SplFixedArray $in */ |
|
| 705 | + $in = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($message); |
|
| 706 | + |
|
| 707 | + /** @var SplFixedArray $ctx */ |
|
| 708 | + $ctx = ParagonIE_Sodium_Core_BLAKE2b::init($k, $outlen); |
|
| 709 | + ParagonIE_Sodium_Core_BLAKE2b::update($ctx, $in, $in->count()); |
|
| 710 | + |
|
| 711 | + /** @var SplFixedArray $out */ |
|
| 712 | + $out = new SplFixedArray($outlen); |
|
| 713 | + $out = ParagonIE_Sodium_Core_BLAKE2b::finish($ctx, $out); |
|
| 714 | + |
|
| 715 | + /** @var array<int, int> */ |
|
| 716 | + $outArray = $out->toArray(); |
|
| 717 | + return ParagonIE_Sodium_Core_Util::intArrayToString($outArray); |
|
| 718 | + } |
|
| 719 | + |
|
| 720 | + /** |
|
| 721 | + * Finalize a BLAKE2b hashing context, returning the hash. |
|
| 722 | + * |
|
| 723 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 724 | + * |
|
| 725 | + * @param string $ctx |
|
| 726 | + * @param int $outlen |
|
| 727 | + * @return string |
|
| 728 | + * @throws SodiumException |
|
| 729 | + * @throws TypeError |
|
| 730 | + */ |
|
| 731 | + public static function generichash_final($ctx, $outlen = 32) |
|
| 732 | + { |
|
| 733 | + if (!is_string($ctx)) { |
|
| 734 | + throw new TypeError('Context must be a string'); |
|
| 735 | + } |
|
| 736 | + $out = new SplFixedArray($outlen); |
|
| 737 | + |
|
| 738 | + /** @var SplFixedArray $context */ |
|
| 739 | + $context = ParagonIE_Sodium_Core_BLAKE2b::stringToContext($ctx); |
|
| 740 | + |
|
| 741 | + /** @var SplFixedArray $out */ |
|
| 742 | + $out = ParagonIE_Sodium_Core_BLAKE2b::finish($context, $out); |
|
| 743 | + |
|
| 744 | + /** @var array<int, int> */ |
|
| 745 | + $outArray = $out->toArray(); |
|
| 746 | + return ParagonIE_Sodium_Core_Util::intArrayToString($outArray); |
|
| 747 | + } |
|
| 748 | + |
|
| 749 | + /** |
|
| 750 | + * Initialize a hashing context for BLAKE2b. |
|
| 751 | + * |
|
| 752 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 753 | + * |
|
| 754 | + * @param string $key |
|
| 755 | + * @param int $outputLength |
|
| 756 | + * @return string |
|
| 757 | + * @throws RangeException |
|
| 758 | + * @throws SodiumException |
|
| 759 | + * @throws TypeError |
|
| 760 | + */ |
|
| 761 | + public static function generichash_init($key = '', $outputLength = 32) |
|
| 762 | + { |
|
| 763 | + // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
|
| 764 | + ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
|
| 765 | + |
|
| 766 | + $k = null; |
|
| 767 | + if (!empty($key)) { |
|
| 768 | + $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($key); |
|
| 769 | + if ($k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES) { |
|
| 770 | + throw new RangeException('Invalid key size'); |
|
| 771 | + } |
|
| 772 | + } |
|
| 773 | + |
|
| 774 | + /** @var SplFixedArray $ctx */ |
|
| 775 | + $ctx = ParagonIE_Sodium_Core_BLAKE2b::init($k, $outputLength); |
|
| 776 | + |
|
| 777 | + return ParagonIE_Sodium_Core_BLAKE2b::contextToString($ctx); |
|
| 778 | + } |
|
| 779 | + |
|
| 780 | + /** |
|
| 781 | + * Initialize a hashing context for BLAKE2b. |
|
| 782 | + * |
|
| 783 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 784 | + * |
|
| 785 | + * @param string $key |
|
| 786 | + * @param int $outputLength |
|
| 787 | + * @param string $salt |
|
| 788 | + * @param string $personal |
|
| 789 | + * @return string |
|
| 790 | + * @throws RangeException |
|
| 791 | + * @throws SodiumException |
|
| 792 | + * @throws TypeError |
|
| 793 | + */ |
|
| 794 | + public static function generichash_init_salt_personal( |
|
| 795 | + $key = '', |
|
| 796 | + $outputLength = 32, |
|
| 797 | + $salt = '', |
|
| 798 | + $personal = '' |
|
| 799 | + ) { |
|
| 800 | + // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
|
| 801 | + ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
|
| 802 | + |
|
| 803 | + $k = null; |
|
| 804 | + if (!empty($key)) { |
|
| 805 | + $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($key); |
|
| 806 | + if ($k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES) { |
|
| 807 | + throw new RangeException('Invalid key size'); |
|
| 808 | + } |
|
| 809 | + } |
|
| 810 | + if (!empty($salt)) { |
|
| 811 | + $s = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($salt); |
|
| 812 | + } else { |
|
| 813 | + $s = null; |
|
| 814 | + } |
|
| 815 | + if (!empty($salt)) { |
|
| 816 | + $p = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($personal); |
|
| 817 | + } else { |
|
| 818 | + $p = null; |
|
| 819 | + } |
|
| 820 | + |
|
| 821 | + /** @var SplFixedArray $ctx */ |
|
| 822 | + $ctx = ParagonIE_Sodium_Core_BLAKE2b::init($k, $outputLength, $s, $p); |
|
| 823 | + |
|
| 824 | + return ParagonIE_Sodium_Core_BLAKE2b::contextToString($ctx); |
|
| 825 | + } |
|
| 826 | + |
|
| 827 | + /** |
|
| 828 | + * Update a hashing context for BLAKE2b with $message |
|
| 829 | + * |
|
| 830 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 831 | + * |
|
| 832 | + * @param string $ctx |
|
| 833 | + * @param string $message |
|
| 834 | + * @return string |
|
| 835 | + * @throws SodiumException |
|
| 836 | + * @throws TypeError |
|
| 837 | + */ |
|
| 838 | + public static function generichash_update($ctx, $message) |
|
| 839 | + { |
|
| 840 | + // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
|
| 841 | + ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
|
| 842 | + |
|
| 843 | + /** @var SplFixedArray $context */ |
|
| 844 | + $context = ParagonIE_Sodium_Core_BLAKE2b::stringToContext($ctx); |
|
| 845 | + |
|
| 846 | + /** @var SplFixedArray $in */ |
|
| 847 | + $in = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($message); |
|
| 848 | + |
|
| 849 | + ParagonIE_Sodium_Core_BLAKE2b::update($context, $in, $in->count()); |
|
| 850 | + |
|
| 851 | + return ParagonIE_Sodium_Core_BLAKE2b::contextToString($context); |
|
| 852 | + } |
|
| 853 | + |
|
| 854 | + /** |
|
| 855 | + * Libsodium's crypto_kx(). |
|
| 856 | + * |
|
| 857 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 858 | + * |
|
| 859 | + * @param string $my_sk |
|
| 860 | + * @param string $their_pk |
|
| 861 | + * @param string $client_pk |
|
| 862 | + * @param string $server_pk |
|
| 863 | + * @return string |
|
| 864 | + * @throws SodiumException |
|
| 865 | + * @throws TypeError |
|
| 866 | + */ |
|
| 867 | + public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) |
|
| 868 | + { |
|
| 869 | + return ParagonIE_Sodium_Compat::crypto_generichash( |
|
| 870 | + ParagonIE_Sodium_Compat::crypto_scalarmult($my_sk, $their_pk) . |
|
| 871 | + $client_pk . |
|
| 872 | + $server_pk |
|
| 873 | + ); |
|
| 874 | + } |
|
| 875 | + |
|
| 876 | + /** |
|
| 877 | + * ECDH over Curve25519 |
|
| 878 | + * |
|
| 879 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 880 | + * |
|
| 881 | + * @param string $sKey |
|
| 882 | + * @param string $pKey |
|
| 883 | + * @return string |
|
| 884 | + * |
|
| 885 | + * @throws SodiumException |
|
| 886 | + * @throws TypeError |
|
| 887 | + */ |
|
| 888 | + public static function scalarmult($sKey, $pKey) |
|
| 889 | + { |
|
| 890 | + $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10($sKey, $pKey); |
|
| 891 | + self::scalarmult_throw_if_zero($q); |
|
| 892 | + return $q; |
|
| 893 | + } |
|
| 894 | + |
|
| 895 | + /** |
|
| 896 | + * ECDH over Curve25519, using the basepoint. |
|
| 897 | + * Used to get a secret key from a public key. |
|
| 898 | + * |
|
| 899 | + * @param string $secret |
|
| 900 | + * @return string |
|
| 901 | + * |
|
| 902 | + * @throws SodiumException |
|
| 903 | + * @throws TypeError |
|
| 904 | + */ |
|
| 905 | + public static function scalarmult_base($secret) |
|
| 906 | + { |
|
| 907 | + $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10_base($secret); |
|
| 908 | + self::scalarmult_throw_if_zero($q); |
|
| 909 | + return $q; |
|
| 910 | + } |
|
| 911 | + |
|
| 912 | + /** |
|
| 913 | + * This throws an Error if a zero public key was passed to the function. |
|
| 914 | + * |
|
| 915 | + * @param string $q |
|
| 916 | + * @return void |
|
| 917 | + * @throws SodiumException |
|
| 918 | + * @throws TypeError |
|
| 919 | + */ |
|
| 920 | + protected static function scalarmult_throw_if_zero($q) |
|
| 921 | + { |
|
| 922 | + $d = 0; |
|
| 923 | + for ($i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i) { |
|
| 924 | + $d |= ParagonIE_Sodium_Core_Util::chrToInt($q[$i]); |
|
| 925 | + } |
|
| 926 | + |
|
| 927 | + /* branch-free variant of === 0 */ |
|
| 928 | + if (-(1 & (($d - 1) >> 8))) { |
|
| 929 | + throw new SodiumException('Zero public key is not allowed'); |
|
| 930 | + } |
|
| 931 | + } |
|
| 932 | + |
|
| 933 | + /** |
|
| 934 | + * XSalsa20-Poly1305 authenticated symmetric-key encryption. |
|
| 935 | + * |
|
| 936 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 937 | + * |
|
| 938 | + * @param string $plaintext |
|
| 939 | + * @param string $nonce |
|
| 940 | + * @param string $key |
|
| 941 | + * @return string |
|
| 942 | + * @throws SodiumException |
|
| 943 | + * @throws TypeError |
|
| 944 | + */ |
|
| 945 | + public static function secretbox($plaintext, $nonce, $key) |
|
| 946 | + { |
|
| 947 | + /** @var string $subkey */ |
|
| 948 | + $subkey = ParagonIE_Sodium_Core_HSalsa20::hsalsa20($nonce, $key); |
|
| 949 | + |
|
| 950 | + /** @var string $block0 */ |
|
| 951 | + $block0 = str_repeat("\x00", 32); |
|
| 952 | + |
|
| 953 | + /** @var int $mlen - Length of the plaintext message */ |
|
| 954 | + $mlen = ParagonIE_Sodium_Core_Util::strlen($plaintext); |
|
| 955 | + $mlen0 = $mlen; |
|
| 956 | + if ($mlen0 > 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 957 | + $mlen0 = 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES; |
|
| 958 | + } |
|
| 959 | + $block0 .= ParagonIE_Sodium_Core_Util::substr($plaintext, 0, $mlen0); |
|
| 960 | + |
|
| 961 | + /** @var string $block0 */ |
|
| 962 | + $block0 = ParagonIE_Sodium_Core_Salsa20::salsa20_xor( |
|
| 963 | + $block0, |
|
| 964 | + ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 965 | + $subkey |
|
| 966 | + ); |
|
| 967 | + |
|
| 968 | + /** @var string $c */ |
|
| 969 | + $c = ParagonIE_Sodium_Core_Util::substr( |
|
| 970 | + $block0, |
|
| 971 | + self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 972 | + ); |
|
| 973 | + if ($mlen > $mlen0) { |
|
| 974 | + $c .= ParagonIE_Sodium_Core_Salsa20::salsa20_xor_ic( |
|
| 975 | + ParagonIE_Sodium_Core_Util::substr( |
|
| 976 | + $plaintext, |
|
| 977 | + self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 978 | + ), |
|
| 979 | + ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 980 | + 1, |
|
| 981 | + $subkey |
|
| 982 | + ); |
|
| 983 | + } |
|
| 984 | + $state = new ParagonIE_Sodium_Core_Poly1305_State( |
|
| 985 | + ParagonIE_Sodium_Core_Util::substr( |
|
| 986 | + $block0, |
|
| 987 | + 0, |
|
| 988 | + self::onetimeauth_poly1305_KEYBYTES |
|
| 989 | + ) |
|
| 990 | + ); |
|
| 991 | + try { |
|
| 992 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 993 | + ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 994 | + } catch (SodiumException $ex) { |
|
| 995 | + $block0 = null; |
|
| 996 | + $subkey = null; |
|
| 997 | + } |
|
| 998 | + |
|
| 999 | + $state->update($c); |
|
| 1000 | + |
|
| 1001 | + /** @var string $c - MAC || ciphertext */ |
|
| 1002 | + $c = $state->finish() . $c; |
|
| 1003 | + unset($state); |
|
| 1004 | + |
|
| 1005 | + return $c; |
|
| 1006 | + } |
|
| 1007 | + |
|
| 1008 | + /** |
|
| 1009 | + * Decrypt a ciphertext generated via secretbox(). |
|
| 1010 | + * |
|
| 1011 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1012 | + * |
|
| 1013 | + * @param string $ciphertext |
|
| 1014 | + * @param string $nonce |
|
| 1015 | + * @param string $key |
|
| 1016 | + * @return string |
|
| 1017 | + * @throws SodiumException |
|
| 1018 | + * @throws TypeError |
|
| 1019 | + */ |
|
| 1020 | + public static function secretbox_open($ciphertext, $nonce, $key) |
|
| 1021 | + { |
|
| 1022 | + /** @var string $mac */ |
|
| 1023 | + $mac = ParagonIE_Sodium_Core_Util::substr( |
|
| 1024 | + $ciphertext, |
|
| 1025 | + 0, |
|
| 1026 | + self::secretbox_xsalsa20poly1305_MACBYTES |
|
| 1027 | + ); |
|
| 1028 | + |
|
| 1029 | + /** @var string $c */ |
|
| 1030 | + $c = ParagonIE_Sodium_Core_Util::substr( |
|
| 1031 | + $ciphertext, |
|
| 1032 | + self::secretbox_xsalsa20poly1305_MACBYTES |
|
| 1033 | + ); |
|
| 1034 | + |
|
| 1035 | + /** @var int $clen */ |
|
| 1036 | + $clen = ParagonIE_Sodium_Core_Util::strlen($c); |
|
| 1037 | + |
|
| 1038 | + /** @var string $subkey */ |
|
| 1039 | + $subkey = ParagonIE_Sodium_Core_HSalsa20::hsalsa20($nonce, $key); |
|
| 1040 | + |
|
| 1041 | + /** @var string $block0 */ |
|
| 1042 | + $block0 = ParagonIE_Sodium_Core_Salsa20::salsa20( |
|
| 1043 | + 64, |
|
| 1044 | + ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1045 | + $subkey |
|
| 1046 | + ); |
|
| 1047 | + $verified = ParagonIE_Sodium_Core_Poly1305::onetimeauth_verify( |
|
| 1048 | + $mac, |
|
| 1049 | + $c, |
|
| 1050 | + ParagonIE_Sodium_Core_Util::substr($block0, 0, 32) |
|
| 1051 | + ); |
|
| 1052 | + if (!$verified) { |
|
| 1053 | + try { |
|
| 1054 | + ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1055 | + } catch (SodiumException $ex) { |
|
| 1056 | + $subkey = null; |
|
| 1057 | + } |
|
| 1058 | + throw new SodiumException('Invalid MAC'); |
|
| 1059 | + } |
|
| 1060 | + |
|
| 1061 | + /** @var string $m - Decrypted message */ |
|
| 1062 | + $m = ParagonIE_Sodium_Core_Util::xorStrings( |
|
| 1063 | + ParagonIE_Sodium_Core_Util::substr($block0, self::secretbox_xsalsa20poly1305_ZEROBYTES), |
|
| 1064 | + ParagonIE_Sodium_Core_Util::substr($c, 0, self::secretbox_xsalsa20poly1305_ZEROBYTES) |
|
| 1065 | + ); |
|
| 1066 | + if ($clen > self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 1067 | + // We had more than 1 block, so let's continue to decrypt the rest. |
|
| 1068 | + $m .= ParagonIE_Sodium_Core_Salsa20::salsa20_xor_ic( |
|
| 1069 | + ParagonIE_Sodium_Core_Util::substr( |
|
| 1070 | + $c, |
|
| 1071 | + self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 1072 | + ), |
|
| 1073 | + ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1074 | + 1, |
|
| 1075 | + (string) $subkey |
|
| 1076 | + ); |
|
| 1077 | + } |
|
| 1078 | + return $m; |
|
| 1079 | + } |
|
| 1080 | + |
|
| 1081 | + /** |
|
| 1082 | + * XChaCha20-Poly1305 authenticated symmetric-key encryption. |
|
| 1083 | + * |
|
| 1084 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1085 | + * |
|
| 1086 | + * @param string $plaintext |
|
| 1087 | + * @param string $nonce |
|
| 1088 | + * @param string $key |
|
| 1089 | + * @return string |
|
| 1090 | + * @throws SodiumException |
|
| 1091 | + * @throws TypeError |
|
| 1092 | + */ |
|
| 1093 | + public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) |
|
| 1094 | + { |
|
| 1095 | + /** @var string $subkey */ |
|
| 1096 | + $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
|
| 1097 | + ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
|
| 1098 | + $key |
|
| 1099 | + ); |
|
| 1100 | + $nonceLast = ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8); |
|
| 1101 | + |
|
| 1102 | + /** @var string $block0 */ |
|
| 1103 | + $block0 = str_repeat("\x00", 32); |
|
| 1104 | + |
|
| 1105 | + /** @var int $mlen - Length of the plaintext message */ |
|
| 1106 | + $mlen = ParagonIE_Sodium_Core_Util::strlen($plaintext); |
|
| 1107 | + $mlen0 = $mlen; |
|
| 1108 | + if ($mlen0 > 64 - self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1109 | + $mlen0 = 64 - self::secretbox_xchacha20poly1305_ZEROBYTES; |
|
| 1110 | + } |
|
| 1111 | + $block0 .= ParagonIE_Sodium_Core_Util::substr($plaintext, 0, $mlen0); |
|
| 1112 | + |
|
| 1113 | + /** @var string $block0 */ |
|
| 1114 | + $block0 = ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 1115 | + $block0, |
|
| 1116 | + $nonceLast, |
|
| 1117 | + $subkey |
|
| 1118 | + ); |
|
| 1119 | + |
|
| 1120 | + /** @var string $c */ |
|
| 1121 | + $c = ParagonIE_Sodium_Core_Util::substr( |
|
| 1122 | + $block0, |
|
| 1123 | + self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1124 | + ); |
|
| 1125 | + if ($mlen > $mlen0) { |
|
| 1126 | + $c .= ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 1127 | + ParagonIE_Sodium_Core_Util::substr( |
|
| 1128 | + $plaintext, |
|
| 1129 | + self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1130 | + ), |
|
| 1131 | + $nonceLast, |
|
| 1132 | + $subkey, |
|
| 1133 | + ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1134 | + ); |
|
| 1135 | + } |
|
| 1136 | + $state = new ParagonIE_Sodium_Core_Poly1305_State( |
|
| 1137 | + ParagonIE_Sodium_Core_Util::substr( |
|
| 1138 | + $block0, |
|
| 1139 | + 0, |
|
| 1140 | + self::onetimeauth_poly1305_KEYBYTES |
|
| 1141 | + ) |
|
| 1142 | + ); |
|
| 1143 | + try { |
|
| 1144 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 1145 | + ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1146 | + } catch (SodiumException $ex) { |
|
| 1147 | + $block0 = null; |
|
| 1148 | + $subkey = null; |
|
| 1149 | + } |
|
| 1150 | + |
|
| 1151 | + $state->update($c); |
|
| 1152 | + |
|
| 1153 | + /** @var string $c - MAC || ciphertext */ |
|
| 1154 | + $c = $state->finish() . $c; |
|
| 1155 | + unset($state); |
|
| 1156 | + |
|
| 1157 | + return $c; |
|
| 1158 | + } |
|
| 1159 | + |
|
| 1160 | + /** |
|
| 1161 | + * Decrypt a ciphertext generated via secretbox_xchacha20poly1305(). |
|
| 1162 | + * |
|
| 1163 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1164 | + * |
|
| 1165 | + * @param string $ciphertext |
|
| 1166 | + * @param string $nonce |
|
| 1167 | + * @param string $key |
|
| 1168 | + * @return string |
|
| 1169 | + * @throws SodiumException |
|
| 1170 | + * @throws TypeError |
|
| 1171 | + */ |
|
| 1172 | + public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) |
|
| 1173 | + { |
|
| 1174 | + /** @var string $mac */ |
|
| 1175 | + $mac = ParagonIE_Sodium_Core_Util::substr( |
|
| 1176 | + $ciphertext, |
|
| 1177 | + 0, |
|
| 1178 | + self::secretbox_xchacha20poly1305_MACBYTES |
|
| 1179 | + ); |
|
| 1180 | + |
|
| 1181 | + /** @var string $c */ |
|
| 1182 | + $c = ParagonIE_Sodium_Core_Util::substr( |
|
| 1183 | + $ciphertext, |
|
| 1184 | + self::secretbox_xchacha20poly1305_MACBYTES |
|
| 1185 | + ); |
|
| 1186 | + |
|
| 1187 | + /** @var int $clen */ |
|
| 1188 | + $clen = ParagonIE_Sodium_Core_Util::strlen($c); |
|
| 1189 | + |
|
| 1190 | + /** @var string $subkey */ |
|
| 1191 | + $subkey = ParagonIE_Sodium_Core_HChaCha20::hchacha20($nonce, $key); |
|
| 1192 | + |
|
| 1193 | + /** @var string $block0 */ |
|
| 1194 | + $block0 = ParagonIE_Sodium_Core_ChaCha20::stream( |
|
| 1195 | + 64, |
|
| 1196 | + ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1197 | + $subkey |
|
| 1198 | + ); |
|
| 1199 | + $verified = ParagonIE_Sodium_Core_Poly1305::onetimeauth_verify( |
|
| 1200 | + $mac, |
|
| 1201 | + $c, |
|
| 1202 | + ParagonIE_Sodium_Core_Util::substr($block0, 0, 32) |
|
| 1203 | + ); |
|
| 1204 | + |
|
| 1205 | + if (!$verified) { |
|
| 1206 | + try { |
|
| 1207 | + ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1208 | + } catch (SodiumException $ex) { |
|
| 1209 | + $subkey = null; |
|
| 1210 | + } |
|
| 1211 | + throw new SodiumException('Invalid MAC'); |
|
| 1212 | + } |
|
| 1213 | + |
|
| 1214 | + /** @var string $m - Decrypted message */ |
|
| 1215 | + $m = ParagonIE_Sodium_Core_Util::xorStrings( |
|
| 1216 | + ParagonIE_Sodium_Core_Util::substr($block0, self::secretbox_xchacha20poly1305_ZEROBYTES), |
|
| 1217 | + ParagonIE_Sodium_Core_Util::substr($c, 0, self::secretbox_xchacha20poly1305_ZEROBYTES) |
|
| 1218 | + ); |
|
| 1219 | + |
|
| 1220 | + if ($clen > self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1221 | + // We had more than 1 block, so let's continue to decrypt the rest. |
|
| 1222 | + $m .= ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
|
| 1223 | + ParagonIE_Sodium_Core_Util::substr( |
|
| 1224 | + $c, |
|
| 1225 | + self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1226 | + ), |
|
| 1227 | + ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1228 | + (string) $subkey, |
|
| 1229 | + ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1230 | + ); |
|
| 1231 | + } |
|
| 1232 | + return $m; |
|
| 1233 | + } |
|
| 1234 | + |
|
| 1235 | + /** |
|
| 1236 | + * @param string $key |
|
| 1237 | + * @return array<int, string> Returns a state and a header. |
|
| 1238 | + * @throws Exception |
|
| 1239 | + * @throws SodiumException |
|
| 1240 | + */ |
|
| 1241 | + public static function secretstream_xchacha20poly1305_init_push($key) |
|
| 1242 | + { |
|
| 1243 | + # randombytes_buf(out, crypto_secretstream_xchacha20poly1305_HEADERBYTES); |
|
| 1244 | + $out = random_bytes(24); |
|
| 1245 | + |
|
| 1246 | + # crypto_core_hchacha20(state->k, out, k, NULL); |
|
| 1247 | + $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20($out, $key); |
|
| 1248 | + $state = new ParagonIE_Sodium_Core_SecretStream_State( |
|
| 1249 | + $subkey, |
|
| 1250 | + ParagonIE_Sodium_Core_Util::substr($out, 16, 8) . str_repeat("\0", 4) |
|
| 1251 | + ); |
|
| 1252 | + |
|
| 1253 | + # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
|
| 1254 | + $state->counterReset(); |
|
| 1255 | + |
|
| 1256 | + # memcpy(STATE_INONCE(state), out + crypto_core_hchacha20_INPUTBYTES, |
|
| 1257 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1258 | + # memset(state->_pad, 0, sizeof state->_pad); |
|
| 1259 | + return array( |
|
| 1260 | + $state->toString(), |
|
| 1261 | + $out |
|
| 1262 | + ); |
|
| 1263 | + } |
|
| 1264 | + |
|
| 1265 | + /** |
|
| 1266 | + * @param string $key |
|
| 1267 | + * @param string $header |
|
| 1268 | + * @return string Returns a state. |
|
| 1269 | + * @throws Exception |
|
| 1270 | + */ |
|
| 1271 | + public static function secretstream_xchacha20poly1305_init_pull($key, $header) |
|
| 1272 | + { |
|
| 1273 | + # crypto_core_hchacha20(state->k, in, k, NULL); |
|
| 1274 | + $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
|
| 1275 | + ParagonIE_Sodium_Core_Util::substr($header, 0, 16), |
|
| 1276 | + $key |
|
| 1277 | + ); |
|
| 1278 | + $state = new ParagonIE_Sodium_Core_SecretStream_State( |
|
| 1279 | + $subkey, |
|
| 1280 | + ParagonIE_Sodium_Core_Util::substr($header, 16) |
|
| 1281 | + ); |
|
| 1282 | + $state->counterReset(); |
|
| 1283 | + # memcpy(STATE_INONCE(state), in + crypto_core_hchacha20_INPUTBYTES, |
|
| 1284 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1285 | + # memset(state->_pad, 0, sizeof state->_pad); |
|
| 1286 | + # return 0; |
|
| 1287 | + return $state->toString(); |
|
| 1288 | + } |
|
| 1289 | + |
|
| 1290 | + /** |
|
| 1291 | + * @param string $state |
|
| 1292 | + * @param string $msg |
|
| 1293 | + * @param string $aad |
|
| 1294 | + * @param int $tag |
|
| 1295 | + * @return string |
|
| 1296 | + * @throws SodiumException |
|
| 1297 | + */ |
|
| 1298 | + public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) |
|
| 1299 | + { |
|
| 1300 | + $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
|
| 1301 | + # crypto_onetimeauth_poly1305_state poly1305_state; |
|
| 1302 | + # unsigned char block[64U]; |
|
| 1303 | + # unsigned char slen[8U]; |
|
| 1304 | + # unsigned char *c; |
|
| 1305 | + # unsigned char *mac; |
|
| 1306 | + |
|
| 1307 | + $msglen = ParagonIE_Sodium_Core_Util::strlen($msg); |
|
| 1308 | + $aadlen = ParagonIE_Sodium_Core_Util::strlen($aad); |
|
| 1309 | + |
|
| 1310 | + if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1311 | + throw new SodiumException( |
|
| 1312 | + 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
|
| 1313 | + ); |
|
| 1314 | + } |
|
| 1315 | + |
|
| 1316 | + # if (outlen_p != NULL) { |
|
| 1317 | + # *outlen_p = 0U; |
|
| 1318 | + # } |
|
| 1319 | + # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
|
| 1320 | + # sodium_misuse(); |
|
| 1321 | + # } |
|
| 1322 | + |
|
| 1323 | + # crypto_stream_chacha20_ietf(block, sizeof block, state->nonce, state->k); |
|
| 1324 | + # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
|
| 1325 | + # sodium_memzero(block, sizeof block); |
|
| 1326 | + $auth = new ParagonIE_Sodium_Core_Poly1305_State( |
|
| 1327 | + ParagonIE_Sodium_Core_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1328 | + ); |
|
| 1329 | + |
|
| 1330 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
|
| 1331 | + $auth->update($aad); |
|
| 1332 | + |
|
| 1333 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
|
| 1334 | + # (0x10 - adlen) & 0xf); |
|
| 1335 | + $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1336 | + |
|
| 1337 | + # memset(block, 0, sizeof block); |
|
| 1338 | + # block[0] = tag; |
|
| 1339 | + # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
|
| 1340 | + # state->nonce, 1U, state->k); |
|
| 1341 | + $block = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1342 | + ParagonIE_Sodium_Core_Util::intToChr($tag) . str_repeat("\0", 63), |
|
| 1343 | + $st->getCombinedNonce(), |
|
| 1344 | + $st->getKey(), |
|
| 1345 | + ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1346 | + ); |
|
| 1347 | + |
|
| 1348 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
|
| 1349 | + $auth->update($block); |
|
| 1350 | + |
|
| 1351 | + # out[0] = block[0]; |
|
| 1352 | + $out = $block[0]; |
|
| 1353 | + # c = out + (sizeof tag); |
|
| 1354 | + # crypto_stream_chacha20_ietf_xor_ic(c, m, mlen, state->nonce, 2U, state->k); |
|
| 1355 | + $cipher = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1356 | + $msg, |
|
| 1357 | + $st->getCombinedNonce(), |
|
| 1358 | + $st->getKey(), |
|
| 1359 | + ParagonIE_Sodium_Core_Util::store64_le(2) |
|
| 1360 | + ); |
|
| 1361 | + |
|
| 1362 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
|
| 1363 | + $auth->update($cipher); |
|
| 1364 | + |
|
| 1365 | + $out .= $cipher; |
|
| 1366 | + unset($cipher); |
|
| 1367 | + |
|
| 1368 | + # crypto_onetimeauth_poly1305_update |
|
| 1369 | + # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
|
| 1370 | + $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1371 | + |
|
| 1372 | + # STORE64_LE(slen, (uint64_t) adlen); |
|
| 1373 | + $slen = ParagonIE_Sodium_Core_Util::store64_le($aadlen); |
|
| 1374 | + |
|
| 1375 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1376 | + $auth->update($slen); |
|
| 1377 | + |
|
| 1378 | + # STORE64_LE(slen, (sizeof block) + mlen); |
|
| 1379 | + $slen = ParagonIE_Sodium_Core_Util::store64_le(64 + $msglen); |
|
| 1380 | + |
|
| 1381 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1382 | + $auth->update($slen); |
|
| 1383 | + |
|
| 1384 | + # mac = c + mlen; |
|
| 1385 | + # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
|
| 1386 | + $mac = $auth->finish(); |
|
| 1387 | + $out .= $mac; |
|
| 1388 | + |
|
| 1389 | + # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
|
| 1390 | + unset($auth); |
|
| 1391 | + |
|
| 1392 | + |
|
| 1393 | + # XOR_BUF(STATE_INONCE(state), mac, |
|
| 1394 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1395 | + $st->xorNonce($mac); |
|
| 1396 | + |
|
| 1397 | + # sodium_increment(STATE_COUNTER(state), |
|
| 1398 | + # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
|
| 1399 | + $st->incrementCounter(); |
|
| 1400 | + // Overwrite by reference: |
|
| 1401 | + $state = $st->toString(); |
|
| 1402 | + |
|
| 1403 | + /** @var bool $rekey */ |
|
| 1404 | + $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1405 | + # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
|
| 1406 | + # sodium_is_zero(STATE_COUNTER(state), |
|
| 1407 | + # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
|
| 1408 | + # crypto_secretstream_xchacha20poly1305_rekey(state); |
|
| 1409 | + # } |
|
| 1410 | + if ($rekey || $st->needsRekey()) { |
|
| 1411 | + // DO REKEY |
|
| 1412 | + self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1413 | + } |
|
| 1414 | + # if (outlen_p != NULL) { |
|
| 1415 | + # *outlen_p = crypto_secretstream_xchacha20poly1305_ABYTES + mlen; |
|
| 1416 | + # } |
|
| 1417 | + return $out; |
|
| 1418 | + } |
|
| 1419 | + |
|
| 1420 | + /** |
|
| 1421 | + * @param string $state |
|
| 1422 | + * @param string $cipher |
|
| 1423 | + * @param string $aad |
|
| 1424 | + * @return bool|array{0: string, 1: int} |
|
| 1425 | + * @throws SodiumException |
|
| 1426 | + */ |
|
| 1427 | + public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') |
|
| 1428 | + { |
|
| 1429 | + $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
|
| 1430 | + |
|
| 1431 | + $cipherlen = ParagonIE_Sodium_Core_Util::strlen($cipher); |
|
| 1432 | + # mlen = inlen - crypto_secretstream_xchacha20poly1305_ABYTES; |
|
| 1433 | + $msglen = $cipherlen - ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_ABYTES; |
|
| 1434 | + $aadlen = ParagonIE_Sodium_Core_Util::strlen($aad); |
|
| 1435 | + |
|
| 1436 | + # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
|
| 1437 | + # sodium_misuse(); |
|
| 1438 | + # } |
|
| 1439 | + if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1440 | + throw new SodiumException( |
|
| 1441 | + 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
|
| 1442 | + ); |
|
| 1443 | + } |
|
| 1444 | + |
|
| 1445 | + # crypto_stream_chacha20_ietf(block, sizeof block, state->nonce, state->k); |
|
| 1446 | + # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
|
| 1447 | + # sodium_memzero(block, sizeof block); |
|
| 1448 | + $auth = new ParagonIE_Sodium_Core_Poly1305_State( |
|
| 1449 | + ParagonIE_Sodium_Core_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1450 | + ); |
|
| 1451 | + |
|
| 1452 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
|
| 1453 | + $auth->update($aad); |
|
| 1454 | + |
|
| 1455 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
|
| 1456 | + # (0x10 - adlen) & 0xf); |
|
| 1457 | + $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1458 | + |
|
| 1459 | + |
|
| 1460 | + # memset(block, 0, sizeof block); |
|
| 1461 | + # block[0] = in[0]; |
|
| 1462 | + # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
|
| 1463 | + # state->nonce, 1U, state->k); |
|
| 1464 | + $block = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1465 | + $cipher[0] . str_repeat("\0", 63), |
|
| 1466 | + $st->getCombinedNonce(), |
|
| 1467 | + $st->getKey(), |
|
| 1468 | + ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1469 | + ); |
|
| 1470 | + # tag = block[0]; |
|
| 1471 | + # block[0] = in[0]; |
|
| 1472 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
|
| 1473 | + $tag = ParagonIE_Sodium_Core_Util::chrToInt($block[0]); |
|
| 1474 | + $block[0] = $cipher[0]; |
|
| 1475 | + $auth->update($block); |
|
| 1476 | + |
|
| 1477 | + |
|
| 1478 | + # c = in + (sizeof tag); |
|
| 1479 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
|
| 1480 | + $auth->update(ParagonIE_Sodium_Core_Util::substr($cipher, 1, $msglen)); |
|
| 1481 | + |
|
| 1482 | + # crypto_onetimeauth_poly1305_update |
|
| 1483 | + # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
|
| 1484 | + $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1485 | + |
|
| 1486 | + # STORE64_LE(slen, (uint64_t) adlen); |
|
| 1487 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1488 | + $slen = ParagonIE_Sodium_Core_Util::store64_le($aadlen); |
|
| 1489 | + $auth->update($slen); |
|
| 1490 | + |
|
| 1491 | + # STORE64_LE(slen, (sizeof block) + mlen); |
|
| 1492 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1493 | + $slen = ParagonIE_Sodium_Core_Util::store64_le(64 + $msglen); |
|
| 1494 | + $auth->update($slen); |
|
| 1495 | + |
|
| 1496 | + # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
|
| 1497 | + # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
|
| 1498 | + $mac = $auth->finish(); |
|
| 1499 | + |
|
| 1500 | + # stored_mac = c + mlen; |
|
| 1501 | + # if (sodium_memcmp(mac, stored_mac, sizeof mac) != 0) { |
|
| 1502 | + # sodium_memzero(mac, sizeof mac); |
|
| 1503 | + # return -1; |
|
| 1504 | + # } |
|
| 1505 | + |
|
| 1506 | + $stored = ParagonIE_Sodium_Core_Util::substr($cipher, $msglen + 1, 16); |
|
| 1507 | + if (!ParagonIE_Sodium_Core_Util::hashEquals($mac, $stored)) { |
|
| 1508 | + return false; |
|
| 1509 | + } |
|
| 1510 | + |
|
| 1511 | + # crypto_stream_chacha20_ietf_xor_ic(m, c, mlen, state->nonce, 2U, state->k); |
|
| 1512 | + $out = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1513 | + ParagonIE_Sodium_Core_Util::substr($cipher, 1, $msglen), |
|
| 1514 | + $st->getCombinedNonce(), |
|
| 1515 | + $st->getKey(), |
|
| 1516 | + ParagonIE_Sodium_Core_Util::store64_le(2) |
|
| 1517 | + ); |
|
| 1518 | + |
|
| 1519 | + # XOR_BUF(STATE_INONCE(state), mac, |
|
| 1520 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1521 | + $st->xorNonce($mac); |
|
| 1522 | + |
|
| 1523 | + # sodium_increment(STATE_COUNTER(state), |
|
| 1524 | + # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
|
| 1525 | + $st->incrementCounter(); |
|
| 1526 | + |
|
| 1527 | + # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
|
| 1528 | + # sodium_is_zero(STATE_COUNTER(state), |
|
| 1529 | + # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
|
| 1530 | + # crypto_secretstream_xchacha20poly1305_rekey(state); |
|
| 1531 | + # } |
|
| 1532 | + |
|
| 1533 | + // Overwrite by reference: |
|
| 1534 | + $state = $st->toString(); |
|
| 1535 | + |
|
| 1536 | + /** @var bool $rekey */ |
|
| 1537 | + $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1538 | + if ($rekey || $st->needsRekey()) { |
|
| 1539 | + // DO REKEY |
|
| 1540 | + self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1541 | + } |
|
| 1542 | + return array($out, $tag); |
|
| 1543 | + } |
|
| 1544 | + |
|
| 1545 | + /** |
|
| 1546 | + * @param string $state |
|
| 1547 | + * @return void |
|
| 1548 | + * @throws SodiumException |
|
| 1549 | + */ |
|
| 1550 | + public static function secretstream_xchacha20poly1305_rekey(&$state) |
|
| 1551 | + { |
|
| 1552 | + $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
|
| 1553 | + # unsigned char new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + |
|
| 1554 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES]; |
|
| 1555 | + # size_t i; |
|
| 1556 | + # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
|
| 1557 | + # new_key_and_inonce[i] = state->k[i]; |
|
| 1558 | + # } |
|
| 1559 | + $new_key_and_inonce = $st->getKey(); |
|
| 1560 | + |
|
| 1561 | + # for (i = 0U; i < crypto_secretstream_xchacha20poly1305_INONCEBYTES; i++) { |
|
| 1562 | + # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i] = |
|
| 1563 | + # STATE_INONCE(state)[i]; |
|
| 1564 | + # } |
|
| 1565 | + $new_key_and_inonce .= ParagonIE_Sodium_Core_Util::substR($st->getNonce(), 0, 8); |
|
| 1566 | + |
|
| 1567 | + # crypto_stream_chacha20_ietf_xor(new_key_and_inonce, new_key_and_inonce, |
|
| 1568 | + # sizeof new_key_and_inonce, |
|
| 1569 | + # state->nonce, state->k); |
|
| 1570 | + |
|
| 1571 | + $st->rekey(ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1572 | + $new_key_and_inonce, |
|
| 1573 | + $st->getCombinedNonce(), |
|
| 1574 | + $st->getKey(), |
|
| 1575 | + ParagonIE_Sodium_Core_Util::store64_le(0) |
|
| 1576 | + )); |
|
| 1577 | + |
|
| 1578 | + # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
|
| 1579 | + # state->k[i] = new_key_and_inonce[i]; |
|
| 1580 | + # } |
|
| 1581 | + # for (i = 0U; i < crypto_secretstream_xchacha20poly1305_INONCEBYTES; i++) { |
|
| 1582 | + # STATE_INONCE(state)[i] = |
|
| 1583 | + # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i]; |
|
| 1584 | + # } |
|
| 1585 | + # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
|
| 1586 | + $st->counterReset(); |
|
| 1587 | + |
|
| 1588 | + $state = $st->toString(); |
|
| 1589 | + } |
|
| 1590 | + |
|
| 1591 | + /** |
|
| 1592 | + * Detached Ed25519 signature. |
|
| 1593 | + * |
|
| 1594 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1595 | + * |
|
| 1596 | + * @param string $message |
|
| 1597 | + * @param string $sk |
|
| 1598 | + * @return string |
|
| 1599 | + * @throws SodiumException |
|
| 1600 | + * @throws TypeError |
|
| 1601 | + */ |
|
| 1602 | + public static function sign_detached($message, $sk) |
|
| 1603 | + { |
|
| 1604 | + return ParagonIE_Sodium_Core_Ed25519::sign_detached($message, $sk); |
|
| 1605 | + } |
|
| 1606 | + |
|
| 1607 | + /** |
|
| 1608 | + * Attached Ed25519 signature. (Returns a signed message.) |
|
| 1609 | + * |
|
| 1610 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1611 | + * |
|
| 1612 | + * @param string $message |
|
| 1613 | + * @param string $sk |
|
| 1614 | + * @return string |
|
| 1615 | + * @throws SodiumException |
|
| 1616 | + * @throws TypeError |
|
| 1617 | + */ |
|
| 1618 | + public static function sign($message, $sk) |
|
| 1619 | + { |
|
| 1620 | + return ParagonIE_Sodium_Core_Ed25519::sign($message, $sk); |
|
| 1621 | + } |
|
| 1622 | + |
|
| 1623 | + /** |
|
| 1624 | + * Opens a signed message. If valid, returns the message. |
|
| 1625 | + * |
|
| 1626 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1627 | + * |
|
| 1628 | + * @param string $signedMessage |
|
| 1629 | + * @param string $pk |
|
| 1630 | + * @return string |
|
| 1631 | + * @throws SodiumException |
|
| 1632 | + * @throws TypeError |
|
| 1633 | + */ |
|
| 1634 | + public static function sign_open($signedMessage, $pk) |
|
| 1635 | + { |
|
| 1636 | + return ParagonIE_Sodium_Core_Ed25519::sign_open($signedMessage, $pk); |
|
| 1637 | + } |
|
| 1638 | + |
|
| 1639 | + /** |
|
| 1640 | + * Verify a detached signature of a given message and public key. |
|
| 1641 | + * |
|
| 1642 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1643 | + * |
|
| 1644 | + * @param string $signature |
|
| 1645 | + * @param string $message |
|
| 1646 | + * @param string $pk |
|
| 1647 | + * @return bool |
|
| 1648 | + * @throws SodiumException |
|
| 1649 | + * @throws TypeError |
|
| 1650 | + */ |
|
| 1651 | + public static function sign_verify_detached($signature, $message, $pk) |
|
| 1652 | + { |
|
| 1653 | + return ParagonIE_Sodium_Core_Ed25519::verify_detached($signature, $message, $pk); |
|
| 1654 | + } |
|
| 1655 | 1655 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if (class_exists('ParagonIE_Sodium_Crypto', false)) { |
|
| 3 | +if ( class_exists( 'ParagonIE_Sodium_Crypto', false ) ) { |
|
| 4 | 4 | return; |
| 5 | 5 | } |
| 6 | 6 | |
@@ -75,13 +75,13 @@ discard block |
||
| 75 | 75 | $key = '' |
| 76 | 76 | ) { |
| 77 | 77 | /** @var int $len - Length of message (ciphertext + MAC) */ |
| 78 | - $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 78 | + $len = ParagonIE_Sodium_Core_Util::strlen( $message ); |
|
| 79 | 79 | |
| 80 | 80 | /** @var int $clen - Length of ciphertext */ |
| 81 | 81 | $clen = $len - self::aead_chacha20poly1305_ABYTES; |
| 82 | 82 | |
| 83 | 83 | /** @var int $adlen - Length of associated data */ |
| 84 | - $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 84 | + $adlen = ParagonIE_Sodium_Core_Util::strlen( $ad ); |
|
| 85 | 85 | |
| 86 | 86 | /** @var string $mac - Message authentication code */ |
| 87 | 87 | $mac = ParagonIE_Sodium_Core_Util::substr( |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | ); |
| 92 | 92 | |
| 93 | 93 | /** @var string $ciphertext - The encrypted message (sans MAC) */ |
| 94 | - $ciphertext = ParagonIE_Sodium_Core_Util::substr($message, 0, $clen); |
|
| 94 | + $ciphertext = ParagonIE_Sodium_Core_Util::substr( $message, 0, $clen ); |
|
| 95 | 95 | |
| 96 | 96 | /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
| 97 | 97 | $block0 = ParagonIE_Sodium_Core_ChaCha20::stream( |
@@ -101,21 +101,21 @@ discard block |
||
| 101 | 101 | ); |
| 102 | 102 | |
| 103 | 103 | /* Recalculate the Poly1305 authentication tag (MAC): */ |
| 104 | - $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 104 | + $state = new ParagonIE_Sodium_Core_Poly1305_State( $block0 ); |
|
| 105 | 105 | try { |
| 106 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 107 | - } catch (SodiumException $ex) { |
|
| 106 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 107 | + } catch ( SodiumException $ex ) { |
|
| 108 | 108 | $block0 = null; |
| 109 | 109 | } |
| 110 | - $state->update($ad); |
|
| 111 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 112 | - $state->update($ciphertext); |
|
| 113 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($clen)); |
|
| 110 | + $state->update( $ad ); |
|
| 111 | + $state->update( ParagonIE_Sodium_Core_Util::store64_le( $adlen ) ); |
|
| 112 | + $state->update( $ciphertext ); |
|
| 113 | + $state->update( ParagonIE_Sodium_Core_Util::store64_le( $clen ) ); |
|
| 114 | 114 | $computed_mac = $state->finish(); |
| 115 | 115 | |
| 116 | 116 | /* Compare the given MAC with the recalculated MAC: */ |
| 117 | - if (!ParagonIE_Sodium_Core_Util::verify_16($computed_mac, $mac)) { |
|
| 118 | - throw new SodiumException('Invalid MAC'); |
|
| 117 | + if ( ! ParagonIE_Sodium_Core_Util::verify_16( $computed_mac, $mac ) ) { |
|
| 118 | + throw new SodiumException( 'Invalid MAC' ); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | $ciphertext, |
| 124 | 124 | $nonce, |
| 125 | 125 | $key, |
| 126 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 126 | + ParagonIE_Sodium_Core_Util::store64_le( 1 ) |
|
| 127 | 127 | ); |
| 128 | 128 | } |
| 129 | 129 | |
@@ -147,10 +147,10 @@ discard block |
||
| 147 | 147 | $key = '' |
| 148 | 148 | ) { |
| 149 | 149 | /** @var int $len - Length of the plaintext message */ |
| 150 | - $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 150 | + $len = ParagonIE_Sodium_Core_Util::strlen( $message ); |
|
| 151 | 151 | |
| 152 | 152 | /** @var int $adlen - Length of the associated data */ |
| 153 | - $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 153 | + $adlen = ParagonIE_Sodium_Core_Util::strlen( $ad ); |
|
| 154 | 154 | |
| 155 | 155 | /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
| 156 | 156 | $block0 = ParagonIE_Sodium_Core_ChaCha20::stream( |
@@ -158,10 +158,10 @@ discard block |
||
| 158 | 158 | $nonce, |
| 159 | 159 | $key |
| 160 | 160 | ); |
| 161 | - $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 161 | + $state = new ParagonIE_Sodium_Core_Poly1305_State( $block0 ); |
|
| 162 | 162 | try { |
| 163 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 164 | - } catch (SodiumException $ex) { |
|
| 163 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 164 | + } catch ( SodiumException $ex ) { |
|
| 165 | 165 | $block0 = null; |
| 166 | 166 | } |
| 167 | 167 | |
@@ -170,13 +170,13 @@ discard block |
||
| 170 | 170 | $message, |
| 171 | 171 | $nonce, |
| 172 | 172 | $key, |
| 173 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 173 | + ParagonIE_Sodium_Core_Util::store64_le( 1 ) |
|
| 174 | 174 | ); |
| 175 | 175 | |
| 176 | - $state->update($ad); |
|
| 177 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 178 | - $state->update($ciphertext); |
|
| 179 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($len)); |
|
| 176 | + $state->update( $ad ); |
|
| 177 | + $state->update( ParagonIE_Sodium_Core_Util::store64_le( $adlen ) ); |
|
| 178 | + $state->update( $ciphertext ); |
|
| 179 | + $state->update( ParagonIE_Sodium_Core_Util::store64_le( $len ) ); |
|
| 180 | 180 | return $ciphertext . $state->finish(); |
| 181 | 181 | } |
| 182 | 182 | |
@@ -200,10 +200,10 @@ discard block |
||
| 200 | 200 | $key = '' |
| 201 | 201 | ) { |
| 202 | 202 | /** @var int $adlen - Length of associated data */ |
| 203 | - $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 203 | + $adlen = ParagonIE_Sodium_Core_Util::strlen( $ad ); |
|
| 204 | 204 | |
| 205 | 205 | /** @var int $len - Length of message (ciphertext + MAC) */ |
| 206 | - $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 206 | + $len = ParagonIE_Sodium_Core_Util::strlen( $message ); |
|
| 207 | 207 | |
| 208 | 208 | /** @var int $clen - Length of ciphertext */ |
| 209 | 209 | $clen = $len - self::aead_chacha20poly1305_IETF_ABYTES; |
@@ -230,23 +230,23 @@ discard block |
||
| 230 | 230 | ); |
| 231 | 231 | |
| 232 | 232 | /* Recalculate the Poly1305 authentication tag (MAC): */ |
| 233 | - $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 233 | + $state = new ParagonIE_Sodium_Core_Poly1305_State( $block0 ); |
|
| 234 | 234 | try { |
| 235 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 236 | - } catch (SodiumException $ex) { |
|
| 235 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 236 | + } catch ( SodiumException $ex ) { |
|
| 237 | 237 | $block0 = null; |
| 238 | 238 | } |
| 239 | - $state->update($ad); |
|
| 240 | - $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 241 | - $state->update($ciphertext); |
|
| 242 | - $state->update(str_repeat("\x00", (0x10 - $clen) & 0xf)); |
|
| 243 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 244 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($clen)); |
|
| 239 | + $state->update( $ad ); |
|
| 240 | + $state->update( str_repeat( "\x00", ( ( 0x10 - $adlen ) & 0xf ) ) ); |
|
| 241 | + $state->update( $ciphertext ); |
|
| 242 | + $state->update( str_repeat( "\x00", ( 0x10 - $clen ) & 0xf ) ); |
|
| 243 | + $state->update( ParagonIE_Sodium_Core_Util::store64_le( $adlen ) ); |
|
| 244 | + $state->update( ParagonIE_Sodium_Core_Util::store64_le( $clen ) ); |
|
| 245 | 245 | $computed_mac = $state->finish(); |
| 246 | 246 | |
| 247 | 247 | /* Compare the given MAC with the recalculated MAC: */ |
| 248 | - if (!ParagonIE_Sodium_Core_Util::verify_16($computed_mac, $mac)) { |
|
| 249 | - throw new SodiumException('Invalid MAC'); |
|
| 248 | + if ( ! ParagonIE_Sodium_Core_Util::verify_16( $computed_mac, $mac ) ) { |
|
| 249 | + throw new SodiumException( 'Invalid MAC' ); |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
@@ -254,7 +254,7 @@ discard block |
||
| 254 | 254 | $ciphertext, |
| 255 | 255 | $nonce, |
| 256 | 256 | $key, |
| 257 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 257 | + ParagonIE_Sodium_Core_Util::store64_le( 1 ) |
|
| 258 | 258 | ); |
| 259 | 259 | } |
| 260 | 260 | |
@@ -278,10 +278,10 @@ discard block |
||
| 278 | 278 | $key = '' |
| 279 | 279 | ) { |
| 280 | 280 | /** @var int $len - Length of the plaintext message */ |
| 281 | - $len = ParagonIE_Sodium_Core_Util::strlen($message); |
|
| 281 | + $len = ParagonIE_Sodium_Core_Util::strlen( $message ); |
|
| 282 | 282 | |
| 283 | 283 | /** @var int $adlen - Length of the associated data */ |
| 284 | - $adlen = ParagonIE_Sodium_Core_Util::strlen($ad); |
|
| 284 | + $adlen = ParagonIE_Sodium_Core_Util::strlen( $ad ); |
|
| 285 | 285 | |
| 286 | 286 | /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
| 287 | 287 | $block0 = ParagonIE_Sodium_Core_ChaCha20::ietfStream( |
@@ -289,10 +289,10 @@ discard block |
||
| 289 | 289 | $nonce, |
| 290 | 290 | $key |
| 291 | 291 | ); |
| 292 | - $state = new ParagonIE_Sodium_Core_Poly1305_State($block0); |
|
| 292 | + $state = new ParagonIE_Sodium_Core_Poly1305_State( $block0 ); |
|
| 293 | 293 | try { |
| 294 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 295 | - } catch (SodiumException $ex) { |
|
| 294 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 295 | + } catch ( SodiumException $ex ) { |
|
| 296 | 296 | $block0 = null; |
| 297 | 297 | } |
| 298 | 298 | |
@@ -301,15 +301,15 @@ discard block |
||
| 301 | 301 | $message, |
| 302 | 302 | $nonce, |
| 303 | 303 | $key, |
| 304 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 304 | + ParagonIE_Sodium_Core_Util::store64_le( 1 ) |
|
| 305 | 305 | ); |
| 306 | 306 | |
| 307 | - $state->update($ad); |
|
| 308 | - $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 309 | - $state->update($ciphertext); |
|
| 310 | - $state->update(str_repeat("\x00", ((0x10 - $len) & 0xf))); |
|
| 311 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($adlen)); |
|
| 312 | - $state->update(ParagonIE_Sodium_Core_Util::store64_le($len)); |
|
| 307 | + $state->update( $ad ); |
|
| 308 | + $state->update( str_repeat( "\x00", ( ( 0x10 - $adlen ) & 0xf ) ) ); |
|
| 309 | + $state->update( $ciphertext ); |
|
| 310 | + $state->update( str_repeat( "\x00", ( ( 0x10 - $len ) & 0xf ) ) ); |
|
| 311 | + $state->update( ParagonIE_Sodium_Core_Util::store64_le( $adlen ) ); |
|
| 312 | + $state->update( ParagonIE_Sodium_Core_Util::store64_le( $len ) ); |
|
| 313 | 313 | return $ciphertext . $state->finish(); |
| 314 | 314 | } |
| 315 | 315 | |
@@ -333,13 +333,13 @@ discard block |
||
| 333 | 333 | $key = '' |
| 334 | 334 | ) { |
| 335 | 335 | $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
| 336 | - ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
|
| 336 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 0, 16 ), |
|
| 337 | 337 | $key |
| 338 | 338 | ); |
| 339 | 339 | $nonceLast = "\x00\x00\x00\x00" . |
| 340 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8); |
|
| 340 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 16, 8 ); |
|
| 341 | 341 | |
| 342 | - return self::aead_chacha20poly1305_ietf_decrypt($message, $ad, $nonceLast, $subkey); |
|
| 342 | + return self::aead_chacha20poly1305_ietf_decrypt( $message, $ad, $nonceLast, $subkey ); |
|
| 343 | 343 | } |
| 344 | 344 | |
| 345 | 345 | /** |
@@ -362,13 +362,13 @@ discard block |
||
| 362 | 362 | $key = '' |
| 363 | 363 | ) { |
| 364 | 364 | $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
| 365 | - ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
|
| 365 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 0, 16 ), |
|
| 366 | 366 | $key |
| 367 | 367 | ); |
| 368 | 368 | $nonceLast = "\x00\x00\x00\x00" . |
| 369 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8); |
|
| 369 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 16, 8 ); |
|
| 370 | 370 | |
| 371 | - return self::aead_chacha20poly1305_ietf_encrypt($message, $ad, $nonceLast, $subkey); |
|
| 371 | + return self::aead_chacha20poly1305_ietf_encrypt( $message, $ad, $nonceLast, $subkey ); |
|
| 372 | 372 | } |
| 373 | 373 | |
| 374 | 374 | /** |
@@ -381,10 +381,10 @@ discard block |
||
| 381 | 381 | * @return string |
| 382 | 382 | * @throws TypeError |
| 383 | 383 | */ |
| 384 | - public static function auth($message, $key) |
|
| 384 | + public static function auth( $message, $key ) |
|
| 385 | 385 | { |
| 386 | 386 | return ParagonIE_Sodium_Core_Util::substr( |
| 387 | - hash_hmac('sha512', $message, $key, true), |
|
| 387 | + hash_hmac( 'sha512', $message, $key, true ), |
|
| 388 | 388 | 0, |
| 389 | 389 | 32 |
| 390 | 390 | ); |
@@ -402,11 +402,11 @@ discard block |
||
| 402 | 402 | * @throws SodiumException |
| 403 | 403 | * @throws TypeError |
| 404 | 404 | */ |
| 405 | - public static function auth_verify($mac, $message, $key) |
|
| 405 | + public static function auth_verify( $mac, $message, $key ) |
|
| 406 | 406 | { |
| 407 | 407 | return ParagonIE_Sodium_Core_Util::hashEquals( |
| 408 | 408 | $mac, |
| 409 | - self::auth($message, $key) |
|
| 409 | + self::auth( $message, $key ) |
|
| 410 | 410 | ); |
| 411 | 411 | } |
| 412 | 412 | |
@@ -422,14 +422,14 @@ discard block |
||
| 422 | 422 | * @throws SodiumException |
| 423 | 423 | * @throws TypeError |
| 424 | 424 | */ |
| 425 | - public static function box($plaintext, $nonce, $keypair) |
|
| 425 | + public static function box( $plaintext, $nonce, $keypair ) |
|
| 426 | 426 | { |
| 427 | 427 | $c = self::secretbox( |
| 428 | 428 | $plaintext, |
| 429 | 429 | $nonce, |
| 430 | 430 | self::box_beforenm( |
| 431 | - self::box_secretkey($keypair), |
|
| 432 | - self::box_publickey($keypair) |
|
| 431 | + self::box_secretkey( $keypair ), |
|
| 432 | + self::box_publickey( $keypair ) |
|
| 433 | 433 | ) |
| 434 | 434 | ); |
| 435 | 435 | return $c; |
@@ -446,16 +446,16 @@ discard block |
||
| 446 | 446 | * @throws SodiumException |
| 447 | 447 | * @throws TypeError |
| 448 | 448 | */ |
| 449 | - public static function box_seal($message, $publicKey) |
|
| 449 | + public static function box_seal( $message, $publicKey ) |
|
| 450 | 450 | { |
| 451 | 451 | /** @var string $ephemeralKeypair */ |
| 452 | 452 | $ephemeralKeypair = self::box_keypair(); |
| 453 | 453 | |
| 454 | 454 | /** @var string $ephemeralSK */ |
| 455 | - $ephemeralSK = self::box_secretkey($ephemeralKeypair); |
|
| 455 | + $ephemeralSK = self::box_secretkey( $ephemeralKeypair ); |
|
| 456 | 456 | |
| 457 | 457 | /** @var string $ephemeralPK */ |
| 458 | - $ephemeralPK = self::box_publickey($ephemeralKeypair); |
|
| 458 | + $ephemeralPK = self::box_publickey( $ephemeralKeypair ); |
|
| 459 | 459 | |
| 460 | 460 | /** @var string $nonce */ |
| 461 | 461 | $nonce = self::generichash( |
@@ -465,15 +465,15 @@ discard block |
||
| 465 | 465 | ); |
| 466 | 466 | |
| 467 | 467 | /** @var string $keypair - The combined keypair used in crypto_box() */ |
| 468 | - $keypair = self::box_keypair_from_secretkey_and_publickey($ephemeralSK, $publicKey); |
|
| 468 | + $keypair = self::box_keypair_from_secretkey_and_publickey( $ephemeralSK, $publicKey ); |
|
| 469 | 469 | |
| 470 | 470 | /** @var string $ciphertext Ciphertext + MAC from crypto_box */ |
| 471 | - $ciphertext = self::box($message, $nonce, $keypair); |
|
| 471 | + $ciphertext = self::box( $message, $nonce, $keypair ); |
|
| 472 | 472 | try { |
| 473 | - ParagonIE_Sodium_Compat::memzero($ephemeralKeypair); |
|
| 474 | - ParagonIE_Sodium_Compat::memzero($ephemeralSK); |
|
| 475 | - ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 476 | - } catch (SodiumException $ex) { |
|
| 473 | + ParagonIE_Sodium_Compat::memzero( $ephemeralKeypair ); |
|
| 474 | + ParagonIE_Sodium_Compat::memzero( $ephemeralSK ); |
|
| 475 | + ParagonIE_Sodium_Compat::memzero( $nonce ); |
|
| 476 | + } catch ( SodiumException $ex ) { |
|
| 477 | 477 | $ephemeralKeypair = null; |
| 478 | 478 | $ephemeralSK = null; |
| 479 | 479 | $nonce = null; |
@@ -492,19 +492,19 @@ discard block |
||
| 492 | 492 | * @throws SodiumException |
| 493 | 493 | * @throws TypeError |
| 494 | 494 | */ |
| 495 | - public static function box_seal_open($message, $keypair) |
|
| 495 | + public static function box_seal_open( $message, $keypair ) |
|
| 496 | 496 | { |
| 497 | 497 | /** @var string $ephemeralPK */ |
| 498 | - $ephemeralPK = ParagonIE_Sodium_Core_Util::substr($message, 0, 32); |
|
| 498 | + $ephemeralPK = ParagonIE_Sodium_Core_Util::substr( $message, 0, 32 ); |
|
| 499 | 499 | |
| 500 | 500 | /** @var string $ciphertext (ciphertext + MAC) */ |
| 501 | - $ciphertext = ParagonIE_Sodium_Core_Util::substr($message, 32); |
|
| 501 | + $ciphertext = ParagonIE_Sodium_Core_Util::substr( $message, 32 ); |
|
| 502 | 502 | |
| 503 | 503 | /** @var string $secretKey */ |
| 504 | - $secretKey = self::box_secretkey($keypair); |
|
| 504 | + $secretKey = self::box_secretkey( $keypair ); |
|
| 505 | 505 | |
| 506 | 506 | /** @var string $publicKey */ |
| 507 | - $publicKey = self::box_publickey($keypair); |
|
| 507 | + $publicKey = self::box_publickey( $keypair ); |
|
| 508 | 508 | |
| 509 | 509 | /** @var string $nonce */ |
| 510 | 510 | $nonce = self::generichash( |
@@ -514,15 +514,15 @@ discard block |
||
| 514 | 514 | ); |
| 515 | 515 | |
| 516 | 516 | /** @var string $keypair */ |
| 517 | - $keypair = self::box_keypair_from_secretkey_and_publickey($secretKey, $ephemeralPK); |
|
| 517 | + $keypair = self::box_keypair_from_secretkey_and_publickey( $secretKey, $ephemeralPK ); |
|
| 518 | 518 | |
| 519 | 519 | /** @var string $m */ |
| 520 | - $m = self::box_open($ciphertext, $nonce, $keypair); |
|
| 520 | + $m = self::box_open( $ciphertext, $nonce, $keypair ); |
|
| 521 | 521 | try { |
| 522 | - ParagonIE_Sodium_Compat::memzero($secretKey); |
|
| 523 | - ParagonIE_Sodium_Compat::memzero($ephemeralPK); |
|
| 524 | - ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 525 | - } catch (SodiumException $ex) { |
|
| 522 | + ParagonIE_Sodium_Compat::memzero( $secretKey ); |
|
| 523 | + ParagonIE_Sodium_Compat::memzero( $ephemeralPK ); |
|
| 524 | + ParagonIE_Sodium_Compat::memzero( $nonce ); |
|
| 525 | + } catch ( SodiumException $ex ) { |
|
| 526 | 526 | $secretKey = null; |
| 527 | 527 | $ephemeralPK = null; |
| 528 | 528 | $nonce = null; |
@@ -541,11 +541,11 @@ discard block |
||
| 541 | 541 | * @throws SodiumException |
| 542 | 542 | * @throws TypeError |
| 543 | 543 | */ |
| 544 | - public static function box_beforenm($sk, $pk) |
|
| 544 | + public static function box_beforenm( $sk, $pk ) |
|
| 545 | 545 | { |
| 546 | 546 | return ParagonIE_Sodium_Core_HSalsa20::hsalsa20( |
| 547 | - str_repeat("\x00", 16), |
|
| 548 | - self::scalarmult($sk, $pk) |
|
| 547 | + str_repeat( "\x00", 16 ), |
|
| 548 | + self::scalarmult( $sk, $pk ) |
|
| 549 | 549 | ); |
| 550 | 550 | } |
| 551 | 551 | |
@@ -559,8 +559,8 @@ discard block |
||
| 559 | 559 | */ |
| 560 | 560 | public static function box_keypair() |
| 561 | 561 | { |
| 562 | - $sKey = random_bytes(32); |
|
| 563 | - $pKey = self::scalarmult_base($sKey); |
|
| 562 | + $sKey = random_bytes( 32 ); |
|
| 563 | + $pKey = self::scalarmult_base( $sKey ); |
|
| 564 | 564 | return $sKey . $pKey; |
| 565 | 565 | } |
| 566 | 566 | |
@@ -570,14 +570,14 @@ discard block |
||
| 570 | 570 | * @throws SodiumException |
| 571 | 571 | * @throws TypeError |
| 572 | 572 | */ |
| 573 | - public static function box_seed_keypair($seed) |
|
| 573 | + public static function box_seed_keypair( $seed ) |
|
| 574 | 574 | { |
| 575 | 575 | $sKey = ParagonIE_Sodium_Core_Util::substr( |
| 576 | - hash('sha512', $seed, true), |
|
| 576 | + hash( 'sha512', $seed, true ), |
|
| 577 | 577 | 0, |
| 578 | 578 | 32 |
| 579 | 579 | ); |
| 580 | - $pKey = self::scalarmult_base($sKey); |
|
| 580 | + $pKey = self::scalarmult_base( $sKey ); |
|
| 581 | 581 | return $sKey . $pKey; |
| 582 | 582 | } |
| 583 | 583 | |
@@ -589,10 +589,10 @@ discard block |
||
| 589 | 589 | * @return string |
| 590 | 590 | * @throws TypeError |
| 591 | 591 | */ |
| 592 | - public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) |
|
| 592 | + public static function box_keypair_from_secretkey_and_publickey( $sKey, $pKey ) |
|
| 593 | 593 | { |
| 594 | - return ParagonIE_Sodium_Core_Util::substr($sKey, 0, 32) . |
|
| 595 | - ParagonIE_Sodium_Core_Util::substr($pKey, 0, 32); |
|
| 594 | + return ParagonIE_Sodium_Core_Util::substr( $sKey, 0, 32 ) . |
|
| 595 | + ParagonIE_Sodium_Core_Util::substr( $pKey, 0, 32 ); |
|
| 596 | 596 | } |
| 597 | 597 | |
| 598 | 598 | /** |
@@ -603,14 +603,14 @@ discard block |
||
| 603 | 603 | * @throws RangeException |
| 604 | 604 | * @throws TypeError |
| 605 | 605 | */ |
| 606 | - public static function box_secretkey($keypair) |
|
| 606 | + public static function box_secretkey( $keypair ) |
|
| 607 | 607 | { |
| 608 | - if (ParagonIE_Sodium_Core_Util::strlen($keypair) !== 64) { |
|
| 608 | + if ( ParagonIE_Sodium_Core_Util::strlen( $keypair ) !== 64 ) { |
|
| 609 | 609 | throw new RangeException( |
| 610 | 610 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
| 611 | 611 | ); |
| 612 | 612 | } |
| 613 | - return ParagonIE_Sodium_Core_Util::substr($keypair, 0, 32); |
|
| 613 | + return ParagonIE_Sodium_Core_Util::substr( $keypair, 0, 32 ); |
|
| 614 | 614 | } |
| 615 | 615 | |
| 616 | 616 | /** |
@@ -621,14 +621,14 @@ discard block |
||
| 621 | 621 | * @throws RangeException |
| 622 | 622 | * @throws TypeError |
| 623 | 623 | */ |
| 624 | - public static function box_publickey($keypair) |
|
| 624 | + public static function box_publickey( $keypair ) |
|
| 625 | 625 | { |
| 626 | - if (ParagonIE_Sodium_Core_Util::strlen($keypair) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES) { |
|
| 626 | + if ( ParagonIE_Sodium_Core_Util::strlen( $keypair ) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES ) { |
|
| 627 | 627 | throw new RangeException( |
| 628 | 628 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
| 629 | 629 | ); |
| 630 | 630 | } |
| 631 | - return ParagonIE_Sodium_Core_Util::substr($keypair, 32, 32); |
|
| 631 | + return ParagonIE_Sodium_Core_Util::substr( $keypair, 32, 32 ); |
|
| 632 | 632 | } |
| 633 | 633 | |
| 634 | 634 | /** |
@@ -640,14 +640,14 @@ discard block |
||
| 640 | 640 | * @throws SodiumException |
| 641 | 641 | * @throws TypeError |
| 642 | 642 | */ |
| 643 | - public static function box_publickey_from_secretkey($sKey) |
|
| 643 | + public static function box_publickey_from_secretkey( $sKey ) |
|
| 644 | 644 | { |
| 645 | - if (ParagonIE_Sodium_Core_Util::strlen($sKey) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES) { |
|
| 645 | + if ( ParagonIE_Sodium_Core_Util::strlen( $sKey ) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES ) { |
|
| 646 | 646 | throw new RangeException( |
| 647 | 647 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES bytes long.' |
| 648 | 648 | ); |
| 649 | 649 | } |
| 650 | - return self::scalarmult_base($sKey); |
|
| 650 | + return self::scalarmult_base( $sKey ); |
|
| 651 | 651 | } |
| 652 | 652 | |
| 653 | 653 | /** |
@@ -662,14 +662,14 @@ discard block |
||
| 662 | 662 | * @throws SodiumException |
| 663 | 663 | * @throws TypeError |
| 664 | 664 | */ |
| 665 | - public static function box_open($ciphertext, $nonce, $keypair) |
|
| 665 | + public static function box_open( $ciphertext, $nonce, $keypair ) |
|
| 666 | 666 | { |
| 667 | 667 | return self::secretbox_open( |
| 668 | 668 | $ciphertext, |
| 669 | 669 | $nonce, |
| 670 | 670 | self::box_beforenm( |
| 671 | - self::box_secretkey($keypair), |
|
| 672 | - self::box_publickey($keypair) |
|
| 671 | + self::box_secretkey( $keypair ), |
|
| 672 | + self::box_publickey( $keypair ) |
|
| 673 | 673 | ) |
| 674 | 674 | ); |
| 675 | 675 | } |
@@ -687,34 +687,34 @@ discard block |
||
| 687 | 687 | * @throws SodiumException |
| 688 | 688 | * @throws TypeError |
| 689 | 689 | */ |
| 690 | - public static function generichash($message, $key = '', $outlen = 32) |
|
| 690 | + public static function generichash( $message, $key = '', $outlen = 32 ) |
|
| 691 | 691 | { |
| 692 | 692 | // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
| 693 | 693 | ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
| 694 | 694 | |
| 695 | 695 | $k = null; |
| 696 | - if (!empty($key)) { |
|
| 696 | + if ( ! empty( $key ) ) { |
|
| 697 | 697 | /** @var SplFixedArray $k */ |
| 698 | - $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($key); |
|
| 699 | - if ($k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES) { |
|
| 700 | - throw new RangeException('Invalid key size'); |
|
| 698 | + $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray( $key ); |
|
| 699 | + if ( $k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES ) { |
|
| 700 | + throw new RangeException( 'Invalid key size' ); |
|
| 701 | 701 | } |
| 702 | 702 | } |
| 703 | 703 | |
| 704 | 704 | /** @var SplFixedArray $in */ |
| 705 | - $in = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($message); |
|
| 705 | + $in = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray( $message ); |
|
| 706 | 706 | |
| 707 | 707 | /** @var SplFixedArray $ctx */ |
| 708 | - $ctx = ParagonIE_Sodium_Core_BLAKE2b::init($k, $outlen); |
|
| 709 | - ParagonIE_Sodium_Core_BLAKE2b::update($ctx, $in, $in->count()); |
|
| 708 | + $ctx = ParagonIE_Sodium_Core_BLAKE2b::init( $k, $outlen ); |
|
| 709 | + ParagonIE_Sodium_Core_BLAKE2b::update( $ctx, $in, $in->count() ); |
|
| 710 | 710 | |
| 711 | 711 | /** @var SplFixedArray $out */ |
| 712 | - $out = new SplFixedArray($outlen); |
|
| 713 | - $out = ParagonIE_Sodium_Core_BLAKE2b::finish($ctx, $out); |
|
| 712 | + $out = new SplFixedArray( $outlen ); |
|
| 713 | + $out = ParagonIE_Sodium_Core_BLAKE2b::finish( $ctx, $out ); |
|
| 714 | 714 | |
| 715 | 715 | /** @var array<int, int> */ |
| 716 | 716 | $outArray = $out->toArray(); |
| 717 | - return ParagonIE_Sodium_Core_Util::intArrayToString($outArray); |
|
| 717 | + return ParagonIE_Sodium_Core_Util::intArrayToString( $outArray ); |
|
| 718 | 718 | } |
| 719 | 719 | |
| 720 | 720 | /** |
@@ -728,22 +728,22 @@ discard block |
||
| 728 | 728 | * @throws SodiumException |
| 729 | 729 | * @throws TypeError |
| 730 | 730 | */ |
| 731 | - public static function generichash_final($ctx, $outlen = 32) |
|
| 731 | + public static function generichash_final( $ctx, $outlen = 32 ) |
|
| 732 | 732 | { |
| 733 | - if (!is_string($ctx)) { |
|
| 734 | - throw new TypeError('Context must be a string'); |
|
| 733 | + if ( ! is_string( $ctx ) ) { |
|
| 734 | + throw new TypeError( 'Context must be a string' ); |
|
| 735 | 735 | } |
| 736 | - $out = new SplFixedArray($outlen); |
|
| 736 | + $out = new SplFixedArray( $outlen ); |
|
| 737 | 737 | |
| 738 | 738 | /** @var SplFixedArray $context */ |
| 739 | - $context = ParagonIE_Sodium_Core_BLAKE2b::stringToContext($ctx); |
|
| 739 | + $context = ParagonIE_Sodium_Core_BLAKE2b::stringToContext( $ctx ); |
|
| 740 | 740 | |
| 741 | 741 | /** @var SplFixedArray $out */ |
| 742 | - $out = ParagonIE_Sodium_Core_BLAKE2b::finish($context, $out); |
|
| 742 | + $out = ParagonIE_Sodium_Core_BLAKE2b::finish( $context, $out ); |
|
| 743 | 743 | |
| 744 | 744 | /** @var array<int, int> */ |
| 745 | 745 | $outArray = $out->toArray(); |
| 746 | - return ParagonIE_Sodium_Core_Util::intArrayToString($outArray); |
|
| 746 | + return ParagonIE_Sodium_Core_Util::intArrayToString( $outArray ); |
|
| 747 | 747 | } |
| 748 | 748 | |
| 749 | 749 | /** |
@@ -758,23 +758,23 @@ discard block |
||
| 758 | 758 | * @throws SodiumException |
| 759 | 759 | * @throws TypeError |
| 760 | 760 | */ |
| 761 | - public static function generichash_init($key = '', $outputLength = 32) |
|
| 761 | + public static function generichash_init( $key = '', $outputLength = 32 ) |
|
| 762 | 762 | { |
| 763 | 763 | // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
| 764 | 764 | ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
| 765 | 765 | |
| 766 | 766 | $k = null; |
| 767 | - if (!empty($key)) { |
|
| 768 | - $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($key); |
|
| 769 | - if ($k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES) { |
|
| 770 | - throw new RangeException('Invalid key size'); |
|
| 767 | + if ( ! empty( $key ) ) { |
|
| 768 | + $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray( $key ); |
|
| 769 | + if ( $k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES ) { |
|
| 770 | + throw new RangeException( 'Invalid key size' ); |
|
| 771 | 771 | } |
| 772 | 772 | } |
| 773 | 773 | |
| 774 | 774 | /** @var SplFixedArray $ctx */ |
| 775 | - $ctx = ParagonIE_Sodium_Core_BLAKE2b::init($k, $outputLength); |
|
| 775 | + $ctx = ParagonIE_Sodium_Core_BLAKE2b::init( $k, $outputLength ); |
|
| 776 | 776 | |
| 777 | - return ParagonIE_Sodium_Core_BLAKE2b::contextToString($ctx); |
|
| 777 | + return ParagonIE_Sodium_Core_BLAKE2b::contextToString( $ctx ); |
|
| 778 | 778 | } |
| 779 | 779 | |
| 780 | 780 | /** |
@@ -801,27 +801,27 @@ discard block |
||
| 801 | 801 | ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
| 802 | 802 | |
| 803 | 803 | $k = null; |
| 804 | - if (!empty($key)) { |
|
| 805 | - $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($key); |
|
| 806 | - if ($k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES) { |
|
| 807 | - throw new RangeException('Invalid key size'); |
|
| 804 | + if ( ! empty( $key ) ) { |
|
| 805 | + $k = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray( $key ); |
|
| 806 | + if ( $k->count() > ParagonIE_Sodium_Core_BLAKE2b::KEYBYTES ) { |
|
| 807 | + throw new RangeException( 'Invalid key size' ); |
|
| 808 | 808 | } |
| 809 | 809 | } |
| 810 | - if (!empty($salt)) { |
|
| 811 | - $s = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($salt); |
|
| 810 | + if ( ! empty( $salt ) ) { |
|
| 811 | + $s = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray( $salt ); |
|
| 812 | 812 | } else { |
| 813 | 813 | $s = null; |
| 814 | 814 | } |
| 815 | - if (!empty($salt)) { |
|
| 816 | - $p = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($personal); |
|
| 815 | + if ( ! empty( $salt ) ) { |
|
| 816 | + $p = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray( $personal ); |
|
| 817 | 817 | } else { |
| 818 | 818 | $p = null; |
| 819 | 819 | } |
| 820 | 820 | |
| 821 | 821 | /** @var SplFixedArray $ctx */ |
| 822 | - $ctx = ParagonIE_Sodium_Core_BLAKE2b::init($k, $outputLength, $s, $p); |
|
| 822 | + $ctx = ParagonIE_Sodium_Core_BLAKE2b::init( $k, $outputLength, $s, $p ); |
|
| 823 | 823 | |
| 824 | - return ParagonIE_Sodium_Core_BLAKE2b::contextToString($ctx); |
|
| 824 | + return ParagonIE_Sodium_Core_BLAKE2b::contextToString( $ctx ); |
|
| 825 | 825 | } |
| 826 | 826 | |
| 827 | 827 | /** |
@@ -835,20 +835,20 @@ discard block |
||
| 835 | 835 | * @throws SodiumException |
| 836 | 836 | * @throws TypeError |
| 837 | 837 | */ |
| 838 | - public static function generichash_update($ctx, $message) |
|
| 838 | + public static function generichash_update( $ctx, $message ) |
|
| 839 | 839 | { |
| 840 | 840 | // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
| 841 | 841 | ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
| 842 | 842 | |
| 843 | 843 | /** @var SplFixedArray $context */ |
| 844 | - $context = ParagonIE_Sodium_Core_BLAKE2b::stringToContext($ctx); |
|
| 844 | + $context = ParagonIE_Sodium_Core_BLAKE2b::stringToContext( $ctx ); |
|
| 845 | 845 | |
| 846 | 846 | /** @var SplFixedArray $in */ |
| 847 | - $in = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray($message); |
|
| 847 | + $in = ParagonIE_Sodium_Core_BLAKE2b::stringToSplFixedArray( $message ); |
|
| 848 | 848 | |
| 849 | - ParagonIE_Sodium_Core_BLAKE2b::update($context, $in, $in->count()); |
|
| 849 | + ParagonIE_Sodium_Core_BLAKE2b::update( $context, $in, $in->count() ); |
|
| 850 | 850 | |
| 851 | - return ParagonIE_Sodium_Core_BLAKE2b::contextToString($context); |
|
| 851 | + return ParagonIE_Sodium_Core_BLAKE2b::contextToString( $context ); |
|
| 852 | 852 | } |
| 853 | 853 | |
| 854 | 854 | /** |
@@ -864,10 +864,10 @@ discard block |
||
| 864 | 864 | * @throws SodiumException |
| 865 | 865 | * @throws TypeError |
| 866 | 866 | */ |
| 867 | - public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) |
|
| 867 | + public static function keyExchange( $my_sk, $their_pk, $client_pk, $server_pk ) |
|
| 868 | 868 | { |
| 869 | 869 | return ParagonIE_Sodium_Compat::crypto_generichash( |
| 870 | - ParagonIE_Sodium_Compat::crypto_scalarmult($my_sk, $their_pk) . |
|
| 870 | + ParagonIE_Sodium_Compat::crypto_scalarmult( $my_sk, $their_pk ) . |
|
| 871 | 871 | $client_pk . |
| 872 | 872 | $server_pk |
| 873 | 873 | ); |
@@ -885,10 +885,10 @@ discard block |
||
| 885 | 885 | * @throws SodiumException |
| 886 | 886 | * @throws TypeError |
| 887 | 887 | */ |
| 888 | - public static function scalarmult($sKey, $pKey) |
|
| 888 | + public static function scalarmult( $sKey, $pKey ) |
|
| 889 | 889 | { |
| 890 | - $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10($sKey, $pKey); |
|
| 891 | - self::scalarmult_throw_if_zero($q); |
|
| 890 | + $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10( $sKey, $pKey ); |
|
| 891 | + self::scalarmult_throw_if_zero( $q ); |
|
| 892 | 892 | return $q; |
| 893 | 893 | } |
| 894 | 894 | |
@@ -902,10 +902,10 @@ discard block |
||
| 902 | 902 | * @throws SodiumException |
| 903 | 903 | * @throws TypeError |
| 904 | 904 | */ |
| 905 | - public static function scalarmult_base($secret) |
|
| 905 | + public static function scalarmult_base( $secret ) |
|
| 906 | 906 | { |
| 907 | - $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10_base($secret); |
|
| 908 | - self::scalarmult_throw_if_zero($q); |
|
| 907 | + $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10_base( $secret ); |
|
| 908 | + self::scalarmult_throw_if_zero( $q ); |
|
| 909 | 909 | return $q; |
| 910 | 910 | } |
| 911 | 911 | |
@@ -917,16 +917,16 @@ discard block |
||
| 917 | 917 | * @throws SodiumException |
| 918 | 918 | * @throws TypeError |
| 919 | 919 | */ |
| 920 | - protected static function scalarmult_throw_if_zero($q) |
|
| 920 | + protected static function scalarmult_throw_if_zero( $q ) |
|
| 921 | 921 | { |
| 922 | 922 | $d = 0; |
| 923 | - for ($i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i) { |
|
| 924 | - $d |= ParagonIE_Sodium_Core_Util::chrToInt($q[$i]); |
|
| 923 | + for ( $i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i ) { |
|
| 924 | + $d |= ParagonIE_Sodium_Core_Util::chrToInt( $q[ $i ] ); |
|
| 925 | 925 | } |
| 926 | 926 | |
| 927 | 927 | /* branch-free variant of === 0 */ |
| 928 | - if (-(1 & (($d - 1) >> 8))) { |
|
| 929 | - throw new SodiumException('Zero public key is not allowed'); |
|
| 928 | + if (-( 1 & ( ( $d - 1 ) >> 8 ) )) { |
|
| 929 | + throw new SodiumException( 'Zero public key is not allowed' ); |
|
| 930 | 930 | } |
| 931 | 931 | } |
| 932 | 932 | |
@@ -942,26 +942,26 @@ discard block |
||
| 942 | 942 | * @throws SodiumException |
| 943 | 943 | * @throws TypeError |
| 944 | 944 | */ |
| 945 | - public static function secretbox($plaintext, $nonce, $key) |
|
| 945 | + public static function secretbox( $plaintext, $nonce, $key ) |
|
| 946 | 946 | { |
| 947 | 947 | /** @var string $subkey */ |
| 948 | - $subkey = ParagonIE_Sodium_Core_HSalsa20::hsalsa20($nonce, $key); |
|
| 948 | + $subkey = ParagonIE_Sodium_Core_HSalsa20::hsalsa20( $nonce, $key ); |
|
| 949 | 949 | |
| 950 | 950 | /** @var string $block0 */ |
| 951 | - $block0 = str_repeat("\x00", 32); |
|
| 951 | + $block0 = str_repeat( "\x00", 32 ); |
|
| 952 | 952 | |
| 953 | 953 | /** @var int $mlen - Length of the plaintext message */ |
| 954 | - $mlen = ParagonIE_Sodium_Core_Util::strlen($plaintext); |
|
| 954 | + $mlen = ParagonIE_Sodium_Core_Util::strlen( $plaintext ); |
|
| 955 | 955 | $mlen0 = $mlen; |
| 956 | - if ($mlen0 > 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 956 | + if ( $mlen0 > 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES ) { |
|
| 957 | 957 | $mlen0 = 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES; |
| 958 | 958 | } |
| 959 | - $block0 .= ParagonIE_Sodium_Core_Util::substr($plaintext, 0, $mlen0); |
|
| 959 | + $block0 .= ParagonIE_Sodium_Core_Util::substr( $plaintext, 0, $mlen0 ); |
|
| 960 | 960 | |
| 961 | 961 | /** @var string $block0 */ |
| 962 | 962 | $block0 = ParagonIE_Sodium_Core_Salsa20::salsa20_xor( |
| 963 | 963 | $block0, |
| 964 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 964 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 16, 8 ), |
|
| 965 | 965 | $subkey |
| 966 | 966 | ); |
| 967 | 967 | |
@@ -970,13 +970,13 @@ discard block |
||
| 970 | 970 | $block0, |
| 971 | 971 | self::secretbox_xsalsa20poly1305_ZEROBYTES |
| 972 | 972 | ); |
| 973 | - if ($mlen > $mlen0) { |
|
| 973 | + if ( $mlen > $mlen0 ) { |
|
| 974 | 974 | $c .= ParagonIE_Sodium_Core_Salsa20::salsa20_xor_ic( |
| 975 | 975 | ParagonIE_Sodium_Core_Util::substr( |
| 976 | 976 | $plaintext, |
| 977 | 977 | self::secretbox_xsalsa20poly1305_ZEROBYTES |
| 978 | 978 | ), |
| 979 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 979 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 16, 8 ), |
|
| 980 | 980 | 1, |
| 981 | 981 | $subkey |
| 982 | 982 | ); |
@@ -989,18 +989,18 @@ discard block |
||
| 989 | 989 | ) |
| 990 | 990 | ); |
| 991 | 991 | try { |
| 992 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 993 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 994 | - } catch (SodiumException $ex) { |
|
| 992 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 993 | + ParagonIE_Sodium_Compat::memzero( $subkey ); |
|
| 994 | + } catch ( SodiumException $ex ) { |
|
| 995 | 995 | $block0 = null; |
| 996 | 996 | $subkey = null; |
| 997 | 997 | } |
| 998 | 998 | |
| 999 | - $state->update($c); |
|
| 999 | + $state->update( $c ); |
|
| 1000 | 1000 | |
| 1001 | 1001 | /** @var string $c - MAC || ciphertext */ |
| 1002 | 1002 | $c = $state->finish() . $c; |
| 1003 | - unset($state); |
|
| 1003 | + unset( $state ); |
|
| 1004 | 1004 | |
| 1005 | 1005 | return $c; |
| 1006 | 1006 | } |
@@ -1017,7 +1017,7 @@ discard block |
||
| 1017 | 1017 | * @throws SodiumException |
| 1018 | 1018 | * @throws TypeError |
| 1019 | 1019 | */ |
| 1020 | - public static function secretbox_open($ciphertext, $nonce, $key) |
|
| 1020 | + public static function secretbox_open( $ciphertext, $nonce, $key ) |
|
| 1021 | 1021 | { |
| 1022 | 1022 | /** @var string $mac */ |
| 1023 | 1023 | $mac = ParagonIE_Sodium_Core_Util::substr( |
@@ -1033,46 +1033,46 @@ discard block |
||
| 1033 | 1033 | ); |
| 1034 | 1034 | |
| 1035 | 1035 | /** @var int $clen */ |
| 1036 | - $clen = ParagonIE_Sodium_Core_Util::strlen($c); |
|
| 1036 | + $clen = ParagonIE_Sodium_Core_Util::strlen( $c ); |
|
| 1037 | 1037 | |
| 1038 | 1038 | /** @var string $subkey */ |
| 1039 | - $subkey = ParagonIE_Sodium_Core_HSalsa20::hsalsa20($nonce, $key); |
|
| 1039 | + $subkey = ParagonIE_Sodium_Core_HSalsa20::hsalsa20( $nonce, $key ); |
|
| 1040 | 1040 | |
| 1041 | 1041 | /** @var string $block0 */ |
| 1042 | 1042 | $block0 = ParagonIE_Sodium_Core_Salsa20::salsa20( |
| 1043 | 1043 | 64, |
| 1044 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1044 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 16, 8 ), |
|
| 1045 | 1045 | $subkey |
| 1046 | 1046 | ); |
| 1047 | 1047 | $verified = ParagonIE_Sodium_Core_Poly1305::onetimeauth_verify( |
| 1048 | 1048 | $mac, |
| 1049 | 1049 | $c, |
| 1050 | - ParagonIE_Sodium_Core_Util::substr($block0, 0, 32) |
|
| 1050 | + ParagonIE_Sodium_Core_Util::substr( $block0, 0, 32 ) |
|
| 1051 | 1051 | ); |
| 1052 | - if (!$verified) { |
|
| 1052 | + if ( ! $verified ) { |
|
| 1053 | 1053 | try { |
| 1054 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1055 | - } catch (SodiumException $ex) { |
|
| 1054 | + ParagonIE_Sodium_Compat::memzero( $subkey ); |
|
| 1055 | + } catch ( SodiumException $ex ) { |
|
| 1056 | 1056 | $subkey = null; |
| 1057 | 1057 | } |
| 1058 | - throw new SodiumException('Invalid MAC'); |
|
| 1058 | + throw new SodiumException( 'Invalid MAC' ); |
|
| 1059 | 1059 | } |
| 1060 | 1060 | |
| 1061 | 1061 | /** @var string $m - Decrypted message */ |
| 1062 | 1062 | $m = ParagonIE_Sodium_Core_Util::xorStrings( |
| 1063 | - ParagonIE_Sodium_Core_Util::substr($block0, self::secretbox_xsalsa20poly1305_ZEROBYTES), |
|
| 1064 | - ParagonIE_Sodium_Core_Util::substr($c, 0, self::secretbox_xsalsa20poly1305_ZEROBYTES) |
|
| 1063 | + ParagonIE_Sodium_Core_Util::substr( $block0, self::secretbox_xsalsa20poly1305_ZEROBYTES ), |
|
| 1064 | + ParagonIE_Sodium_Core_Util::substr( $c, 0, self::secretbox_xsalsa20poly1305_ZEROBYTES ) |
|
| 1065 | 1065 | ); |
| 1066 | - if ($clen > self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 1066 | + if ( $clen > self::secretbox_xsalsa20poly1305_ZEROBYTES ) { |
|
| 1067 | 1067 | // We had more than 1 block, so let's continue to decrypt the rest. |
| 1068 | 1068 | $m .= ParagonIE_Sodium_Core_Salsa20::salsa20_xor_ic( |
| 1069 | 1069 | ParagonIE_Sodium_Core_Util::substr( |
| 1070 | 1070 | $c, |
| 1071 | 1071 | self::secretbox_xsalsa20poly1305_ZEROBYTES |
| 1072 | 1072 | ), |
| 1073 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1073 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 16, 8 ), |
|
| 1074 | 1074 | 1, |
| 1075 | - (string) $subkey |
|
| 1075 | + (string)$subkey |
|
| 1076 | 1076 | ); |
| 1077 | 1077 | } |
| 1078 | 1078 | return $m; |
@@ -1090,25 +1090,25 @@ discard block |
||
| 1090 | 1090 | * @throws SodiumException |
| 1091 | 1091 | * @throws TypeError |
| 1092 | 1092 | */ |
| 1093 | - public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) |
|
| 1093 | + public static function secretbox_xchacha20poly1305( $plaintext, $nonce, $key ) |
|
| 1094 | 1094 | { |
| 1095 | 1095 | /** @var string $subkey */ |
| 1096 | 1096 | $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
| 1097 | - ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
|
| 1097 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 0, 16 ), |
|
| 1098 | 1098 | $key |
| 1099 | 1099 | ); |
| 1100 | - $nonceLast = ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8); |
|
| 1100 | + $nonceLast = ParagonIE_Sodium_Core_Util::substr( $nonce, 16, 8 ); |
|
| 1101 | 1101 | |
| 1102 | 1102 | /** @var string $block0 */ |
| 1103 | - $block0 = str_repeat("\x00", 32); |
|
| 1103 | + $block0 = str_repeat( "\x00", 32 ); |
|
| 1104 | 1104 | |
| 1105 | 1105 | /** @var int $mlen - Length of the plaintext message */ |
| 1106 | - $mlen = ParagonIE_Sodium_Core_Util::strlen($plaintext); |
|
| 1106 | + $mlen = ParagonIE_Sodium_Core_Util::strlen( $plaintext ); |
|
| 1107 | 1107 | $mlen0 = $mlen; |
| 1108 | - if ($mlen0 > 64 - self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1108 | + if ( $mlen0 > 64 - self::secretbox_xchacha20poly1305_ZEROBYTES ) { |
|
| 1109 | 1109 | $mlen0 = 64 - self::secretbox_xchacha20poly1305_ZEROBYTES; |
| 1110 | 1110 | } |
| 1111 | - $block0 .= ParagonIE_Sodium_Core_Util::substr($plaintext, 0, $mlen0); |
|
| 1111 | + $block0 .= ParagonIE_Sodium_Core_Util::substr( $plaintext, 0, $mlen0 ); |
|
| 1112 | 1112 | |
| 1113 | 1113 | /** @var string $block0 */ |
| 1114 | 1114 | $block0 = ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
@@ -1122,7 +1122,7 @@ discard block |
||
| 1122 | 1122 | $block0, |
| 1123 | 1123 | self::secretbox_xchacha20poly1305_ZEROBYTES |
| 1124 | 1124 | ); |
| 1125 | - if ($mlen > $mlen0) { |
|
| 1125 | + if ( $mlen > $mlen0 ) { |
|
| 1126 | 1126 | $c .= ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
| 1127 | 1127 | ParagonIE_Sodium_Core_Util::substr( |
| 1128 | 1128 | $plaintext, |
@@ -1130,7 +1130,7 @@ discard block |
||
| 1130 | 1130 | ), |
| 1131 | 1131 | $nonceLast, |
| 1132 | 1132 | $subkey, |
| 1133 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1133 | + ParagonIE_Sodium_Core_Util::store64_le( 1 ) |
|
| 1134 | 1134 | ); |
| 1135 | 1135 | } |
| 1136 | 1136 | $state = new ParagonIE_Sodium_Core_Poly1305_State( |
@@ -1141,18 +1141,18 @@ discard block |
||
| 1141 | 1141 | ) |
| 1142 | 1142 | ); |
| 1143 | 1143 | try { |
| 1144 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 1145 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1146 | - } catch (SodiumException $ex) { |
|
| 1144 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 1145 | + ParagonIE_Sodium_Compat::memzero( $subkey ); |
|
| 1146 | + } catch ( SodiumException $ex ) { |
|
| 1147 | 1147 | $block0 = null; |
| 1148 | 1148 | $subkey = null; |
| 1149 | 1149 | } |
| 1150 | 1150 | |
| 1151 | - $state->update($c); |
|
| 1151 | + $state->update( $c ); |
|
| 1152 | 1152 | |
| 1153 | 1153 | /** @var string $c - MAC || ciphertext */ |
| 1154 | 1154 | $c = $state->finish() . $c; |
| 1155 | - unset($state); |
|
| 1155 | + unset( $state ); |
|
| 1156 | 1156 | |
| 1157 | 1157 | return $c; |
| 1158 | 1158 | } |
@@ -1169,7 +1169,7 @@ discard block |
||
| 1169 | 1169 | * @throws SodiumException |
| 1170 | 1170 | * @throws TypeError |
| 1171 | 1171 | */ |
| 1172 | - public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) |
|
| 1172 | + public static function secretbox_xchacha20poly1305_open( $ciphertext, $nonce, $key ) |
|
| 1173 | 1173 | { |
| 1174 | 1174 | /** @var string $mac */ |
| 1175 | 1175 | $mac = ParagonIE_Sodium_Core_Util::substr( |
@@ -1185,48 +1185,48 @@ discard block |
||
| 1185 | 1185 | ); |
| 1186 | 1186 | |
| 1187 | 1187 | /** @var int $clen */ |
| 1188 | - $clen = ParagonIE_Sodium_Core_Util::strlen($c); |
|
| 1188 | + $clen = ParagonIE_Sodium_Core_Util::strlen( $c ); |
|
| 1189 | 1189 | |
| 1190 | 1190 | /** @var string $subkey */ |
| 1191 | - $subkey = ParagonIE_Sodium_Core_HChaCha20::hchacha20($nonce, $key); |
|
| 1191 | + $subkey = ParagonIE_Sodium_Core_HChaCha20::hchacha20( $nonce, $key ); |
|
| 1192 | 1192 | |
| 1193 | 1193 | /** @var string $block0 */ |
| 1194 | 1194 | $block0 = ParagonIE_Sodium_Core_ChaCha20::stream( |
| 1195 | 1195 | 64, |
| 1196 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1196 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 16, 8 ), |
|
| 1197 | 1197 | $subkey |
| 1198 | 1198 | ); |
| 1199 | 1199 | $verified = ParagonIE_Sodium_Core_Poly1305::onetimeauth_verify( |
| 1200 | 1200 | $mac, |
| 1201 | 1201 | $c, |
| 1202 | - ParagonIE_Sodium_Core_Util::substr($block0, 0, 32) |
|
| 1202 | + ParagonIE_Sodium_Core_Util::substr( $block0, 0, 32 ) |
|
| 1203 | 1203 | ); |
| 1204 | 1204 | |
| 1205 | - if (!$verified) { |
|
| 1205 | + if ( ! $verified ) { |
|
| 1206 | 1206 | try { |
| 1207 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1208 | - } catch (SodiumException $ex) { |
|
| 1207 | + ParagonIE_Sodium_Compat::memzero( $subkey ); |
|
| 1208 | + } catch ( SodiumException $ex ) { |
|
| 1209 | 1209 | $subkey = null; |
| 1210 | 1210 | } |
| 1211 | - throw new SodiumException('Invalid MAC'); |
|
| 1211 | + throw new SodiumException( 'Invalid MAC' ); |
|
| 1212 | 1212 | } |
| 1213 | 1213 | |
| 1214 | 1214 | /** @var string $m - Decrypted message */ |
| 1215 | 1215 | $m = ParagonIE_Sodium_Core_Util::xorStrings( |
| 1216 | - ParagonIE_Sodium_Core_Util::substr($block0, self::secretbox_xchacha20poly1305_ZEROBYTES), |
|
| 1217 | - ParagonIE_Sodium_Core_Util::substr($c, 0, self::secretbox_xchacha20poly1305_ZEROBYTES) |
|
| 1216 | + ParagonIE_Sodium_Core_Util::substr( $block0, self::secretbox_xchacha20poly1305_ZEROBYTES ), |
|
| 1217 | + ParagonIE_Sodium_Core_Util::substr( $c, 0, self::secretbox_xchacha20poly1305_ZEROBYTES ) |
|
| 1218 | 1218 | ); |
| 1219 | 1219 | |
| 1220 | - if ($clen > self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1220 | + if ( $clen > self::secretbox_xchacha20poly1305_ZEROBYTES ) { |
|
| 1221 | 1221 | // We had more than 1 block, so let's continue to decrypt the rest. |
| 1222 | 1222 | $m .= ParagonIE_Sodium_Core_ChaCha20::streamXorIc( |
| 1223 | 1223 | ParagonIE_Sodium_Core_Util::substr( |
| 1224 | 1224 | $c, |
| 1225 | 1225 | self::secretbox_xchacha20poly1305_ZEROBYTES |
| 1226 | 1226 | ), |
| 1227 | - ParagonIE_Sodium_Core_Util::substr($nonce, 16, 8), |
|
| 1228 | - (string) $subkey, |
|
| 1229 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1227 | + ParagonIE_Sodium_Core_Util::substr( $nonce, 16, 8 ), |
|
| 1228 | + (string)$subkey, |
|
| 1229 | + ParagonIE_Sodium_Core_Util::store64_le( 1 ) |
|
| 1230 | 1230 | ); |
| 1231 | 1231 | } |
| 1232 | 1232 | return $m; |
@@ -1238,16 +1238,16 @@ discard block |
||
| 1238 | 1238 | * @throws Exception |
| 1239 | 1239 | * @throws SodiumException |
| 1240 | 1240 | */ |
| 1241 | - public static function secretstream_xchacha20poly1305_init_push($key) |
|
| 1241 | + public static function secretstream_xchacha20poly1305_init_push( $key ) |
|
| 1242 | 1242 | { |
| 1243 | 1243 | # randombytes_buf(out, crypto_secretstream_xchacha20poly1305_HEADERBYTES); |
| 1244 | - $out = random_bytes(24); |
|
| 1244 | + $out = random_bytes( 24 ); |
|
| 1245 | 1245 | |
| 1246 | 1246 | # crypto_core_hchacha20(state->k, out, k, NULL); |
| 1247 | - $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20($out, $key); |
|
| 1247 | + $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( $out, $key ); |
|
| 1248 | 1248 | $state = new ParagonIE_Sodium_Core_SecretStream_State( |
| 1249 | 1249 | $subkey, |
| 1250 | - ParagonIE_Sodium_Core_Util::substr($out, 16, 8) . str_repeat("\0", 4) |
|
| 1250 | + ParagonIE_Sodium_Core_Util::substr( $out, 16, 8 ) . str_repeat( "\0", 4 ) |
|
| 1251 | 1251 | ); |
| 1252 | 1252 | |
| 1253 | 1253 | # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
@@ -1268,16 +1268,16 @@ discard block |
||
| 1268 | 1268 | * @return string Returns a state. |
| 1269 | 1269 | * @throws Exception |
| 1270 | 1270 | */ |
| 1271 | - public static function secretstream_xchacha20poly1305_init_pull($key, $header) |
|
| 1271 | + public static function secretstream_xchacha20poly1305_init_pull( $key, $header ) |
|
| 1272 | 1272 | { |
| 1273 | 1273 | # crypto_core_hchacha20(state->k, in, k, NULL); |
| 1274 | 1274 | $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
| 1275 | - ParagonIE_Sodium_Core_Util::substr($header, 0, 16), |
|
| 1275 | + ParagonIE_Sodium_Core_Util::substr( $header, 0, 16 ), |
|
| 1276 | 1276 | $key |
| 1277 | 1277 | ); |
| 1278 | 1278 | $state = new ParagonIE_Sodium_Core_SecretStream_State( |
| 1279 | 1279 | $subkey, |
| 1280 | - ParagonIE_Sodium_Core_Util::substr($header, 16) |
|
| 1280 | + ParagonIE_Sodium_Core_Util::substr( $header, 16 ) |
|
| 1281 | 1281 | ); |
| 1282 | 1282 | $state->counterReset(); |
| 1283 | 1283 | # memcpy(STATE_INONCE(state), in + crypto_core_hchacha20_INPUTBYTES, |
@@ -1295,19 +1295,19 @@ discard block |
||
| 1295 | 1295 | * @return string |
| 1296 | 1296 | * @throws SodiumException |
| 1297 | 1297 | */ |
| 1298 | - public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) |
|
| 1298 | + public static function secretstream_xchacha20poly1305_push( &$state, $msg, $aad = '', $tag = 0 ) |
|
| 1299 | 1299 | { |
| 1300 | - $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
|
| 1300 | + $st = ParagonIE_Sodium_Core_SecretStream_State::fromString( $state ); |
|
| 1301 | 1301 | # crypto_onetimeauth_poly1305_state poly1305_state; |
| 1302 | 1302 | # unsigned char block[64U]; |
| 1303 | 1303 | # unsigned char slen[8U]; |
| 1304 | 1304 | # unsigned char *c; |
| 1305 | 1305 | # unsigned char *mac; |
| 1306 | 1306 | |
| 1307 | - $msglen = ParagonIE_Sodium_Core_Util::strlen($msg); |
|
| 1308 | - $aadlen = ParagonIE_Sodium_Core_Util::strlen($aad); |
|
| 1307 | + $msglen = ParagonIE_Sodium_Core_Util::strlen( $msg ); |
|
| 1308 | + $aadlen = ParagonIE_Sodium_Core_Util::strlen( $aad ); |
|
| 1309 | 1309 | |
| 1310 | - if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1310 | + if ( ( ( $msglen + 63 ) >> 6 ) > 0xfffffffe ) { |
|
| 1311 | 1311 | throw new SodiumException( |
| 1312 | 1312 | 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
| 1313 | 1313 | ); |
@@ -1324,62 +1324,62 @@ discard block |
||
| 1324 | 1324 | # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
| 1325 | 1325 | # sodium_memzero(block, sizeof block); |
| 1326 | 1326 | $auth = new ParagonIE_Sodium_Core_Poly1305_State( |
| 1327 | - ParagonIE_Sodium_Core_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1327 | + ParagonIE_Sodium_Core_ChaCha20::ietfStream( 32, $st->getCombinedNonce(), $st->getKey() ) |
|
| 1328 | 1328 | ); |
| 1329 | 1329 | |
| 1330 | 1330 | # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
| 1331 | - $auth->update($aad); |
|
| 1331 | + $auth->update( $aad ); |
|
| 1332 | 1332 | |
| 1333 | 1333 | # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
| 1334 | 1334 | # (0x10 - adlen) & 0xf); |
| 1335 | - $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1335 | + $auth->update( str_repeat( "\0", ( ( 0x10 - $aadlen ) & 0xf ) ) ); |
|
| 1336 | 1336 | |
| 1337 | 1337 | # memset(block, 0, sizeof block); |
| 1338 | 1338 | # block[0] = tag; |
| 1339 | 1339 | # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
| 1340 | 1340 | # state->nonce, 1U, state->k); |
| 1341 | 1341 | $block = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
| 1342 | - ParagonIE_Sodium_Core_Util::intToChr($tag) . str_repeat("\0", 63), |
|
| 1342 | + ParagonIE_Sodium_Core_Util::intToChr( $tag ) . str_repeat( "\0", 63 ), |
|
| 1343 | 1343 | $st->getCombinedNonce(), |
| 1344 | 1344 | $st->getKey(), |
| 1345 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1345 | + ParagonIE_Sodium_Core_Util::store64_le( 1 ) |
|
| 1346 | 1346 | ); |
| 1347 | 1347 | |
| 1348 | 1348 | # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
| 1349 | - $auth->update($block); |
|
| 1349 | + $auth->update( $block ); |
|
| 1350 | 1350 | |
| 1351 | 1351 | # out[0] = block[0]; |
| 1352 | - $out = $block[0]; |
|
| 1352 | + $out = $block[ 0 ]; |
|
| 1353 | 1353 | # c = out + (sizeof tag); |
| 1354 | 1354 | # crypto_stream_chacha20_ietf_xor_ic(c, m, mlen, state->nonce, 2U, state->k); |
| 1355 | 1355 | $cipher = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
| 1356 | 1356 | $msg, |
| 1357 | 1357 | $st->getCombinedNonce(), |
| 1358 | 1358 | $st->getKey(), |
| 1359 | - ParagonIE_Sodium_Core_Util::store64_le(2) |
|
| 1359 | + ParagonIE_Sodium_Core_Util::store64_le( 2 ) |
|
| 1360 | 1360 | ); |
| 1361 | 1361 | |
| 1362 | 1362 | # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
| 1363 | - $auth->update($cipher); |
|
| 1363 | + $auth->update( $cipher ); |
|
| 1364 | 1364 | |
| 1365 | 1365 | $out .= $cipher; |
| 1366 | - unset($cipher); |
|
| 1366 | + unset( $cipher ); |
|
| 1367 | 1367 | |
| 1368 | 1368 | # crypto_onetimeauth_poly1305_update |
| 1369 | 1369 | # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
| 1370 | - $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1370 | + $auth->update( str_repeat( "\0", ( ( 0x10 - 64 + $msglen ) & 0xf ) ) ); |
|
| 1371 | 1371 | |
| 1372 | 1372 | # STORE64_LE(slen, (uint64_t) adlen); |
| 1373 | - $slen = ParagonIE_Sodium_Core_Util::store64_le($aadlen); |
|
| 1373 | + $slen = ParagonIE_Sodium_Core_Util::store64_le( $aadlen ); |
|
| 1374 | 1374 | |
| 1375 | 1375 | # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
| 1376 | - $auth->update($slen); |
|
| 1376 | + $auth->update( $slen ); |
|
| 1377 | 1377 | |
| 1378 | 1378 | # STORE64_LE(slen, (sizeof block) + mlen); |
| 1379 | - $slen = ParagonIE_Sodium_Core_Util::store64_le(64 + $msglen); |
|
| 1379 | + $slen = ParagonIE_Sodium_Core_Util::store64_le( 64 + $msglen ); |
|
| 1380 | 1380 | |
| 1381 | 1381 | # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
| 1382 | - $auth->update($slen); |
|
| 1382 | + $auth->update( $slen ); |
|
| 1383 | 1383 | |
| 1384 | 1384 | # mac = c + mlen; |
| 1385 | 1385 | # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
@@ -1387,12 +1387,12 @@ discard block |
||
| 1387 | 1387 | $out .= $mac; |
| 1388 | 1388 | |
| 1389 | 1389 | # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
| 1390 | - unset($auth); |
|
| 1390 | + unset( $auth ); |
|
| 1391 | 1391 | |
| 1392 | 1392 | |
| 1393 | 1393 | # XOR_BUF(STATE_INONCE(state), mac, |
| 1394 | 1394 | # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
| 1395 | - $st->xorNonce($mac); |
|
| 1395 | + $st->xorNonce( $mac ); |
|
| 1396 | 1396 | |
| 1397 | 1397 | # sodium_increment(STATE_COUNTER(state), |
| 1398 | 1398 | # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
@@ -1401,15 +1401,15 @@ discard block |
||
| 1401 | 1401 | $state = $st->toString(); |
| 1402 | 1402 | |
| 1403 | 1403 | /** @var bool $rekey */ |
| 1404 | - $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1404 | + $rekey = ( $tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY ) !== 0; |
|
| 1405 | 1405 | # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
| 1406 | 1406 | # sodium_is_zero(STATE_COUNTER(state), |
| 1407 | 1407 | # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
| 1408 | 1408 | # crypto_secretstream_xchacha20poly1305_rekey(state); |
| 1409 | 1409 | # } |
| 1410 | - if ($rekey || $st->needsRekey()) { |
|
| 1410 | + if ( $rekey || $st->needsRekey() ) { |
|
| 1411 | 1411 | // DO REKEY |
| 1412 | - self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1412 | + self::secretstream_xchacha20poly1305_rekey( $state ); |
|
| 1413 | 1413 | } |
| 1414 | 1414 | # if (outlen_p != NULL) { |
| 1415 | 1415 | # *outlen_p = crypto_secretstream_xchacha20poly1305_ABYTES + mlen; |
@@ -1424,19 +1424,19 @@ discard block |
||
| 1424 | 1424 | * @return bool|array{0: string, 1: int} |
| 1425 | 1425 | * @throws SodiumException |
| 1426 | 1426 | */ |
| 1427 | - public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') |
|
| 1427 | + public static function secretstream_xchacha20poly1305_pull( &$state, $cipher, $aad = '' ) |
|
| 1428 | 1428 | { |
| 1429 | - $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
|
| 1429 | + $st = ParagonIE_Sodium_Core_SecretStream_State::fromString( $state ); |
|
| 1430 | 1430 | |
| 1431 | - $cipherlen = ParagonIE_Sodium_Core_Util::strlen($cipher); |
|
| 1431 | + $cipherlen = ParagonIE_Sodium_Core_Util::strlen( $cipher ); |
|
| 1432 | 1432 | # mlen = inlen - crypto_secretstream_xchacha20poly1305_ABYTES; |
| 1433 | 1433 | $msglen = $cipherlen - ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_ABYTES; |
| 1434 | - $aadlen = ParagonIE_Sodium_Core_Util::strlen($aad); |
|
| 1434 | + $aadlen = ParagonIE_Sodium_Core_Util::strlen( $aad ); |
|
| 1435 | 1435 | |
| 1436 | 1436 | # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
| 1437 | 1437 | # sodium_misuse(); |
| 1438 | 1438 | # } |
| 1439 | - if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1439 | + if ( ( ( $msglen + 63 ) >> 6 ) > 0xfffffffe ) { |
|
| 1440 | 1440 | throw new SodiumException( |
| 1441 | 1441 | 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
| 1442 | 1442 | ); |
@@ -1446,15 +1446,15 @@ discard block |
||
| 1446 | 1446 | # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
| 1447 | 1447 | # sodium_memzero(block, sizeof block); |
| 1448 | 1448 | $auth = new ParagonIE_Sodium_Core_Poly1305_State( |
| 1449 | - ParagonIE_Sodium_Core_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1449 | + ParagonIE_Sodium_Core_ChaCha20::ietfStream( 32, $st->getCombinedNonce(), $st->getKey() ) |
|
| 1450 | 1450 | ); |
| 1451 | 1451 | |
| 1452 | 1452 | # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
| 1453 | - $auth->update($aad); |
|
| 1453 | + $auth->update( $aad ); |
|
| 1454 | 1454 | |
| 1455 | 1455 | # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
| 1456 | 1456 | # (0x10 - adlen) & 0xf); |
| 1457 | - $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1457 | + $auth->update( str_repeat( "\0", ( ( 0x10 - $aadlen ) & 0xf ) ) ); |
|
| 1458 | 1458 | |
| 1459 | 1459 | |
| 1460 | 1460 | # memset(block, 0, sizeof block); |
@@ -1462,36 +1462,36 @@ discard block |
||
| 1462 | 1462 | # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
| 1463 | 1463 | # state->nonce, 1U, state->k); |
| 1464 | 1464 | $block = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
| 1465 | - $cipher[0] . str_repeat("\0", 63), |
|
| 1465 | + $cipher[ 0 ] . str_repeat( "\0", 63 ), |
|
| 1466 | 1466 | $st->getCombinedNonce(), |
| 1467 | 1467 | $st->getKey(), |
| 1468 | - ParagonIE_Sodium_Core_Util::store64_le(1) |
|
| 1468 | + ParagonIE_Sodium_Core_Util::store64_le( 1 ) |
|
| 1469 | 1469 | ); |
| 1470 | 1470 | # tag = block[0]; |
| 1471 | 1471 | # block[0] = in[0]; |
| 1472 | 1472 | # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
| 1473 | - $tag = ParagonIE_Sodium_Core_Util::chrToInt($block[0]); |
|
| 1474 | - $block[0] = $cipher[0]; |
|
| 1475 | - $auth->update($block); |
|
| 1473 | + $tag = ParagonIE_Sodium_Core_Util::chrToInt( $block[ 0 ] ); |
|
| 1474 | + $block[ 0 ] = $cipher[ 0 ]; |
|
| 1475 | + $auth->update( $block ); |
|
| 1476 | 1476 | |
| 1477 | 1477 | |
| 1478 | 1478 | # c = in + (sizeof tag); |
| 1479 | 1479 | # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
| 1480 | - $auth->update(ParagonIE_Sodium_Core_Util::substr($cipher, 1, $msglen)); |
|
| 1480 | + $auth->update( ParagonIE_Sodium_Core_Util::substr( $cipher, 1, $msglen ) ); |
|
| 1481 | 1481 | |
| 1482 | 1482 | # crypto_onetimeauth_poly1305_update |
| 1483 | 1483 | # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
| 1484 | - $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1484 | + $auth->update( str_repeat( "\0", ( ( 0x10 - 64 + $msglen ) & 0xf ) ) ); |
|
| 1485 | 1485 | |
| 1486 | 1486 | # STORE64_LE(slen, (uint64_t) adlen); |
| 1487 | 1487 | # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
| 1488 | - $slen = ParagonIE_Sodium_Core_Util::store64_le($aadlen); |
|
| 1489 | - $auth->update($slen); |
|
| 1488 | + $slen = ParagonIE_Sodium_Core_Util::store64_le( $aadlen ); |
|
| 1489 | + $auth->update( $slen ); |
|
| 1490 | 1490 | |
| 1491 | 1491 | # STORE64_LE(slen, (sizeof block) + mlen); |
| 1492 | 1492 | # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
| 1493 | - $slen = ParagonIE_Sodium_Core_Util::store64_le(64 + $msglen); |
|
| 1494 | - $auth->update($slen); |
|
| 1493 | + $slen = ParagonIE_Sodium_Core_Util::store64_le( 64 + $msglen ); |
|
| 1494 | + $auth->update( $slen ); |
|
| 1495 | 1495 | |
| 1496 | 1496 | # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
| 1497 | 1497 | # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
@@ -1503,22 +1503,22 @@ discard block |
||
| 1503 | 1503 | # return -1; |
| 1504 | 1504 | # } |
| 1505 | 1505 | |
| 1506 | - $stored = ParagonIE_Sodium_Core_Util::substr($cipher, $msglen + 1, 16); |
|
| 1507 | - if (!ParagonIE_Sodium_Core_Util::hashEquals($mac, $stored)) { |
|
| 1506 | + $stored = ParagonIE_Sodium_Core_Util::substr( $cipher, $msglen + 1, 16 ); |
|
| 1507 | + if ( ! ParagonIE_Sodium_Core_Util::hashEquals( $mac, $stored ) ) { |
|
| 1508 | 1508 | return false; |
| 1509 | 1509 | } |
| 1510 | 1510 | |
| 1511 | 1511 | # crypto_stream_chacha20_ietf_xor_ic(m, c, mlen, state->nonce, 2U, state->k); |
| 1512 | 1512 | $out = ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
| 1513 | - ParagonIE_Sodium_Core_Util::substr($cipher, 1, $msglen), |
|
| 1513 | + ParagonIE_Sodium_Core_Util::substr( $cipher, 1, $msglen ), |
|
| 1514 | 1514 | $st->getCombinedNonce(), |
| 1515 | 1515 | $st->getKey(), |
| 1516 | - ParagonIE_Sodium_Core_Util::store64_le(2) |
|
| 1516 | + ParagonIE_Sodium_Core_Util::store64_le( 2 ) |
|
| 1517 | 1517 | ); |
| 1518 | 1518 | |
| 1519 | 1519 | # XOR_BUF(STATE_INONCE(state), mac, |
| 1520 | 1520 | # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
| 1521 | - $st->xorNonce($mac); |
|
| 1521 | + $st->xorNonce( $mac ); |
|
| 1522 | 1522 | |
| 1523 | 1523 | # sodium_increment(STATE_COUNTER(state), |
| 1524 | 1524 | # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
@@ -1534,12 +1534,12 @@ discard block |
||
| 1534 | 1534 | $state = $st->toString(); |
| 1535 | 1535 | |
| 1536 | 1536 | /** @var bool $rekey */ |
| 1537 | - $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1538 | - if ($rekey || $st->needsRekey()) { |
|
| 1537 | + $rekey = ( $tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY ) !== 0; |
|
| 1538 | + if ( $rekey || $st->needsRekey() ) { |
|
| 1539 | 1539 | // DO REKEY |
| 1540 | - self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1540 | + self::secretstream_xchacha20poly1305_rekey( $state ); |
|
| 1541 | 1541 | } |
| 1542 | - return array($out, $tag); |
|
| 1542 | + return array( $out, $tag ); |
|
| 1543 | 1543 | } |
| 1544 | 1544 | |
| 1545 | 1545 | /** |
@@ -1547,9 +1547,9 @@ discard block |
||
| 1547 | 1547 | * @return void |
| 1548 | 1548 | * @throws SodiumException |
| 1549 | 1549 | */ |
| 1550 | - public static function secretstream_xchacha20poly1305_rekey(&$state) |
|
| 1550 | + public static function secretstream_xchacha20poly1305_rekey( &$state ) |
|
| 1551 | 1551 | { |
| 1552 | - $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
|
| 1552 | + $st = ParagonIE_Sodium_Core_SecretStream_State::fromString( $state ); |
|
| 1553 | 1553 | # unsigned char new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + |
| 1554 | 1554 | # crypto_secretstream_xchacha20poly1305_INONCEBYTES]; |
| 1555 | 1555 | # size_t i; |
@@ -1562,18 +1562,18 @@ discard block |
||
| 1562 | 1562 | # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i] = |
| 1563 | 1563 | # STATE_INONCE(state)[i]; |
| 1564 | 1564 | # } |
| 1565 | - $new_key_and_inonce .= ParagonIE_Sodium_Core_Util::substR($st->getNonce(), 0, 8); |
|
| 1565 | + $new_key_and_inonce .= ParagonIE_Sodium_Core_Util::substR( $st->getNonce(), 0, 8 ); |
|
| 1566 | 1566 | |
| 1567 | 1567 | # crypto_stream_chacha20_ietf_xor(new_key_and_inonce, new_key_and_inonce, |
| 1568 | 1568 | # sizeof new_key_and_inonce, |
| 1569 | 1569 | # state->nonce, state->k); |
| 1570 | 1570 | |
| 1571 | - $st->rekey(ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1571 | + $st->rekey( ParagonIE_Sodium_Core_ChaCha20::ietfStreamXorIc( |
|
| 1572 | 1572 | $new_key_and_inonce, |
| 1573 | 1573 | $st->getCombinedNonce(), |
| 1574 | 1574 | $st->getKey(), |
| 1575 | - ParagonIE_Sodium_Core_Util::store64_le(0) |
|
| 1576 | - )); |
|
| 1575 | + ParagonIE_Sodium_Core_Util::store64_le( 0 ) |
|
| 1576 | + ) ); |
|
| 1577 | 1577 | |
| 1578 | 1578 | # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
| 1579 | 1579 | # state->k[i] = new_key_and_inonce[i]; |
@@ -1599,9 +1599,9 @@ discard block |
||
| 1599 | 1599 | * @throws SodiumException |
| 1600 | 1600 | * @throws TypeError |
| 1601 | 1601 | */ |
| 1602 | - public static function sign_detached($message, $sk) |
|
| 1602 | + public static function sign_detached( $message, $sk ) |
|
| 1603 | 1603 | { |
| 1604 | - return ParagonIE_Sodium_Core_Ed25519::sign_detached($message, $sk); |
|
| 1604 | + return ParagonIE_Sodium_Core_Ed25519::sign_detached( $message, $sk ); |
|
| 1605 | 1605 | } |
| 1606 | 1606 | |
| 1607 | 1607 | /** |
@@ -1615,9 +1615,9 @@ discard block |
||
| 1615 | 1615 | * @throws SodiumException |
| 1616 | 1616 | * @throws TypeError |
| 1617 | 1617 | */ |
| 1618 | - public static function sign($message, $sk) |
|
| 1618 | + public static function sign( $message, $sk ) |
|
| 1619 | 1619 | { |
| 1620 | - return ParagonIE_Sodium_Core_Ed25519::sign($message, $sk); |
|
| 1620 | + return ParagonIE_Sodium_Core_Ed25519::sign( $message, $sk ); |
|
| 1621 | 1621 | } |
| 1622 | 1622 | |
| 1623 | 1623 | /** |
@@ -1631,9 +1631,9 @@ discard block |
||
| 1631 | 1631 | * @throws SodiumException |
| 1632 | 1632 | * @throws TypeError |
| 1633 | 1633 | */ |
| 1634 | - public static function sign_open($signedMessage, $pk) |
|
| 1634 | + public static function sign_open( $signedMessage, $pk ) |
|
| 1635 | 1635 | { |
| 1636 | - return ParagonIE_Sodium_Core_Ed25519::sign_open($signedMessage, $pk); |
|
| 1636 | + return ParagonIE_Sodium_Core_Ed25519::sign_open( $signedMessage, $pk ); |
|
| 1637 | 1637 | } |
| 1638 | 1638 | |
| 1639 | 1639 | /** |
@@ -1648,8 +1648,8 @@ discard block |
||
| 1648 | 1648 | * @throws SodiumException |
| 1649 | 1649 | * @throws TypeError |
| 1650 | 1650 | */ |
| 1651 | - public static function sign_verify_detached($signature, $message, $pk) |
|
| 1651 | + public static function sign_verify_detached( $signature, $message, $pk ) |
|
| 1652 | 1652 | { |
| 1653 | - return ParagonIE_Sodium_Core_Ed25519::verify_detached($signature, $message, $pk); |
|
| 1653 | + return ParagonIE_Sodium_Core_Ed25519::verify_detached( $signature, $message, $pk ); |
|
| 1654 | 1654 | } |
| 1655 | 1655 | } |
@@ -12,8 +12,7 @@ discard block |
||
| 12 | 12 | * If you are using this library, you should be using |
| 13 | 13 | * ParagonIE_Sodium_Compat in your code, not this class. |
| 14 | 14 | */ |
| 15 | -abstract class ParagonIE_Sodium_Crypto |
|
| 16 | -{ |
|
| 15 | +abstract class ParagonIE_Sodium_Crypto { |
|
| 17 | 16 | const aead_chacha20poly1305_KEYBYTES = 32; |
| 18 | 17 | const aead_chacha20poly1305_NSECBYTES = 0; |
| 19 | 18 | const aead_chacha20poly1305_NPUBBYTES = 8; |
@@ -381,8 +380,7 @@ discard block |
||
| 381 | 380 | * @return string |
| 382 | 381 | * @throws TypeError |
| 383 | 382 | */ |
| 384 | - public static function auth($message, $key) |
|
| 385 | - { |
|
| 383 | + public static function auth($message, $key) { |
|
| 386 | 384 | return ParagonIE_Sodium_Core_Util::substr( |
| 387 | 385 | hash_hmac('sha512', $message, $key, true), |
| 388 | 386 | 0, |
@@ -402,8 +400,7 @@ discard block |
||
| 402 | 400 | * @throws SodiumException |
| 403 | 401 | * @throws TypeError |
| 404 | 402 | */ |
| 405 | - public static function auth_verify($mac, $message, $key) |
|
| 406 | - { |
|
| 403 | + public static function auth_verify($mac, $message, $key) { |
|
| 407 | 404 | return ParagonIE_Sodium_Core_Util::hashEquals( |
| 408 | 405 | $mac, |
| 409 | 406 | self::auth($message, $key) |
@@ -422,8 +419,7 @@ discard block |
||
| 422 | 419 | * @throws SodiumException |
| 423 | 420 | * @throws TypeError |
| 424 | 421 | */ |
| 425 | - public static function box($plaintext, $nonce, $keypair) |
|
| 426 | - { |
|
| 422 | + public static function box($plaintext, $nonce, $keypair) { |
|
| 427 | 423 | $c = self::secretbox( |
| 428 | 424 | $plaintext, |
| 429 | 425 | $nonce, |
@@ -446,8 +442,7 @@ discard block |
||
| 446 | 442 | * @throws SodiumException |
| 447 | 443 | * @throws TypeError |
| 448 | 444 | */ |
| 449 | - public static function box_seal($message, $publicKey) |
|
| 450 | - { |
|
| 445 | + public static function box_seal($message, $publicKey) { |
|
| 451 | 446 | /** @var string $ephemeralKeypair */ |
| 452 | 447 | $ephemeralKeypair = self::box_keypair(); |
| 453 | 448 | |
@@ -492,8 +487,7 @@ discard block |
||
| 492 | 487 | * @throws SodiumException |
| 493 | 488 | * @throws TypeError |
| 494 | 489 | */ |
| 495 | - public static function box_seal_open($message, $keypair) |
|
| 496 | - { |
|
| 490 | + public static function box_seal_open($message, $keypair) { |
|
| 497 | 491 | /** @var string $ephemeralPK */ |
| 498 | 492 | $ephemeralPK = ParagonIE_Sodium_Core_Util::substr($message, 0, 32); |
| 499 | 493 | |
@@ -541,8 +535,7 @@ discard block |
||
| 541 | 535 | * @throws SodiumException |
| 542 | 536 | * @throws TypeError |
| 543 | 537 | */ |
| 544 | - public static function box_beforenm($sk, $pk) |
|
| 545 | - { |
|
| 538 | + public static function box_beforenm($sk, $pk) { |
|
| 546 | 539 | return ParagonIE_Sodium_Core_HSalsa20::hsalsa20( |
| 547 | 540 | str_repeat("\x00", 16), |
| 548 | 541 | self::scalarmult($sk, $pk) |
@@ -557,8 +550,7 @@ discard block |
||
| 557 | 550 | * @throws SodiumException |
| 558 | 551 | * @throws TypeError |
| 559 | 552 | */ |
| 560 | - public static function box_keypair() |
|
| 561 | - { |
|
| 553 | + public static function box_keypair() { |
|
| 562 | 554 | $sKey = random_bytes(32); |
| 563 | 555 | $pKey = self::scalarmult_base($sKey); |
| 564 | 556 | return $sKey . $pKey; |
@@ -570,8 +562,7 @@ discard block |
||
| 570 | 562 | * @throws SodiumException |
| 571 | 563 | * @throws TypeError |
| 572 | 564 | */ |
| 573 | - public static function box_seed_keypair($seed) |
|
| 574 | - { |
|
| 565 | + public static function box_seed_keypair($seed) { |
|
| 575 | 566 | $sKey = ParagonIE_Sodium_Core_Util::substr( |
| 576 | 567 | hash('sha512', $seed, true), |
| 577 | 568 | 0, |
@@ -589,8 +580,7 @@ discard block |
||
| 589 | 580 | * @return string |
| 590 | 581 | * @throws TypeError |
| 591 | 582 | */ |
| 592 | - public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) |
|
| 593 | - { |
|
| 583 | + public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) { |
|
| 594 | 584 | return ParagonIE_Sodium_Core_Util::substr($sKey, 0, 32) . |
| 595 | 585 | ParagonIE_Sodium_Core_Util::substr($pKey, 0, 32); |
| 596 | 586 | } |
@@ -603,8 +593,7 @@ discard block |
||
| 603 | 593 | * @throws RangeException |
| 604 | 594 | * @throws TypeError |
| 605 | 595 | */ |
| 606 | - public static function box_secretkey($keypair) |
|
| 607 | - { |
|
| 596 | + public static function box_secretkey($keypair) { |
|
| 608 | 597 | if (ParagonIE_Sodium_Core_Util::strlen($keypair) !== 64) { |
| 609 | 598 | throw new RangeException( |
| 610 | 599 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
@@ -621,8 +610,7 @@ discard block |
||
| 621 | 610 | * @throws RangeException |
| 622 | 611 | * @throws TypeError |
| 623 | 612 | */ |
| 624 | - public static function box_publickey($keypair) |
|
| 625 | - { |
|
| 613 | + public static function box_publickey($keypair) { |
|
| 626 | 614 | if (ParagonIE_Sodium_Core_Util::strlen($keypair) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES) { |
| 627 | 615 | throw new RangeException( |
| 628 | 616 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
@@ -640,8 +628,7 @@ discard block |
||
| 640 | 628 | * @throws SodiumException |
| 641 | 629 | * @throws TypeError |
| 642 | 630 | */ |
| 643 | - public static function box_publickey_from_secretkey($sKey) |
|
| 644 | - { |
|
| 631 | + public static function box_publickey_from_secretkey($sKey) { |
|
| 645 | 632 | if (ParagonIE_Sodium_Core_Util::strlen($sKey) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES) { |
| 646 | 633 | throw new RangeException( |
| 647 | 634 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES bytes long.' |
@@ -662,8 +649,7 @@ discard block |
||
| 662 | 649 | * @throws SodiumException |
| 663 | 650 | * @throws TypeError |
| 664 | 651 | */ |
| 665 | - public static function box_open($ciphertext, $nonce, $keypair) |
|
| 666 | - { |
|
| 652 | + public static function box_open($ciphertext, $nonce, $keypair) { |
|
| 667 | 653 | return self::secretbox_open( |
| 668 | 654 | $ciphertext, |
| 669 | 655 | $nonce, |
@@ -687,8 +673,7 @@ discard block |
||
| 687 | 673 | * @throws SodiumException |
| 688 | 674 | * @throws TypeError |
| 689 | 675 | */ |
| 690 | - public static function generichash($message, $key = '', $outlen = 32) |
|
| 691 | - { |
|
| 676 | + public static function generichash($message, $key = '', $outlen = 32) { |
|
| 692 | 677 | // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
| 693 | 678 | ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
| 694 | 679 | |
@@ -728,8 +713,7 @@ discard block |
||
| 728 | 713 | * @throws SodiumException |
| 729 | 714 | * @throws TypeError |
| 730 | 715 | */ |
| 731 | - public static function generichash_final($ctx, $outlen = 32) |
|
| 732 | - { |
|
| 716 | + public static function generichash_final($ctx, $outlen = 32) { |
|
| 733 | 717 | if (!is_string($ctx)) { |
| 734 | 718 | throw new TypeError('Context must be a string'); |
| 735 | 719 | } |
@@ -758,8 +742,7 @@ discard block |
||
| 758 | 742 | * @throws SodiumException |
| 759 | 743 | * @throws TypeError |
| 760 | 744 | */ |
| 761 | - public static function generichash_init($key = '', $outputLength = 32) |
|
| 762 | - { |
|
| 745 | + public static function generichash_init($key = '', $outputLength = 32) { |
|
| 763 | 746 | // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
| 764 | 747 | ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
| 765 | 748 | |
@@ -835,8 +818,7 @@ discard block |
||
| 835 | 818 | * @throws SodiumException |
| 836 | 819 | * @throws TypeError |
| 837 | 820 | */ |
| 838 | - public static function generichash_update($ctx, $message) |
|
| 839 | - { |
|
| 821 | + public static function generichash_update($ctx, $message) { |
|
| 840 | 822 | // This ensures that ParagonIE_Sodium_Core_BLAKE2b::$iv is initialized |
| 841 | 823 | ParagonIE_Sodium_Core_BLAKE2b::pseudoConstructor(); |
| 842 | 824 | |
@@ -864,8 +846,7 @@ discard block |
||
| 864 | 846 | * @throws SodiumException |
| 865 | 847 | * @throws TypeError |
| 866 | 848 | */ |
| 867 | - public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) |
|
| 868 | - { |
|
| 849 | + public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) { |
|
| 869 | 850 | return ParagonIE_Sodium_Compat::crypto_generichash( |
| 870 | 851 | ParagonIE_Sodium_Compat::crypto_scalarmult($my_sk, $their_pk) . |
| 871 | 852 | $client_pk . |
@@ -885,8 +866,7 @@ discard block |
||
| 885 | 866 | * @throws SodiumException |
| 886 | 867 | * @throws TypeError |
| 887 | 868 | */ |
| 888 | - public static function scalarmult($sKey, $pKey) |
|
| 889 | - { |
|
| 869 | + public static function scalarmult($sKey, $pKey) { |
|
| 890 | 870 | $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10($sKey, $pKey); |
| 891 | 871 | self::scalarmult_throw_if_zero($q); |
| 892 | 872 | return $q; |
@@ -902,8 +882,7 @@ discard block |
||
| 902 | 882 | * @throws SodiumException |
| 903 | 883 | * @throws TypeError |
| 904 | 884 | */ |
| 905 | - public static function scalarmult_base($secret) |
|
| 906 | - { |
|
| 885 | + public static function scalarmult_base($secret) { |
|
| 907 | 886 | $q = ParagonIE_Sodium_Core_X25519::crypto_scalarmult_curve25519_ref10_base($secret); |
| 908 | 887 | self::scalarmult_throw_if_zero($q); |
| 909 | 888 | return $q; |
@@ -917,8 +896,7 @@ discard block |
||
| 917 | 896 | * @throws SodiumException |
| 918 | 897 | * @throws TypeError |
| 919 | 898 | */ |
| 920 | - protected static function scalarmult_throw_if_zero($q) |
|
| 921 | - { |
|
| 899 | + protected static function scalarmult_throw_if_zero($q) { |
|
| 922 | 900 | $d = 0; |
| 923 | 901 | for ($i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i) { |
| 924 | 902 | $d |= ParagonIE_Sodium_Core_Util::chrToInt($q[$i]); |
@@ -942,8 +920,7 @@ discard block |
||
| 942 | 920 | * @throws SodiumException |
| 943 | 921 | * @throws TypeError |
| 944 | 922 | */ |
| 945 | - public static function secretbox($plaintext, $nonce, $key) |
|
| 946 | - { |
|
| 923 | + public static function secretbox($plaintext, $nonce, $key) { |
|
| 947 | 924 | /** @var string $subkey */ |
| 948 | 925 | $subkey = ParagonIE_Sodium_Core_HSalsa20::hsalsa20($nonce, $key); |
| 949 | 926 | |
@@ -1017,8 +994,7 @@ discard block |
||
| 1017 | 994 | * @throws SodiumException |
| 1018 | 995 | * @throws TypeError |
| 1019 | 996 | */ |
| 1020 | - public static function secretbox_open($ciphertext, $nonce, $key) |
|
| 1021 | - { |
|
| 997 | + public static function secretbox_open($ciphertext, $nonce, $key) { |
|
| 1022 | 998 | /** @var string $mac */ |
| 1023 | 999 | $mac = ParagonIE_Sodium_Core_Util::substr( |
| 1024 | 1000 | $ciphertext, |
@@ -1090,8 +1066,7 @@ discard block |
||
| 1090 | 1066 | * @throws SodiumException |
| 1091 | 1067 | * @throws TypeError |
| 1092 | 1068 | */ |
| 1093 | - public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) |
|
| 1094 | - { |
|
| 1069 | + public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) { |
|
| 1095 | 1070 | /** @var string $subkey */ |
| 1096 | 1071 | $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
| 1097 | 1072 | ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16), |
@@ -1169,8 +1144,7 @@ discard block |
||
| 1169 | 1144 | * @throws SodiumException |
| 1170 | 1145 | * @throws TypeError |
| 1171 | 1146 | */ |
| 1172 | - public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) |
|
| 1173 | - { |
|
| 1147 | + public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) { |
|
| 1174 | 1148 | /** @var string $mac */ |
| 1175 | 1149 | $mac = ParagonIE_Sodium_Core_Util::substr( |
| 1176 | 1150 | $ciphertext, |
@@ -1238,8 +1212,7 @@ discard block |
||
| 1238 | 1212 | * @throws Exception |
| 1239 | 1213 | * @throws SodiumException |
| 1240 | 1214 | */ |
| 1241 | - public static function secretstream_xchacha20poly1305_init_push($key) |
|
| 1242 | - { |
|
| 1215 | + public static function secretstream_xchacha20poly1305_init_push($key) { |
|
| 1243 | 1216 | # randombytes_buf(out, crypto_secretstream_xchacha20poly1305_HEADERBYTES); |
| 1244 | 1217 | $out = random_bytes(24); |
| 1245 | 1218 | |
@@ -1268,8 +1241,7 @@ discard block |
||
| 1268 | 1241 | * @return string Returns a state. |
| 1269 | 1242 | * @throws Exception |
| 1270 | 1243 | */ |
| 1271 | - public static function secretstream_xchacha20poly1305_init_pull($key, $header) |
|
| 1272 | - { |
|
| 1244 | + public static function secretstream_xchacha20poly1305_init_pull($key, $header) { |
|
| 1273 | 1245 | # crypto_core_hchacha20(state->k, in, k, NULL); |
| 1274 | 1246 | $subkey = ParagonIE_Sodium_Core_HChaCha20::hChaCha20( |
| 1275 | 1247 | ParagonIE_Sodium_Core_Util::substr($header, 0, 16), |
@@ -1295,8 +1267,7 @@ discard block |
||
| 1295 | 1267 | * @return string |
| 1296 | 1268 | * @throws SodiumException |
| 1297 | 1269 | */ |
| 1298 | - public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) |
|
| 1299 | - { |
|
| 1270 | + public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) { |
|
| 1300 | 1271 | $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
| 1301 | 1272 | # crypto_onetimeauth_poly1305_state poly1305_state; |
| 1302 | 1273 | # unsigned char block[64U]; |
@@ -1424,8 +1395,7 @@ discard block |
||
| 1424 | 1395 | * @return bool|array{0: string, 1: int} |
| 1425 | 1396 | * @throws SodiumException |
| 1426 | 1397 | */ |
| 1427 | - public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') |
|
| 1428 | - { |
|
| 1398 | + public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') { |
|
| 1429 | 1399 | $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
| 1430 | 1400 | |
| 1431 | 1401 | $cipherlen = ParagonIE_Sodium_Core_Util::strlen($cipher); |
@@ -1547,8 +1517,7 @@ discard block |
||
| 1547 | 1517 | * @return void |
| 1548 | 1518 | * @throws SodiumException |
| 1549 | 1519 | */ |
| 1550 | - public static function secretstream_xchacha20poly1305_rekey(&$state) |
|
| 1551 | - { |
|
| 1520 | + public static function secretstream_xchacha20poly1305_rekey(&$state) { |
|
| 1552 | 1521 | $st = ParagonIE_Sodium_Core_SecretStream_State::fromString($state); |
| 1553 | 1522 | # unsigned char new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + |
| 1554 | 1523 | # crypto_secretstream_xchacha20poly1305_INONCEBYTES]; |
@@ -1599,8 +1568,7 @@ discard block |
||
| 1599 | 1568 | * @throws SodiumException |
| 1600 | 1569 | * @throws TypeError |
| 1601 | 1570 | */ |
| 1602 | - public static function sign_detached($message, $sk) |
|
| 1603 | - { |
|
| 1571 | + public static function sign_detached($message, $sk) { |
|
| 1604 | 1572 | return ParagonIE_Sodium_Core_Ed25519::sign_detached($message, $sk); |
| 1605 | 1573 | } |
| 1606 | 1574 | |
@@ -1615,8 +1583,7 @@ discard block |
||
| 1615 | 1583 | * @throws SodiumException |
| 1616 | 1584 | * @throws TypeError |
| 1617 | 1585 | */ |
| 1618 | - public static function sign($message, $sk) |
|
| 1619 | - { |
|
| 1586 | + public static function sign($message, $sk) { |
|
| 1620 | 1587 | return ParagonIE_Sodium_Core_Ed25519::sign($message, $sk); |
| 1621 | 1588 | } |
| 1622 | 1589 | |
@@ -1631,8 +1598,7 @@ discard block |
||
| 1631 | 1598 | * @throws SodiumException |
| 1632 | 1599 | * @throws TypeError |
| 1633 | 1600 | */ |
| 1634 | - public static function sign_open($signedMessage, $pk) |
|
| 1635 | - { |
|
| 1601 | + public static function sign_open($signedMessage, $pk) { |
|
| 1636 | 1602 | return ParagonIE_Sodium_Core_Ed25519::sign_open($signedMessage, $pk); |
| 1637 | 1603 | } |
| 1638 | 1604 | |
@@ -1648,8 +1614,7 @@ discard block |
||
| 1648 | 1614 | * @throws SodiumException |
| 1649 | 1615 | * @throws TypeError |
| 1650 | 1616 | */ |
| 1651 | - public static function sign_verify_detached($signature, $message, $pk) |
|
| 1652 | - { |
|
| 1617 | + public static function sign_verify_detached($signature, $message, $pk) { |
|
| 1653 | 1618 | return ParagonIE_Sodium_Core_Ed25519::verify_detached($signature, $message, $pk); |
| 1654 | 1619 | } |
| 1655 | 1620 | } |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if (class_exists('SplFixedArray')) { |
| 4 | - return; |
|
| 4 | + return; |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | /** |
@@ -13,177 +13,177 @@ discard block |
||
| 13 | 13 | */ |
| 14 | 14 | class SplFixedArray implements Iterator, ArrayAccess, Countable |
| 15 | 15 | { |
| 16 | - /** @var array<int, mixed> */ |
|
| 17 | - private $internalArray = array(); |
|
| 18 | - |
|
| 19 | - /** @var int $size */ |
|
| 20 | - private $size = 0; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * SplFixedArray constructor. |
|
| 24 | - * @param int $size |
|
| 25 | - */ |
|
| 26 | - public function __construct($size = 0) |
|
| 27 | - { |
|
| 28 | - $this->size = $size; |
|
| 29 | - $this->internalArray = array(); |
|
| 30 | - } |
|
| 31 | - |
|
| 32 | - /** |
|
| 33 | - * @return int |
|
| 34 | - */ |
|
| 35 | - public function count() |
|
| 36 | - { |
|
| 37 | - return count($this->internalArray); |
|
| 38 | - } |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * @return array |
|
| 42 | - */ |
|
| 43 | - public function toArray() |
|
| 44 | - { |
|
| 45 | - ksort($this->internalArray); |
|
| 46 | - return (array) $this->internalArray; |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - /** |
|
| 50 | - * @param array $array |
|
| 51 | - * @param bool $save_indexes |
|
| 52 | - * @return SplFixedArray |
|
| 53 | - * @psalm-suppress MixedAssignment |
|
| 54 | - */ |
|
| 55 | - public static function fromArray(array $array, $save_indexes = true) |
|
| 56 | - { |
|
| 57 | - $self = new SplFixedArray(count($array)); |
|
| 58 | - if($save_indexes) { |
|
| 59 | - foreach($array as $key => $value) { |
|
| 60 | - $self[(int) $key] = $value; |
|
| 61 | - } |
|
| 62 | - } else { |
|
| 63 | - $i = 0; |
|
| 64 | - foreach (array_values($array) as $value) { |
|
| 65 | - $self[$i] = $value; |
|
| 66 | - $i++; |
|
| 67 | - } |
|
| 68 | - } |
|
| 69 | - return $self; |
|
| 70 | - } |
|
| 71 | - |
|
| 72 | - /** |
|
| 73 | - * @return int |
|
| 74 | - */ |
|
| 75 | - public function getSize() |
|
| 76 | - { |
|
| 77 | - return $this->size; |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * @param int $size |
|
| 82 | - * @return bool |
|
| 83 | - */ |
|
| 84 | - public function setSize($size) |
|
| 85 | - { |
|
| 86 | - $this->size = $size; |
|
| 87 | - return true; |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * @param string|int $index |
|
| 92 | - * @return bool |
|
| 93 | - */ |
|
| 94 | - public function offsetExists($index) |
|
| 95 | - { |
|
| 96 | - return array_key_exists((int) $index, $this->internalArray); |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - /** |
|
| 100 | - * @param string|int $index |
|
| 101 | - * @return mixed |
|
| 102 | - */ |
|
| 103 | - public function offsetGet($index) |
|
| 104 | - { |
|
| 105 | - /** @psalm-suppress MixedReturnStatement */ |
|
| 106 | - return $this->internalArray[(int) $index]; |
|
| 107 | - } |
|
| 108 | - |
|
| 109 | - /** |
|
| 110 | - * @param string|int $index |
|
| 111 | - * @param mixed $newval |
|
| 112 | - * @psalm-suppress MixedAssignment |
|
| 113 | - */ |
|
| 114 | - public function offsetSet($index, $newval) |
|
| 115 | - { |
|
| 116 | - $this->internalArray[(int) $index] = $newval; |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - /** |
|
| 120 | - * @param string|int $index |
|
| 121 | - */ |
|
| 122 | - public function offsetUnset($index) |
|
| 123 | - { |
|
| 124 | - unset($this->internalArray[(int) $index]); |
|
| 125 | - } |
|
| 126 | - |
|
| 127 | - /** |
|
| 128 | - * Rewind iterator back to the start |
|
| 129 | - * @link https://php.net/manual/en/splfixedarray.rewind.php |
|
| 130 | - * @return void |
|
| 131 | - * @since 5.3.0 |
|
| 132 | - */ |
|
| 133 | - public function rewind() |
|
| 134 | - { |
|
| 135 | - reset($this->internalArray); |
|
| 136 | - } |
|
| 137 | - |
|
| 138 | - /** |
|
| 139 | - * Return current array entry |
|
| 140 | - * @link https://php.net/manual/en/splfixedarray.current.php |
|
| 141 | - * @return mixed The current element value. |
|
| 142 | - * @since 5.3.0 |
|
| 143 | - */ |
|
| 144 | - public function current() |
|
| 145 | - { |
|
| 146 | - /** @psalm-suppress MixedReturnStatement */ |
|
| 147 | - return current($this->internalArray); |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - /** |
|
| 151 | - * Return current array index |
|
| 152 | - * @return int The current array index. |
|
| 153 | - */ |
|
| 154 | - public function key() |
|
| 155 | - { |
|
| 156 | - return key($this->internalArray); |
|
| 157 | - } |
|
| 158 | - |
|
| 159 | - /** |
|
| 160 | - * @return void |
|
| 161 | - */ |
|
| 162 | - public function next() |
|
| 163 | - { |
|
| 164 | - next($this->internalArray); |
|
| 165 | - } |
|
| 166 | - |
|
| 167 | - /** |
|
| 168 | - * Check whether the array contains more elements |
|
| 169 | - * @link https://php.net/manual/en/splfixedarray.valid.php |
|
| 170 | - * @return bool true if the array contains any more elements, false otherwise. |
|
| 171 | - */ |
|
| 172 | - public function valid() |
|
| 173 | - { |
|
| 174 | - if (empty($this->internalArray)) { |
|
| 175 | - return false; |
|
| 176 | - } |
|
| 177 | - $result = next($this->internalArray) !== false; |
|
| 178 | - prev($this->internalArray); |
|
| 179 | - return $result; |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - /** |
|
| 183 | - * Do nothing. |
|
| 184 | - */ |
|
| 185 | - public function __wakeup() |
|
| 186 | - { |
|
| 187 | - // NOP |
|
| 188 | - } |
|
| 16 | + /** @var array<int, mixed> */ |
|
| 17 | + private $internalArray = array(); |
|
| 18 | + |
|
| 19 | + /** @var int $size */ |
|
| 20 | + private $size = 0; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * SplFixedArray constructor. |
|
| 24 | + * @param int $size |
|
| 25 | + */ |
|
| 26 | + public function __construct($size = 0) |
|
| 27 | + { |
|
| 28 | + $this->size = $size; |
|
| 29 | + $this->internalArray = array(); |
|
| 30 | + } |
|
| 31 | + |
|
| 32 | + /** |
|
| 33 | + * @return int |
|
| 34 | + */ |
|
| 35 | + public function count() |
|
| 36 | + { |
|
| 37 | + return count($this->internalArray); |
|
| 38 | + } |
|
| 39 | + |
|
| 40 | + /** |
|
| 41 | + * @return array |
|
| 42 | + */ |
|
| 43 | + public function toArray() |
|
| 44 | + { |
|
| 45 | + ksort($this->internalArray); |
|
| 46 | + return (array) $this->internalArray; |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + /** |
|
| 50 | + * @param array $array |
|
| 51 | + * @param bool $save_indexes |
|
| 52 | + * @return SplFixedArray |
|
| 53 | + * @psalm-suppress MixedAssignment |
|
| 54 | + */ |
|
| 55 | + public static function fromArray(array $array, $save_indexes = true) |
|
| 56 | + { |
|
| 57 | + $self = new SplFixedArray(count($array)); |
|
| 58 | + if($save_indexes) { |
|
| 59 | + foreach($array as $key => $value) { |
|
| 60 | + $self[(int) $key] = $value; |
|
| 61 | + } |
|
| 62 | + } else { |
|
| 63 | + $i = 0; |
|
| 64 | + foreach (array_values($array) as $value) { |
|
| 65 | + $self[$i] = $value; |
|
| 66 | + $i++; |
|
| 67 | + } |
|
| 68 | + } |
|
| 69 | + return $self; |
|
| 70 | + } |
|
| 71 | + |
|
| 72 | + /** |
|
| 73 | + * @return int |
|
| 74 | + */ |
|
| 75 | + public function getSize() |
|
| 76 | + { |
|
| 77 | + return $this->size; |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + /** |
|
| 81 | + * @param int $size |
|
| 82 | + * @return bool |
|
| 83 | + */ |
|
| 84 | + public function setSize($size) |
|
| 85 | + { |
|
| 86 | + $this->size = $size; |
|
| 87 | + return true; |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * @param string|int $index |
|
| 92 | + * @return bool |
|
| 93 | + */ |
|
| 94 | + public function offsetExists($index) |
|
| 95 | + { |
|
| 96 | + return array_key_exists((int) $index, $this->internalArray); |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + /** |
|
| 100 | + * @param string|int $index |
|
| 101 | + * @return mixed |
|
| 102 | + */ |
|
| 103 | + public function offsetGet($index) |
|
| 104 | + { |
|
| 105 | + /** @psalm-suppress MixedReturnStatement */ |
|
| 106 | + return $this->internalArray[(int) $index]; |
|
| 107 | + } |
|
| 108 | + |
|
| 109 | + /** |
|
| 110 | + * @param string|int $index |
|
| 111 | + * @param mixed $newval |
|
| 112 | + * @psalm-suppress MixedAssignment |
|
| 113 | + */ |
|
| 114 | + public function offsetSet($index, $newval) |
|
| 115 | + { |
|
| 116 | + $this->internalArray[(int) $index] = $newval; |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + /** |
|
| 120 | + * @param string|int $index |
|
| 121 | + */ |
|
| 122 | + public function offsetUnset($index) |
|
| 123 | + { |
|
| 124 | + unset($this->internalArray[(int) $index]); |
|
| 125 | + } |
|
| 126 | + |
|
| 127 | + /** |
|
| 128 | + * Rewind iterator back to the start |
|
| 129 | + * @link https://php.net/manual/en/splfixedarray.rewind.php |
|
| 130 | + * @return void |
|
| 131 | + * @since 5.3.0 |
|
| 132 | + */ |
|
| 133 | + public function rewind() |
|
| 134 | + { |
|
| 135 | + reset($this->internalArray); |
|
| 136 | + } |
|
| 137 | + |
|
| 138 | + /** |
|
| 139 | + * Return current array entry |
|
| 140 | + * @link https://php.net/manual/en/splfixedarray.current.php |
|
| 141 | + * @return mixed The current element value. |
|
| 142 | + * @since 5.3.0 |
|
| 143 | + */ |
|
| 144 | + public function current() |
|
| 145 | + { |
|
| 146 | + /** @psalm-suppress MixedReturnStatement */ |
|
| 147 | + return current($this->internalArray); |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + /** |
|
| 151 | + * Return current array index |
|
| 152 | + * @return int The current array index. |
|
| 153 | + */ |
|
| 154 | + public function key() |
|
| 155 | + { |
|
| 156 | + return key($this->internalArray); |
|
| 157 | + } |
|
| 158 | + |
|
| 159 | + /** |
|
| 160 | + * @return void |
|
| 161 | + */ |
|
| 162 | + public function next() |
|
| 163 | + { |
|
| 164 | + next($this->internalArray); |
|
| 165 | + } |
|
| 166 | + |
|
| 167 | + /** |
|
| 168 | + * Check whether the array contains more elements |
|
| 169 | + * @link https://php.net/manual/en/splfixedarray.valid.php |
|
| 170 | + * @return bool true if the array contains any more elements, false otherwise. |
|
| 171 | + */ |
|
| 172 | + public function valid() |
|
| 173 | + { |
|
| 174 | + if (empty($this->internalArray)) { |
|
| 175 | + return false; |
|
| 176 | + } |
|
| 177 | + $result = next($this->internalArray) !== false; |
|
| 178 | + prev($this->internalArray); |
|
| 179 | + return $result; |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + /** |
|
| 183 | + * Do nothing. |
|
| 184 | + */ |
|
| 185 | + public function __wakeup() |
|
| 186 | + { |
|
| 187 | + // NOP |
|
| 188 | + } |
|
| 189 | 189 | } |
| 190 | 190 | \ No newline at end of file |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if (class_exists('SplFixedArray')) { |
|
| 3 | +if ( class_exists( 'SplFixedArray' ) ) { |
|
| 4 | 4 | return; |
| 5 | 5 | } |
| 6 | 6 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | * SplFixedArray constructor. |
| 24 | 24 | * @param int $size |
| 25 | 25 | */ |
| 26 | - public function __construct($size = 0) |
|
| 26 | + public function __construct( $size = 0 ) |
|
| 27 | 27 | { |
| 28 | 28 | $this->size = $size; |
| 29 | 29 | $this->internalArray = array(); |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public function count() |
| 36 | 36 | { |
| 37 | - return count($this->internalArray); |
|
| 37 | + return count( $this->internalArray ); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
@@ -42,8 +42,8 @@ discard block |
||
| 42 | 42 | */ |
| 43 | 43 | public function toArray() |
| 44 | 44 | { |
| 45 | - ksort($this->internalArray); |
|
| 46 | - return (array) $this->internalArray; |
|
| 45 | + ksort( $this->internalArray ); |
|
| 46 | + return (array)$this->internalArray; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -52,17 +52,17 @@ discard block |
||
| 52 | 52 | * @return SplFixedArray |
| 53 | 53 | * @psalm-suppress MixedAssignment |
| 54 | 54 | */ |
| 55 | - public static function fromArray(array $array, $save_indexes = true) |
|
| 55 | + public static function fromArray( array $array, $save_indexes = true ) |
|
| 56 | 56 | { |
| 57 | - $self = new SplFixedArray(count($array)); |
|
| 58 | - if($save_indexes) { |
|
| 59 | - foreach($array as $key => $value) { |
|
| 60 | - $self[(int) $key] = $value; |
|
| 57 | + $self = new SplFixedArray( count( $array ) ); |
|
| 58 | + if ( $save_indexes ) { |
|
| 59 | + foreach ( $array as $key => $value ) { |
|
| 60 | + $self[ (int)$key ] = $value; |
|
| 61 | 61 | } |
| 62 | 62 | } else { |
| 63 | 63 | $i = 0; |
| 64 | - foreach (array_values($array) as $value) { |
|
| 65 | - $self[$i] = $value; |
|
| 64 | + foreach ( array_values( $array ) as $value ) { |
|
| 65 | + $self[ $i ] = $value; |
|
| 66 | 66 | $i++; |
| 67 | 67 | } |
| 68 | 68 | } |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * @param int $size |
| 82 | 82 | * @return bool |
| 83 | 83 | */ |
| 84 | - public function setSize($size) |
|
| 84 | + public function setSize( $size ) |
|
| 85 | 85 | { |
| 86 | 86 | $this->size = $size; |
| 87 | 87 | return true; |
@@ -91,19 +91,19 @@ discard block |
||
| 91 | 91 | * @param string|int $index |
| 92 | 92 | * @return bool |
| 93 | 93 | */ |
| 94 | - public function offsetExists($index) |
|
| 94 | + public function offsetExists( $index ) |
|
| 95 | 95 | { |
| 96 | - return array_key_exists((int) $index, $this->internalArray); |
|
| 96 | + return array_key_exists( (int)$index, $this->internalArray ); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
| 100 | 100 | * @param string|int $index |
| 101 | 101 | * @return mixed |
| 102 | 102 | */ |
| 103 | - public function offsetGet($index) |
|
| 103 | + public function offsetGet( $index ) |
|
| 104 | 104 | { |
| 105 | 105 | /** @psalm-suppress MixedReturnStatement */ |
| 106 | - return $this->internalArray[(int) $index]; |
|
| 106 | + return $this->internalArray[ (int)$index ]; |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | /** |
@@ -111,17 +111,17 @@ discard block |
||
| 111 | 111 | * @param mixed $newval |
| 112 | 112 | * @psalm-suppress MixedAssignment |
| 113 | 113 | */ |
| 114 | - public function offsetSet($index, $newval) |
|
| 114 | + public function offsetSet( $index, $newval ) |
|
| 115 | 115 | { |
| 116 | - $this->internalArray[(int) $index] = $newval; |
|
| 116 | + $this->internalArray[ (int)$index ] = $newval; |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
| 120 | 120 | * @param string|int $index |
| 121 | 121 | */ |
| 122 | - public function offsetUnset($index) |
|
| 122 | + public function offsetUnset( $index ) |
|
| 123 | 123 | { |
| 124 | - unset($this->internalArray[(int) $index]); |
|
| 124 | + unset( $this->internalArray[ (int)$index ] ); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | */ |
| 133 | 133 | public function rewind() |
| 134 | 134 | { |
| 135 | - reset($this->internalArray); |
|
| 135 | + reset( $this->internalArray ); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | public function current() |
| 145 | 145 | { |
| 146 | 146 | /** @psalm-suppress MixedReturnStatement */ |
| 147 | - return current($this->internalArray); |
|
| 147 | + return current( $this->internalArray ); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | /** |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | */ |
| 154 | 154 | public function key() |
| 155 | 155 | { |
| 156 | - return key($this->internalArray); |
|
| 156 | + return key( $this->internalArray ); |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | /** |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | */ |
| 162 | 162 | public function next() |
| 163 | 163 | { |
| 164 | - next($this->internalArray); |
|
| 164 | + next( $this->internalArray ); |
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | /** |
@@ -171,11 +171,11 @@ discard block |
||
| 171 | 171 | */ |
| 172 | 172 | public function valid() |
| 173 | 173 | { |
| 174 | - if (empty($this->internalArray)) { |
|
| 174 | + if ( empty( $this->internalArray ) ) { |
|
| 175 | 175 | return false; |
| 176 | 176 | } |
| 177 | - $result = next($this->internalArray) !== false; |
|
| 178 | - prev($this->internalArray); |
|
| 177 | + $result = next( $this->internalArray ) !== false; |
|
| 178 | + prev( $this->internalArray ); |
|
| 179 | 179 | return $result; |
| 180 | 180 | } |
| 181 | 181 | |
@@ -23,8 +23,7 @@ discard block |
||
| 23 | 23 | * SplFixedArray constructor. |
| 24 | 24 | * @param int $size |
| 25 | 25 | */ |
| 26 | - public function __construct($size = 0) |
|
| 27 | - { |
|
| 26 | + public function __construct($size = 0) { |
|
| 28 | 27 | $this->size = $size; |
| 29 | 28 | $this->internalArray = array(); |
| 30 | 29 | } |
@@ -32,16 +31,14 @@ discard block |
||
| 32 | 31 | /** |
| 33 | 32 | * @return int |
| 34 | 33 | */ |
| 35 | - public function count() |
|
| 36 | - { |
|
| 34 | + public function count() { |
|
| 37 | 35 | return count($this->internalArray); |
| 38 | 36 | } |
| 39 | 37 | |
| 40 | 38 | /** |
| 41 | 39 | * @return array |
| 42 | 40 | */ |
| 43 | - public function toArray() |
|
| 44 | - { |
|
| 41 | + public function toArray() { |
|
| 45 | 42 | ksort($this->internalArray); |
| 46 | 43 | return (array) $this->internalArray; |
| 47 | 44 | } |
@@ -52,8 +49,7 @@ discard block |
||
| 52 | 49 | * @return SplFixedArray |
| 53 | 50 | * @psalm-suppress MixedAssignment |
| 54 | 51 | */ |
| 55 | - public static function fromArray(array $array, $save_indexes = true) |
|
| 56 | - { |
|
| 52 | + public static function fromArray(array $array, $save_indexes = true) { |
|
| 57 | 53 | $self = new SplFixedArray(count($array)); |
| 58 | 54 | if($save_indexes) { |
| 59 | 55 | foreach($array as $key => $value) { |
@@ -72,8 +68,7 @@ discard block |
||
| 72 | 68 | /** |
| 73 | 69 | * @return int |
| 74 | 70 | */ |
| 75 | - public function getSize() |
|
| 76 | - { |
|
| 71 | + public function getSize() { |
|
| 77 | 72 | return $this->size; |
| 78 | 73 | } |
| 79 | 74 | |
@@ -81,8 +76,7 @@ discard block |
||
| 81 | 76 | * @param int $size |
| 82 | 77 | * @return bool |
| 83 | 78 | */ |
| 84 | - public function setSize($size) |
|
| 85 | - { |
|
| 79 | + public function setSize($size) { |
|
| 86 | 80 | $this->size = $size; |
| 87 | 81 | return true; |
| 88 | 82 | } |
@@ -91,8 +85,7 @@ discard block |
||
| 91 | 85 | * @param string|int $index |
| 92 | 86 | * @return bool |
| 93 | 87 | */ |
| 94 | - public function offsetExists($index) |
|
| 95 | - { |
|
| 88 | + public function offsetExists($index) { |
|
| 96 | 89 | return array_key_exists((int) $index, $this->internalArray); |
| 97 | 90 | } |
| 98 | 91 | |
@@ -100,8 +93,7 @@ discard block |
||
| 100 | 93 | * @param string|int $index |
| 101 | 94 | * @return mixed |
| 102 | 95 | */ |
| 103 | - public function offsetGet($index) |
|
| 104 | - { |
|
| 96 | + public function offsetGet($index) { |
|
| 105 | 97 | /** @psalm-suppress MixedReturnStatement */ |
| 106 | 98 | return $this->internalArray[(int) $index]; |
| 107 | 99 | } |
@@ -111,16 +103,14 @@ discard block |
||
| 111 | 103 | * @param mixed $newval |
| 112 | 104 | * @psalm-suppress MixedAssignment |
| 113 | 105 | */ |
| 114 | - public function offsetSet($index, $newval) |
|
| 115 | - { |
|
| 106 | + public function offsetSet($index, $newval) { |
|
| 116 | 107 | $this->internalArray[(int) $index] = $newval; |
| 117 | 108 | } |
| 118 | 109 | |
| 119 | 110 | /** |
| 120 | 111 | * @param string|int $index |
| 121 | 112 | */ |
| 122 | - public function offsetUnset($index) |
|
| 123 | - { |
|
| 113 | + public function offsetUnset($index) { |
|
| 124 | 114 | unset($this->internalArray[(int) $index]); |
| 125 | 115 | } |
| 126 | 116 | |
@@ -130,8 +120,7 @@ discard block |
||
| 130 | 120 | * @return void |
| 131 | 121 | * @since 5.3.0 |
| 132 | 122 | */ |
| 133 | - public function rewind() |
|
| 134 | - { |
|
| 123 | + public function rewind() { |
|
| 135 | 124 | reset($this->internalArray); |
| 136 | 125 | } |
| 137 | 126 | |
@@ -141,8 +130,7 @@ discard block |
||
| 141 | 130 | * @return mixed The current element value. |
| 142 | 131 | * @since 5.3.0 |
| 143 | 132 | */ |
| 144 | - public function current() |
|
| 145 | - { |
|
| 133 | + public function current() { |
|
| 146 | 134 | /** @psalm-suppress MixedReturnStatement */ |
| 147 | 135 | return current($this->internalArray); |
| 148 | 136 | } |
@@ -151,16 +139,14 @@ discard block |
||
| 151 | 139 | * Return current array index |
| 152 | 140 | * @return int The current array index. |
| 153 | 141 | */ |
| 154 | - public function key() |
|
| 155 | - { |
|
| 142 | + public function key() { |
|
| 156 | 143 | return key($this->internalArray); |
| 157 | 144 | } |
| 158 | 145 | |
| 159 | 146 | /** |
| 160 | 147 | * @return void |
| 161 | 148 | */ |
| 162 | - public function next() |
|
| 163 | - { |
|
| 149 | + public function next() { |
|
| 164 | 150 | next($this->internalArray); |
| 165 | 151 | } |
| 166 | 152 | |
@@ -169,8 +155,7 @@ discard block |
||
| 169 | 155 | * @link https://php.net/manual/en/splfixedarray.valid.php |
| 170 | 156 | * @return bool true if the array contains any more elements, false otherwise. |
| 171 | 157 | */ |
| 172 | - public function valid() |
|
| 173 | - { |
|
| 158 | + public function valid() { |
|
| 174 | 159 | if (empty($this->internalArray)) { |
| 175 | 160 | return false; |
| 176 | 161 | } |
@@ -182,8 +167,7 @@ discard block |
||
| 182 | 167 | /** |
| 183 | 168 | * Do nothing. |
| 184 | 169 | */ |
| 185 | - public function __wakeup() |
|
| 186 | - { |
|
| 170 | + public function __wakeup() { |
|
| 187 | 171 | // NOP |
| 188 | 172 | } |
| 189 | 173 | } |
| 190 | 174 | \ No newline at end of file |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if (class_exists('ParagonIE_Sodium_Crypto32', false)) { |
| 4 | - return; |
|
| 4 | + return; |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | /** |
@@ -14,1641 +14,1641 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | abstract class ParagonIE_Sodium_Crypto32 |
| 16 | 16 | { |
| 17 | - const aead_chacha20poly1305_KEYBYTES = 32; |
|
| 18 | - const aead_chacha20poly1305_NSECBYTES = 0; |
|
| 19 | - const aead_chacha20poly1305_NPUBBYTES = 8; |
|
| 20 | - const aead_chacha20poly1305_ABYTES = 16; |
|
| 21 | - |
|
| 22 | - const aead_chacha20poly1305_IETF_KEYBYTES = 32; |
|
| 23 | - const aead_chacha20poly1305_IETF_NSECBYTES = 0; |
|
| 24 | - const aead_chacha20poly1305_IETF_NPUBBYTES = 12; |
|
| 25 | - const aead_chacha20poly1305_IETF_ABYTES = 16; |
|
| 26 | - |
|
| 27 | - const aead_xchacha20poly1305_IETF_KEYBYTES = 32; |
|
| 28 | - const aead_xchacha20poly1305_IETF_NSECBYTES = 0; |
|
| 29 | - const aead_xchacha20poly1305_IETF_NPUBBYTES = 24; |
|
| 30 | - const aead_xchacha20poly1305_IETF_ABYTES = 16; |
|
| 31 | - |
|
| 32 | - const box_curve25519xsalsa20poly1305_SEEDBYTES = 32; |
|
| 33 | - const box_curve25519xsalsa20poly1305_PUBLICKEYBYTES = 32; |
|
| 34 | - const box_curve25519xsalsa20poly1305_SECRETKEYBYTES = 32; |
|
| 35 | - const box_curve25519xsalsa20poly1305_BEFORENMBYTES = 32; |
|
| 36 | - const box_curve25519xsalsa20poly1305_NONCEBYTES = 24; |
|
| 37 | - const box_curve25519xsalsa20poly1305_MACBYTES = 16; |
|
| 38 | - const box_curve25519xsalsa20poly1305_BOXZEROBYTES = 16; |
|
| 39 | - const box_curve25519xsalsa20poly1305_ZEROBYTES = 32; |
|
| 40 | - |
|
| 41 | - const onetimeauth_poly1305_BYTES = 16; |
|
| 42 | - const onetimeauth_poly1305_KEYBYTES = 32; |
|
| 43 | - |
|
| 44 | - const secretbox_xsalsa20poly1305_KEYBYTES = 32; |
|
| 45 | - const secretbox_xsalsa20poly1305_NONCEBYTES = 24; |
|
| 46 | - const secretbox_xsalsa20poly1305_MACBYTES = 16; |
|
| 47 | - const secretbox_xsalsa20poly1305_BOXZEROBYTES = 16; |
|
| 48 | - const secretbox_xsalsa20poly1305_ZEROBYTES = 32; |
|
| 49 | - |
|
| 50 | - const secretbox_xchacha20poly1305_KEYBYTES = 32; |
|
| 51 | - const secretbox_xchacha20poly1305_NONCEBYTES = 24; |
|
| 52 | - const secretbox_xchacha20poly1305_MACBYTES = 16; |
|
| 53 | - const secretbox_xchacha20poly1305_BOXZEROBYTES = 16; |
|
| 54 | - const secretbox_xchacha20poly1305_ZEROBYTES = 32; |
|
| 55 | - |
|
| 56 | - const stream_salsa20_KEYBYTES = 32; |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * AEAD Decryption with ChaCha20-Poly1305 |
|
| 60 | - * |
|
| 61 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 62 | - * |
|
| 63 | - * @param string $message |
|
| 64 | - * @param string $ad |
|
| 65 | - * @param string $nonce |
|
| 66 | - * @param string $key |
|
| 67 | - * @return string |
|
| 68 | - * @throws SodiumException |
|
| 69 | - * @throws TypeError |
|
| 70 | - */ |
|
| 71 | - public static function aead_chacha20poly1305_decrypt( |
|
| 72 | - $message = '', |
|
| 73 | - $ad = '', |
|
| 74 | - $nonce = '', |
|
| 75 | - $key = '' |
|
| 76 | - ) { |
|
| 77 | - /** @var int $len - Length of message (ciphertext + MAC) */ |
|
| 78 | - $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 79 | - |
|
| 80 | - /** @var int $clen - Length of ciphertext */ |
|
| 81 | - $clen = $len - self::aead_chacha20poly1305_ABYTES; |
|
| 82 | - |
|
| 83 | - /** @var int $adlen - Length of associated data */ |
|
| 84 | - $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 85 | - |
|
| 86 | - /** @var string $mac - Message authentication code */ |
|
| 87 | - $mac = ParagonIE_Sodium_Core32_Util::substr( |
|
| 88 | - $message, |
|
| 89 | - $clen, |
|
| 90 | - self::aead_chacha20poly1305_ABYTES |
|
| 91 | - ); |
|
| 92 | - |
|
| 93 | - /** @var string $ciphertext - The encrypted message (sans MAC) */ |
|
| 94 | - $ciphertext = ParagonIE_Sodium_Core32_Util::substr($message, 0, $clen); |
|
| 95 | - |
|
| 96 | - /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 97 | - $block0 = ParagonIE_Sodium_Core32_ChaCha20::stream( |
|
| 98 | - 32, |
|
| 99 | - $nonce, |
|
| 100 | - $key |
|
| 101 | - ); |
|
| 102 | - |
|
| 103 | - /* Recalculate the Poly1305 authentication tag (MAC): */ |
|
| 104 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 105 | - try { |
|
| 106 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 107 | - } catch (SodiumException $ex) { |
|
| 108 | - $block0 = null; |
|
| 109 | - } |
|
| 110 | - $state->update($ad); |
|
| 111 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 112 | - $state->update($ciphertext); |
|
| 113 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($clen)); |
|
| 114 | - $computed_mac = $state->finish(); |
|
| 115 | - |
|
| 116 | - /* Compare the given MAC with the recalculated MAC: */ |
|
| 117 | - if (!ParagonIE_Sodium_Core32_Util::verify_16($computed_mac, $mac)) { |
|
| 118 | - throw new SodiumException('Invalid MAC'); |
|
| 119 | - } |
|
| 120 | - |
|
| 121 | - // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
|
| 122 | - return ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 123 | - $ciphertext, |
|
| 124 | - $nonce, |
|
| 125 | - $key, |
|
| 126 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 127 | - ); |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - /** |
|
| 131 | - * AEAD Encryption with ChaCha20-Poly1305 |
|
| 132 | - * |
|
| 133 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 134 | - * |
|
| 135 | - * @param string $message |
|
| 136 | - * @param string $ad |
|
| 137 | - * @param string $nonce |
|
| 138 | - * @param string $key |
|
| 139 | - * @return string |
|
| 140 | - * @throws SodiumException |
|
| 141 | - * @throws TypeError |
|
| 142 | - */ |
|
| 143 | - public static function aead_chacha20poly1305_encrypt( |
|
| 144 | - $message = '', |
|
| 145 | - $ad = '', |
|
| 146 | - $nonce = '', |
|
| 147 | - $key = '' |
|
| 148 | - ) { |
|
| 149 | - /** @var int $len - Length of the plaintext message */ |
|
| 150 | - $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 151 | - |
|
| 152 | - /** @var int $adlen - Length of the associated data */ |
|
| 153 | - $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 154 | - |
|
| 155 | - /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 156 | - $block0 = ParagonIE_Sodium_Core32_ChaCha20::stream( |
|
| 157 | - 32, |
|
| 158 | - $nonce, |
|
| 159 | - $key |
|
| 160 | - ); |
|
| 161 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 162 | - try { |
|
| 163 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 164 | - } catch (SodiumException $ex) { |
|
| 165 | - $block0 = null; |
|
| 166 | - } |
|
| 167 | - |
|
| 168 | - /** @var string $ciphertext - Raw encrypted data */ |
|
| 169 | - $ciphertext = ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 170 | - $message, |
|
| 171 | - $nonce, |
|
| 172 | - $key, |
|
| 173 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 174 | - ); |
|
| 175 | - |
|
| 176 | - $state->update($ad); |
|
| 177 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 178 | - $state->update($ciphertext); |
|
| 179 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($len)); |
|
| 180 | - return $ciphertext . $state->finish(); |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - /** |
|
| 184 | - * AEAD Decryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 185 | - * |
|
| 186 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 187 | - * |
|
| 188 | - * @param string $message |
|
| 189 | - * @param string $ad |
|
| 190 | - * @param string $nonce |
|
| 191 | - * @param string $key |
|
| 192 | - * @return string |
|
| 193 | - * @throws SodiumException |
|
| 194 | - * @throws TypeError |
|
| 195 | - */ |
|
| 196 | - public static function aead_chacha20poly1305_ietf_decrypt( |
|
| 197 | - $message = '', |
|
| 198 | - $ad = '', |
|
| 199 | - $nonce = '', |
|
| 200 | - $key = '' |
|
| 201 | - ) { |
|
| 202 | - /** @var int $adlen - Length of associated data */ |
|
| 203 | - $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 204 | - |
|
| 205 | - /** @var int $len - Length of message (ciphertext + MAC) */ |
|
| 206 | - $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 207 | - |
|
| 208 | - /** @var int $clen - Length of ciphertext */ |
|
| 209 | - $clen = $len - self::aead_chacha20poly1305_IETF_ABYTES; |
|
| 210 | - |
|
| 211 | - /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 212 | - $block0 = ParagonIE_Sodium_Core32_ChaCha20::ietfStream( |
|
| 213 | - 32, |
|
| 214 | - $nonce, |
|
| 215 | - $key |
|
| 216 | - ); |
|
| 217 | - |
|
| 218 | - /** @var string $mac - Message authentication code */ |
|
| 219 | - $mac = ParagonIE_Sodium_Core32_Util::substr( |
|
| 220 | - $message, |
|
| 221 | - $len - self::aead_chacha20poly1305_IETF_ABYTES, |
|
| 222 | - self::aead_chacha20poly1305_IETF_ABYTES |
|
| 223 | - ); |
|
| 224 | - |
|
| 225 | - /** @var string $ciphertext - The encrypted message (sans MAC) */ |
|
| 226 | - $ciphertext = ParagonIE_Sodium_Core32_Util::substr( |
|
| 227 | - $message, |
|
| 228 | - 0, |
|
| 229 | - $len - self::aead_chacha20poly1305_IETF_ABYTES |
|
| 230 | - ); |
|
| 231 | - |
|
| 232 | - /* Recalculate the Poly1305 authentication tag (MAC): */ |
|
| 233 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 234 | - try { |
|
| 235 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 236 | - } catch (SodiumException $ex) { |
|
| 237 | - $block0 = null; |
|
| 238 | - } |
|
| 239 | - $state->update($ad); |
|
| 240 | - $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 241 | - $state->update($ciphertext); |
|
| 242 | - $state->update(str_repeat("\x00", (0x10 - $clen) & 0xf)); |
|
| 243 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 244 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($clen)); |
|
| 245 | - $computed_mac = $state->finish(); |
|
| 246 | - |
|
| 247 | - /* Compare the given MAC with the recalculated MAC: */ |
|
| 248 | - if (!ParagonIE_Sodium_Core32_Util::verify_16($computed_mac, $mac)) { |
|
| 249 | - throw new SodiumException('Invalid MAC'); |
|
| 250 | - } |
|
| 251 | - |
|
| 252 | - // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
|
| 253 | - return ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 254 | - $ciphertext, |
|
| 255 | - $nonce, |
|
| 256 | - $key, |
|
| 257 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 258 | - ); |
|
| 259 | - } |
|
| 260 | - |
|
| 261 | - /** |
|
| 262 | - * AEAD Encryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 263 | - * |
|
| 264 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 265 | - * |
|
| 266 | - * @param string $message |
|
| 267 | - * @param string $ad |
|
| 268 | - * @param string $nonce |
|
| 269 | - * @param string $key |
|
| 270 | - * @return string |
|
| 271 | - * @throws SodiumException |
|
| 272 | - * @throws TypeError |
|
| 273 | - */ |
|
| 274 | - public static function aead_chacha20poly1305_ietf_encrypt( |
|
| 275 | - $message = '', |
|
| 276 | - $ad = '', |
|
| 277 | - $nonce = '', |
|
| 278 | - $key = '' |
|
| 279 | - ) { |
|
| 280 | - /** @var int $len - Length of the plaintext message */ |
|
| 281 | - $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 282 | - |
|
| 283 | - /** @var int $adlen - Length of the associated data */ |
|
| 284 | - $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 285 | - |
|
| 286 | - /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 287 | - $block0 = ParagonIE_Sodium_Core32_ChaCha20::ietfStream( |
|
| 288 | - 32, |
|
| 289 | - $nonce, |
|
| 290 | - $key |
|
| 291 | - ); |
|
| 292 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 293 | - try { |
|
| 294 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 295 | - } catch (SodiumException $ex) { |
|
| 296 | - $block0 = null; |
|
| 297 | - } |
|
| 298 | - |
|
| 299 | - /** @var string $ciphertext - Raw encrypted data */ |
|
| 300 | - $ciphertext = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 301 | - $message, |
|
| 302 | - $nonce, |
|
| 303 | - $key, |
|
| 304 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 305 | - ); |
|
| 306 | - |
|
| 307 | - $state->update($ad); |
|
| 308 | - $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 309 | - $state->update($ciphertext); |
|
| 310 | - $state->update(str_repeat("\x00", ((0x10 - $len) & 0xf))); |
|
| 311 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 312 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($len)); |
|
| 313 | - return $ciphertext . $state->finish(); |
|
| 314 | - } |
|
| 315 | - |
|
| 316 | - /** |
|
| 317 | - * AEAD Decryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 318 | - * |
|
| 319 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 320 | - * |
|
| 321 | - * @param string $message |
|
| 322 | - * @param string $ad |
|
| 323 | - * @param string $nonce |
|
| 324 | - * @param string $key |
|
| 325 | - * @return string |
|
| 326 | - * @throws SodiumException |
|
| 327 | - * @throws TypeError |
|
| 328 | - */ |
|
| 329 | - public static function aead_xchacha20poly1305_ietf_decrypt( |
|
| 330 | - $message = '', |
|
| 331 | - $ad = '', |
|
| 332 | - $nonce = '', |
|
| 333 | - $key = '' |
|
| 334 | - ) { |
|
| 335 | - $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
|
| 336 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
|
| 337 | - $key |
|
| 338 | - ); |
|
| 339 | - $nonceLast = "\x00\x00\x00\x00" . |
|
| 340 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8); |
|
| 341 | - |
|
| 342 | - return self::aead_chacha20poly1305_ietf_decrypt($message, $ad, $nonceLast, $subkey); |
|
| 343 | - } |
|
| 344 | - |
|
| 345 | - /** |
|
| 346 | - * AEAD Encryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 347 | - * |
|
| 348 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 349 | - * |
|
| 350 | - * @param string $message |
|
| 351 | - * @param string $ad |
|
| 352 | - * @param string $nonce |
|
| 353 | - * @param string $key |
|
| 354 | - * @return string |
|
| 355 | - * @throws SodiumException |
|
| 356 | - * @throws TypeError |
|
| 357 | - */ |
|
| 358 | - public static function aead_xchacha20poly1305_ietf_encrypt( |
|
| 359 | - $message = '', |
|
| 360 | - $ad = '', |
|
| 361 | - $nonce = '', |
|
| 362 | - $key = '' |
|
| 363 | - ) { |
|
| 364 | - $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
|
| 365 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
|
| 366 | - $key |
|
| 367 | - ); |
|
| 368 | - $nonceLast = "\x00\x00\x00\x00" . |
|
| 369 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8); |
|
| 370 | - |
|
| 371 | - return self::aead_chacha20poly1305_ietf_encrypt($message, $ad, $nonceLast, $subkey); |
|
| 372 | - } |
|
| 373 | - |
|
| 374 | - /** |
|
| 375 | - * HMAC-SHA-512-256 (a.k.a. the leftmost 256 bits of HMAC-SHA-512) |
|
| 376 | - * |
|
| 377 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 378 | - * |
|
| 379 | - * @param string $message |
|
| 380 | - * @param string $key |
|
| 381 | - * @return string |
|
| 382 | - * @throws TypeError |
|
| 383 | - */ |
|
| 384 | - public static function auth($message, $key) |
|
| 385 | - { |
|
| 386 | - return ParagonIE_Sodium_Core32_Util::substr( |
|
| 387 | - hash_hmac('sha512', $message, $key, true), |
|
| 388 | - 0, |
|
| 389 | - 32 |
|
| 390 | - ); |
|
| 391 | - } |
|
| 392 | - |
|
| 393 | - /** |
|
| 394 | - * HMAC-SHA-512-256 validation. Constant-time via hash_equals(). |
|
| 395 | - * |
|
| 396 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 397 | - * |
|
| 398 | - * @param string $mac |
|
| 399 | - * @param string $message |
|
| 400 | - * @param string $key |
|
| 401 | - * @return bool |
|
| 402 | - * @throws SodiumException |
|
| 403 | - * @throws TypeError |
|
| 404 | - */ |
|
| 405 | - public static function auth_verify($mac, $message, $key) |
|
| 406 | - { |
|
| 407 | - return ParagonIE_Sodium_Core32_Util::hashEquals( |
|
| 408 | - $mac, |
|
| 409 | - self::auth($message, $key) |
|
| 410 | - ); |
|
| 411 | - } |
|
| 412 | - |
|
| 413 | - /** |
|
| 414 | - * X25519 key exchange followed by XSalsa20Poly1305 symmetric encryption |
|
| 415 | - * |
|
| 416 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 417 | - * |
|
| 418 | - * @param string $plaintext |
|
| 419 | - * @param string $nonce |
|
| 420 | - * @param string $keypair |
|
| 421 | - * @return string |
|
| 422 | - * @throws SodiumException |
|
| 423 | - * @throws TypeError |
|
| 424 | - */ |
|
| 425 | - public static function box($plaintext, $nonce, $keypair) |
|
| 426 | - { |
|
| 427 | - return self::secretbox( |
|
| 428 | - $plaintext, |
|
| 429 | - $nonce, |
|
| 430 | - self::box_beforenm( |
|
| 431 | - self::box_secretkey($keypair), |
|
| 432 | - self::box_publickey($keypair) |
|
| 433 | - ) |
|
| 434 | - ); |
|
| 435 | - } |
|
| 436 | - |
|
| 437 | - /** |
|
| 438 | - * X25519-XSalsa20-Poly1305 with one ephemeral X25519 keypair. |
|
| 439 | - * |
|
| 440 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 441 | - * |
|
| 442 | - * @param string $message |
|
| 443 | - * @param string $publicKey |
|
| 444 | - * @return string |
|
| 445 | - * @throws SodiumException |
|
| 446 | - * @throws TypeError |
|
| 447 | - */ |
|
| 448 | - public static function box_seal($message, $publicKey) |
|
| 449 | - { |
|
| 450 | - /** @var string $ephemeralKeypair */ |
|
| 451 | - $ephemeralKeypair = self::box_keypair(); |
|
| 452 | - |
|
| 453 | - /** @var string $ephemeralSK */ |
|
| 454 | - $ephemeralSK = self::box_secretkey($ephemeralKeypair); |
|
| 455 | - |
|
| 456 | - /** @var string $ephemeralPK */ |
|
| 457 | - $ephemeralPK = self::box_publickey($ephemeralKeypair); |
|
| 458 | - |
|
| 459 | - /** @var string $nonce */ |
|
| 460 | - $nonce = self::generichash( |
|
| 461 | - $ephemeralPK . $publicKey, |
|
| 462 | - '', |
|
| 463 | - 24 |
|
| 464 | - ); |
|
| 465 | - |
|
| 466 | - /** @var string $keypair - The combined keypair used in crypto_box() */ |
|
| 467 | - $keypair = self::box_keypair_from_secretkey_and_publickey($ephemeralSK, $publicKey); |
|
| 468 | - |
|
| 469 | - /** @var string $ciphertext Ciphertext + MAC from crypto_box */ |
|
| 470 | - $ciphertext = self::box($message, $nonce, $keypair); |
|
| 471 | - try { |
|
| 472 | - ParagonIE_Sodium_Compat::memzero($ephemeralKeypair); |
|
| 473 | - ParagonIE_Sodium_Compat::memzero($ephemeralSK); |
|
| 474 | - ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 475 | - } catch (SodiumException $ex) { |
|
| 476 | - $ephemeralKeypair = null; |
|
| 477 | - $ephemeralSK = null; |
|
| 478 | - $nonce = null; |
|
| 479 | - } |
|
| 480 | - return $ephemeralPK . $ciphertext; |
|
| 481 | - } |
|
| 482 | - |
|
| 483 | - /** |
|
| 484 | - * Opens a message encrypted via box_seal(). |
|
| 485 | - * |
|
| 486 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 487 | - * |
|
| 488 | - * @param string $message |
|
| 489 | - * @param string $keypair |
|
| 490 | - * @return string |
|
| 491 | - * @throws SodiumException |
|
| 492 | - * @throws TypeError |
|
| 493 | - */ |
|
| 494 | - public static function box_seal_open($message, $keypair) |
|
| 495 | - { |
|
| 496 | - /** @var string $ephemeralPK */ |
|
| 497 | - $ephemeralPK = ParagonIE_Sodium_Core32_Util::substr($message, 0, 32); |
|
| 498 | - |
|
| 499 | - /** @var string $ciphertext (ciphertext + MAC) */ |
|
| 500 | - $ciphertext = ParagonIE_Sodium_Core32_Util::substr($message, 32); |
|
| 501 | - |
|
| 502 | - /** @var string $secretKey */ |
|
| 503 | - $secretKey = self::box_secretkey($keypair); |
|
| 504 | - |
|
| 505 | - /** @var string $publicKey */ |
|
| 506 | - $publicKey = self::box_publickey($keypair); |
|
| 507 | - |
|
| 508 | - /** @var string $nonce */ |
|
| 509 | - $nonce = self::generichash( |
|
| 510 | - $ephemeralPK . $publicKey, |
|
| 511 | - '', |
|
| 512 | - 24 |
|
| 513 | - ); |
|
| 514 | - |
|
| 515 | - /** @var string $keypair */ |
|
| 516 | - $keypair = self::box_keypair_from_secretkey_and_publickey($secretKey, $ephemeralPK); |
|
| 517 | - |
|
| 518 | - /** @var string $m */ |
|
| 519 | - $m = self::box_open($ciphertext, $nonce, $keypair); |
|
| 520 | - try { |
|
| 521 | - ParagonIE_Sodium_Compat::memzero($secretKey); |
|
| 522 | - ParagonIE_Sodium_Compat::memzero($ephemeralPK); |
|
| 523 | - ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 524 | - } catch (SodiumException $ex) { |
|
| 525 | - $secretKey = null; |
|
| 526 | - $ephemeralPK = null; |
|
| 527 | - $nonce = null; |
|
| 528 | - } |
|
| 529 | - return $m; |
|
| 530 | - } |
|
| 531 | - |
|
| 532 | - /** |
|
| 533 | - * Used by crypto_box() to get the crypto_secretbox() key. |
|
| 534 | - * |
|
| 535 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 536 | - * |
|
| 537 | - * @param string $sk |
|
| 538 | - * @param string $pk |
|
| 539 | - * @return string |
|
| 540 | - * @throws SodiumException |
|
| 541 | - * @throws TypeError |
|
| 542 | - */ |
|
| 543 | - public static function box_beforenm($sk, $pk) |
|
| 544 | - { |
|
| 545 | - return ParagonIE_Sodium_Core32_HSalsa20::hsalsa20( |
|
| 546 | - str_repeat("\x00", 16), |
|
| 547 | - self::scalarmult($sk, $pk) |
|
| 548 | - ); |
|
| 549 | - } |
|
| 550 | - |
|
| 551 | - /** |
|
| 552 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 553 | - * |
|
| 554 | - * @return string |
|
| 555 | - * @throws Exception |
|
| 556 | - * @throws SodiumException |
|
| 557 | - * @throws TypeError |
|
| 558 | - */ |
|
| 559 | - public static function box_keypair() |
|
| 560 | - { |
|
| 561 | - $sKey = random_bytes(32); |
|
| 562 | - $pKey = self::scalarmult_base($sKey); |
|
| 563 | - return $sKey . $pKey; |
|
| 564 | - } |
|
| 565 | - |
|
| 566 | - /** |
|
| 567 | - * @param string $seed |
|
| 568 | - * @return string |
|
| 569 | - * @throws SodiumException |
|
| 570 | - * @throws TypeError |
|
| 571 | - */ |
|
| 572 | - public static function box_seed_keypair($seed) |
|
| 573 | - { |
|
| 574 | - $sKey = ParagonIE_Sodium_Core32_Util::substr( |
|
| 575 | - hash('sha512', $seed, true), |
|
| 576 | - 0, |
|
| 577 | - 32 |
|
| 578 | - ); |
|
| 579 | - $pKey = self::scalarmult_base($sKey); |
|
| 580 | - return $sKey . $pKey; |
|
| 581 | - } |
|
| 582 | - |
|
| 583 | - /** |
|
| 584 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 585 | - * |
|
| 586 | - * @param string $sKey |
|
| 587 | - * @param string $pKey |
|
| 588 | - * @return string |
|
| 589 | - * @throws TypeError |
|
| 590 | - */ |
|
| 591 | - public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) |
|
| 592 | - { |
|
| 593 | - return ParagonIE_Sodium_Core32_Util::substr($sKey, 0, 32) . |
|
| 594 | - ParagonIE_Sodium_Core32_Util::substr($pKey, 0, 32); |
|
| 595 | - } |
|
| 596 | - |
|
| 597 | - /** |
|
| 598 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 599 | - * |
|
| 600 | - * @param string $keypair |
|
| 601 | - * @return string |
|
| 602 | - * @throws RangeException |
|
| 603 | - * @throws TypeError |
|
| 604 | - */ |
|
| 605 | - public static function box_secretkey($keypair) |
|
| 606 | - { |
|
| 607 | - if (ParagonIE_Sodium_Core32_Util::strlen($keypair) !== 64) { |
|
| 608 | - throw new RangeException( |
|
| 609 | - 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
|
| 610 | - ); |
|
| 611 | - } |
|
| 612 | - return ParagonIE_Sodium_Core32_Util::substr($keypair, 0, 32); |
|
| 613 | - } |
|
| 614 | - |
|
| 615 | - /** |
|
| 616 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 617 | - * |
|
| 618 | - * @param string $keypair |
|
| 619 | - * @return string |
|
| 620 | - * @throws RangeException |
|
| 621 | - * @throws TypeError |
|
| 622 | - */ |
|
| 623 | - public static function box_publickey($keypair) |
|
| 624 | - { |
|
| 625 | - if (ParagonIE_Sodium_Core32_Util::strlen($keypair) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES) { |
|
| 626 | - throw new RangeException( |
|
| 627 | - 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
|
| 628 | - ); |
|
| 629 | - } |
|
| 630 | - return ParagonIE_Sodium_Core32_Util::substr($keypair, 32, 32); |
|
| 631 | - } |
|
| 632 | - |
|
| 633 | - /** |
|
| 634 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 635 | - * |
|
| 636 | - * @param string $sKey |
|
| 637 | - * @return string |
|
| 638 | - * @throws RangeException |
|
| 639 | - * @throws SodiumException |
|
| 640 | - * @throws TypeError |
|
| 641 | - */ |
|
| 642 | - public static function box_publickey_from_secretkey($sKey) |
|
| 643 | - { |
|
| 644 | - if (ParagonIE_Sodium_Core32_Util::strlen($sKey) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES) { |
|
| 645 | - throw new RangeException( |
|
| 646 | - 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES bytes long.' |
|
| 647 | - ); |
|
| 648 | - } |
|
| 649 | - return self::scalarmult_base($sKey); |
|
| 650 | - } |
|
| 651 | - |
|
| 652 | - /** |
|
| 653 | - * Decrypt a message encrypted with box(). |
|
| 654 | - * |
|
| 655 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 656 | - * |
|
| 657 | - * @param string $ciphertext |
|
| 658 | - * @param string $nonce |
|
| 659 | - * @param string $keypair |
|
| 660 | - * @return string |
|
| 661 | - * @throws SodiumException |
|
| 662 | - * @throws TypeError |
|
| 663 | - */ |
|
| 664 | - public static function box_open($ciphertext, $nonce, $keypair) |
|
| 665 | - { |
|
| 666 | - return self::secretbox_open( |
|
| 667 | - $ciphertext, |
|
| 668 | - $nonce, |
|
| 669 | - self::box_beforenm( |
|
| 670 | - self::box_secretkey($keypair), |
|
| 671 | - self::box_publickey($keypair) |
|
| 672 | - ) |
|
| 673 | - ); |
|
| 674 | - } |
|
| 675 | - |
|
| 676 | - /** |
|
| 677 | - * Calculate a BLAKE2b hash. |
|
| 678 | - * |
|
| 679 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 680 | - * |
|
| 681 | - * @param string $message |
|
| 682 | - * @param string|null $key |
|
| 683 | - * @param int $outlen |
|
| 684 | - * @return string |
|
| 685 | - * @throws RangeException |
|
| 686 | - * @throws SodiumException |
|
| 687 | - * @throws TypeError |
|
| 688 | - */ |
|
| 689 | - public static function generichash($message, $key = '', $outlen = 32) |
|
| 690 | - { |
|
| 691 | - // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
|
| 692 | - ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
|
| 693 | - |
|
| 694 | - $k = null; |
|
| 695 | - if (!empty($key)) { |
|
| 696 | - /** @var SplFixedArray $k */ |
|
| 697 | - $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($key); |
|
| 698 | - if ($k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES) { |
|
| 699 | - throw new RangeException('Invalid key size'); |
|
| 700 | - } |
|
| 701 | - } |
|
| 702 | - |
|
| 703 | - /** @var SplFixedArray $in */ |
|
| 704 | - $in = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($message); |
|
| 705 | - |
|
| 706 | - /** @var SplFixedArray $ctx */ |
|
| 707 | - $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init($k, $outlen); |
|
| 708 | - ParagonIE_Sodium_Core32_BLAKE2b::update($ctx, $in, $in->count()); |
|
| 709 | - |
|
| 710 | - /** @var SplFixedArray $out */ |
|
| 711 | - $out = new SplFixedArray($outlen); |
|
| 712 | - $out = ParagonIE_Sodium_Core32_BLAKE2b::finish($ctx, $out); |
|
| 713 | - |
|
| 714 | - /** @var array<int, int> */ |
|
| 715 | - $outArray = $out->toArray(); |
|
| 716 | - return ParagonIE_Sodium_Core32_Util::intArrayToString($outArray); |
|
| 717 | - } |
|
| 718 | - |
|
| 719 | - /** |
|
| 720 | - * Finalize a BLAKE2b hashing context, returning the hash. |
|
| 721 | - * |
|
| 722 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 723 | - * |
|
| 724 | - * @param string $ctx |
|
| 725 | - * @param int $outlen |
|
| 726 | - * @return string |
|
| 727 | - * @throws SodiumException |
|
| 728 | - * @throws TypeError |
|
| 729 | - */ |
|
| 730 | - public static function generichash_final($ctx, $outlen = 32) |
|
| 731 | - { |
|
| 732 | - if (!is_string($ctx)) { |
|
| 733 | - throw new TypeError('Context must be a string'); |
|
| 734 | - } |
|
| 735 | - $out = new SplFixedArray($outlen); |
|
| 736 | - |
|
| 737 | - /** @var SplFixedArray $context */ |
|
| 738 | - $context = ParagonIE_Sodium_Core32_BLAKE2b::stringToContext($ctx); |
|
| 739 | - |
|
| 740 | - /** @var SplFixedArray $out */ |
|
| 741 | - $out = ParagonIE_Sodium_Core32_BLAKE2b::finish($context, $out); |
|
| 742 | - |
|
| 743 | - /** @var array<int, int> */ |
|
| 744 | - $outArray = $out->toArray(); |
|
| 745 | - return ParagonIE_Sodium_Core32_Util::intArrayToString($outArray); |
|
| 746 | - } |
|
| 747 | - |
|
| 748 | - /** |
|
| 749 | - * Initialize a hashing context for BLAKE2b. |
|
| 750 | - * |
|
| 751 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 752 | - * |
|
| 753 | - * @param string $key |
|
| 754 | - * @param int $outputLength |
|
| 755 | - * @return string |
|
| 756 | - * @throws RangeException |
|
| 757 | - * @throws SodiumException |
|
| 758 | - * @throws TypeError |
|
| 759 | - */ |
|
| 760 | - public static function generichash_init($key = '', $outputLength = 32) |
|
| 761 | - { |
|
| 762 | - // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
|
| 763 | - ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
|
| 764 | - |
|
| 765 | - $k = null; |
|
| 766 | - if (!empty($key)) { |
|
| 767 | - $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($key); |
|
| 768 | - if ($k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES) { |
|
| 769 | - throw new RangeException('Invalid key size'); |
|
| 770 | - } |
|
| 771 | - } |
|
| 772 | - |
|
| 773 | - /** @var SplFixedArray $ctx */ |
|
| 774 | - $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init($k, $outputLength); |
|
| 775 | - |
|
| 776 | - return ParagonIE_Sodium_Core32_BLAKE2b::contextToString($ctx); |
|
| 777 | - } |
|
| 778 | - |
|
| 779 | - /** |
|
| 780 | - * Initialize a hashing context for BLAKE2b. |
|
| 781 | - * |
|
| 782 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 783 | - * |
|
| 784 | - * @param string $key |
|
| 785 | - * @param int $outputLength |
|
| 786 | - * @param string $salt |
|
| 787 | - * @param string $personal |
|
| 788 | - * @return string |
|
| 789 | - * @throws RangeException |
|
| 790 | - * @throws SodiumException |
|
| 791 | - * @throws TypeError |
|
| 792 | - */ |
|
| 793 | - public static function generichash_init_salt_personal( |
|
| 794 | - $key = '', |
|
| 795 | - $outputLength = 32, |
|
| 796 | - $salt = '', |
|
| 797 | - $personal = '' |
|
| 798 | - ) { |
|
| 799 | - // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
|
| 800 | - ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
|
| 801 | - |
|
| 802 | - $k = null; |
|
| 803 | - if (!empty($key)) { |
|
| 804 | - $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($key); |
|
| 805 | - if ($k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES) { |
|
| 806 | - throw new RangeException('Invalid key size'); |
|
| 807 | - } |
|
| 808 | - } |
|
| 809 | - if (!empty($salt)) { |
|
| 810 | - $s = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($salt); |
|
| 811 | - } else { |
|
| 812 | - $s = null; |
|
| 813 | - } |
|
| 814 | - if (!empty($salt)) { |
|
| 815 | - $p = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($personal); |
|
| 816 | - } else { |
|
| 817 | - $p = null; |
|
| 818 | - } |
|
| 819 | - |
|
| 820 | - /** @var SplFixedArray $ctx */ |
|
| 821 | - $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init($k, $outputLength, $s, $p); |
|
| 822 | - |
|
| 823 | - return ParagonIE_Sodium_Core32_BLAKE2b::contextToString($ctx); |
|
| 824 | - } |
|
| 825 | - |
|
| 826 | - /** |
|
| 827 | - * Update a hashing context for BLAKE2b with $message |
|
| 828 | - * |
|
| 829 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 830 | - * |
|
| 831 | - * @param string $ctx |
|
| 832 | - * @param string $message |
|
| 833 | - * @return string |
|
| 834 | - * @throws SodiumException |
|
| 835 | - * @throws TypeError |
|
| 836 | - */ |
|
| 837 | - public static function generichash_update($ctx, $message) |
|
| 838 | - { |
|
| 839 | - // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
|
| 840 | - ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
|
| 841 | - |
|
| 842 | - /** @var SplFixedArray $context */ |
|
| 843 | - $context = ParagonIE_Sodium_Core32_BLAKE2b::stringToContext($ctx); |
|
| 844 | - |
|
| 845 | - /** @var SplFixedArray $in */ |
|
| 846 | - $in = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($message); |
|
| 847 | - |
|
| 848 | - ParagonIE_Sodium_Core32_BLAKE2b::update($context, $in, $in->count()); |
|
| 849 | - |
|
| 850 | - return ParagonIE_Sodium_Core32_BLAKE2b::contextToString($context); |
|
| 851 | - } |
|
| 852 | - |
|
| 853 | - /** |
|
| 854 | - * Libsodium's crypto_kx(). |
|
| 855 | - * |
|
| 856 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 857 | - * |
|
| 858 | - * @param string $my_sk |
|
| 859 | - * @param string $their_pk |
|
| 860 | - * @param string $client_pk |
|
| 861 | - * @param string $server_pk |
|
| 862 | - * @return string |
|
| 863 | - * @throws SodiumException |
|
| 864 | - * @throws TypeError |
|
| 865 | - */ |
|
| 866 | - public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) |
|
| 867 | - { |
|
| 868 | - return self::generichash( |
|
| 869 | - self::scalarmult($my_sk, $their_pk) . |
|
| 870 | - $client_pk . |
|
| 871 | - $server_pk |
|
| 872 | - ); |
|
| 873 | - } |
|
| 874 | - |
|
| 875 | - /** |
|
| 876 | - * ECDH over Curve25519 |
|
| 877 | - * |
|
| 878 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 879 | - * |
|
| 880 | - * @param string $sKey |
|
| 881 | - * @param string $pKey |
|
| 882 | - * @return string |
|
| 883 | - * |
|
| 884 | - * @throws SodiumException |
|
| 885 | - * @throws TypeError |
|
| 886 | - */ |
|
| 887 | - public static function scalarmult($sKey, $pKey) |
|
| 888 | - { |
|
| 889 | - $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10($sKey, $pKey); |
|
| 890 | - self::scalarmult_throw_if_zero($q); |
|
| 891 | - return $q; |
|
| 892 | - } |
|
| 893 | - |
|
| 894 | - /** |
|
| 895 | - * ECDH over Curve25519, using the basepoint. |
|
| 896 | - * Used to get a secret key from a public key. |
|
| 897 | - * |
|
| 898 | - * @param string $secret |
|
| 899 | - * @return string |
|
| 900 | - * |
|
| 901 | - * @throws SodiumException |
|
| 902 | - * @throws TypeError |
|
| 903 | - */ |
|
| 904 | - public static function scalarmult_base($secret) |
|
| 905 | - { |
|
| 906 | - $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10_base($secret); |
|
| 907 | - self::scalarmult_throw_if_zero($q); |
|
| 908 | - return $q; |
|
| 909 | - } |
|
| 910 | - |
|
| 911 | - /** |
|
| 912 | - * This throws an Error if a zero public key was passed to the function. |
|
| 913 | - * |
|
| 914 | - * @param string $q |
|
| 915 | - * @return void |
|
| 916 | - * @throws SodiumException |
|
| 917 | - * @throws TypeError |
|
| 918 | - */ |
|
| 919 | - protected static function scalarmult_throw_if_zero($q) |
|
| 920 | - { |
|
| 921 | - $d = 0; |
|
| 922 | - for ($i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i) { |
|
| 923 | - $d |= ParagonIE_Sodium_Core32_Util::chrToInt($q[$i]); |
|
| 924 | - } |
|
| 925 | - |
|
| 926 | - /* branch-free variant of === 0 */ |
|
| 927 | - if (-(1 & (($d - 1) >> 8))) { |
|
| 928 | - throw new SodiumException('Zero public key is not allowed'); |
|
| 929 | - } |
|
| 930 | - } |
|
| 931 | - |
|
| 932 | - /** |
|
| 933 | - * XSalsa20-Poly1305 authenticated symmetric-key encryption. |
|
| 934 | - * |
|
| 935 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 936 | - * |
|
| 937 | - * @param string $plaintext |
|
| 938 | - * @param string $nonce |
|
| 939 | - * @param string $key |
|
| 940 | - * @return string |
|
| 941 | - * @throws SodiumException |
|
| 942 | - * @throws TypeError |
|
| 943 | - */ |
|
| 944 | - public static function secretbox($plaintext, $nonce, $key) |
|
| 945 | - { |
|
| 946 | - /** @var string $subkey */ |
|
| 947 | - $subkey = ParagonIE_Sodium_Core32_HSalsa20::hsalsa20($nonce, $key); |
|
| 948 | - |
|
| 949 | - /** @var string $block0 */ |
|
| 950 | - $block0 = str_repeat("\x00", 32); |
|
| 951 | - |
|
| 952 | - /** @var int $mlen - Length of the plaintext message */ |
|
| 953 | - $mlen = ParagonIE_Sodium_Core32_Util::strlen($plaintext); |
|
| 954 | - $mlen0 = $mlen; |
|
| 955 | - if ($mlen0 > 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 956 | - $mlen0 = 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES; |
|
| 957 | - } |
|
| 958 | - $block0 .= ParagonIE_Sodium_Core32_Util::substr($plaintext, 0, $mlen0); |
|
| 959 | - |
|
| 960 | - /** @var string $block0 */ |
|
| 961 | - $block0 = ParagonIE_Sodium_Core32_Salsa20::salsa20_xor( |
|
| 962 | - $block0, |
|
| 963 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 964 | - $subkey |
|
| 965 | - ); |
|
| 966 | - |
|
| 967 | - /** @var string $c */ |
|
| 968 | - $c = ParagonIE_Sodium_Core32_Util::substr( |
|
| 969 | - $block0, |
|
| 970 | - self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 971 | - ); |
|
| 972 | - if ($mlen > $mlen0) { |
|
| 973 | - $c .= ParagonIE_Sodium_Core32_Salsa20::salsa20_xor_ic( |
|
| 974 | - ParagonIE_Sodium_Core32_Util::substr( |
|
| 975 | - $plaintext, |
|
| 976 | - self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 977 | - ), |
|
| 978 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 979 | - 1, |
|
| 980 | - $subkey |
|
| 981 | - ); |
|
| 982 | - } |
|
| 983 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State( |
|
| 984 | - ParagonIE_Sodium_Core32_Util::substr( |
|
| 985 | - $block0, |
|
| 986 | - 0, |
|
| 987 | - self::onetimeauth_poly1305_KEYBYTES |
|
| 988 | - ) |
|
| 989 | - ); |
|
| 990 | - try { |
|
| 991 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 992 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 993 | - } catch (SodiumException $ex) { |
|
| 994 | - $block0 = null; |
|
| 995 | - $subkey = null; |
|
| 996 | - } |
|
| 997 | - |
|
| 998 | - $state->update($c); |
|
| 999 | - |
|
| 1000 | - /** @var string $c - MAC || ciphertext */ |
|
| 1001 | - $c = $state->finish() . $c; |
|
| 1002 | - unset($state); |
|
| 1003 | - |
|
| 1004 | - return $c; |
|
| 1005 | - } |
|
| 1006 | - |
|
| 1007 | - /** |
|
| 1008 | - * Decrypt a ciphertext generated via secretbox(). |
|
| 1009 | - * |
|
| 1010 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1011 | - * |
|
| 1012 | - * @param string $ciphertext |
|
| 1013 | - * @param string $nonce |
|
| 1014 | - * @param string $key |
|
| 1015 | - * @return string |
|
| 1016 | - * @throws SodiumException |
|
| 1017 | - * @throws TypeError |
|
| 1018 | - */ |
|
| 1019 | - public static function secretbox_open($ciphertext, $nonce, $key) |
|
| 1020 | - { |
|
| 1021 | - /** @var string $mac */ |
|
| 1022 | - $mac = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1023 | - $ciphertext, |
|
| 1024 | - 0, |
|
| 1025 | - self::secretbox_xsalsa20poly1305_MACBYTES |
|
| 1026 | - ); |
|
| 1027 | - |
|
| 1028 | - /** @var string $c */ |
|
| 1029 | - $c = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1030 | - $ciphertext, |
|
| 1031 | - self::secretbox_xsalsa20poly1305_MACBYTES |
|
| 1032 | - ); |
|
| 1033 | - |
|
| 1034 | - /** @var int $clen */ |
|
| 1035 | - $clen = ParagonIE_Sodium_Core32_Util::strlen($c); |
|
| 1036 | - |
|
| 1037 | - /** @var string $subkey */ |
|
| 1038 | - $subkey = ParagonIE_Sodium_Core32_HSalsa20::hsalsa20($nonce, $key); |
|
| 1039 | - |
|
| 1040 | - /** @var string $block0 */ |
|
| 1041 | - $block0 = ParagonIE_Sodium_Core32_Salsa20::salsa20( |
|
| 1042 | - 64, |
|
| 1043 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1044 | - $subkey |
|
| 1045 | - ); |
|
| 1046 | - $verified = ParagonIE_Sodium_Core32_Poly1305::onetimeauth_verify( |
|
| 1047 | - $mac, |
|
| 1048 | - $c, |
|
| 1049 | - ParagonIE_Sodium_Core32_Util::substr($block0, 0, 32) |
|
| 1050 | - ); |
|
| 1051 | - if (!$verified) { |
|
| 1052 | - try { |
|
| 1053 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1054 | - } catch (SodiumException $ex) { |
|
| 1055 | - $subkey = null; |
|
| 1056 | - } |
|
| 1057 | - throw new SodiumException('Invalid MAC'); |
|
| 1058 | - } |
|
| 1059 | - |
|
| 1060 | - /** @var string $m - Decrypted message */ |
|
| 1061 | - $m = ParagonIE_Sodium_Core32_Util::xorStrings( |
|
| 1062 | - ParagonIE_Sodium_Core32_Util::substr($block0, self::secretbox_xsalsa20poly1305_ZEROBYTES), |
|
| 1063 | - ParagonIE_Sodium_Core32_Util::substr($c, 0, self::secretbox_xsalsa20poly1305_ZEROBYTES) |
|
| 1064 | - ); |
|
| 1065 | - if ($clen > self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 1066 | - // We had more than 1 block, so let's continue to decrypt the rest. |
|
| 1067 | - $m .= ParagonIE_Sodium_Core32_Salsa20::salsa20_xor_ic( |
|
| 1068 | - ParagonIE_Sodium_Core32_Util::substr( |
|
| 1069 | - $c, |
|
| 1070 | - self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 1071 | - ), |
|
| 1072 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1073 | - 1, |
|
| 1074 | - (string) $subkey |
|
| 1075 | - ); |
|
| 1076 | - } |
|
| 1077 | - return $m; |
|
| 1078 | - } |
|
| 1079 | - |
|
| 1080 | - /** |
|
| 1081 | - * XChaCha20-Poly1305 authenticated symmetric-key encryption. |
|
| 1082 | - * |
|
| 1083 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1084 | - * |
|
| 1085 | - * @param string $plaintext |
|
| 1086 | - * @param string $nonce |
|
| 1087 | - * @param string $key |
|
| 1088 | - * @return string |
|
| 1089 | - * @throws SodiumException |
|
| 1090 | - * @throws TypeError |
|
| 1091 | - */ |
|
| 1092 | - public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) |
|
| 1093 | - { |
|
| 1094 | - /** @var string $subkey */ |
|
| 1095 | - $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
|
| 1096 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
|
| 1097 | - $key |
|
| 1098 | - ); |
|
| 1099 | - $nonceLast = ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8); |
|
| 1100 | - |
|
| 1101 | - /** @var string $block0 */ |
|
| 1102 | - $block0 = str_repeat("\x00", 32); |
|
| 1103 | - |
|
| 1104 | - /** @var int $mlen - Length of the plaintext message */ |
|
| 1105 | - $mlen = ParagonIE_Sodium_Core32_Util::strlen($plaintext); |
|
| 1106 | - $mlen0 = $mlen; |
|
| 1107 | - if ($mlen0 > 64 - self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1108 | - $mlen0 = 64 - self::secretbox_xchacha20poly1305_ZEROBYTES; |
|
| 1109 | - } |
|
| 1110 | - $block0 .= ParagonIE_Sodium_Core32_Util::substr($plaintext, 0, $mlen0); |
|
| 1111 | - |
|
| 1112 | - /** @var string $block0 */ |
|
| 1113 | - $block0 = ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 1114 | - $block0, |
|
| 1115 | - $nonceLast, |
|
| 1116 | - $subkey |
|
| 1117 | - ); |
|
| 1118 | - |
|
| 1119 | - /** @var string $c */ |
|
| 1120 | - $c = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1121 | - $block0, |
|
| 1122 | - self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1123 | - ); |
|
| 1124 | - if ($mlen > $mlen0) { |
|
| 1125 | - $c .= ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 1126 | - ParagonIE_Sodium_Core32_Util::substr( |
|
| 1127 | - $plaintext, |
|
| 1128 | - self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1129 | - ), |
|
| 1130 | - $nonceLast, |
|
| 1131 | - $subkey, |
|
| 1132 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1133 | - ); |
|
| 1134 | - } |
|
| 1135 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State( |
|
| 1136 | - ParagonIE_Sodium_Core32_Util::substr( |
|
| 1137 | - $block0, |
|
| 1138 | - 0, |
|
| 1139 | - self::onetimeauth_poly1305_KEYBYTES |
|
| 1140 | - ) |
|
| 1141 | - ); |
|
| 1142 | - try { |
|
| 1143 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 1144 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1145 | - } catch (SodiumException $ex) { |
|
| 1146 | - $block0 = null; |
|
| 1147 | - $subkey = null; |
|
| 1148 | - } |
|
| 1149 | - |
|
| 1150 | - $state->update($c); |
|
| 1151 | - |
|
| 1152 | - /** @var string $c - MAC || ciphertext */ |
|
| 1153 | - $c = $state->finish() . $c; |
|
| 1154 | - unset($state); |
|
| 1155 | - |
|
| 1156 | - return $c; |
|
| 1157 | - } |
|
| 1158 | - |
|
| 1159 | - /** |
|
| 1160 | - * Decrypt a ciphertext generated via secretbox_xchacha20poly1305(). |
|
| 1161 | - * |
|
| 1162 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1163 | - * |
|
| 1164 | - * @param string $ciphertext |
|
| 1165 | - * @param string $nonce |
|
| 1166 | - * @param string $key |
|
| 1167 | - * @return string |
|
| 1168 | - * @throws SodiumException |
|
| 1169 | - * @throws TypeError |
|
| 1170 | - */ |
|
| 1171 | - public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) |
|
| 1172 | - { |
|
| 1173 | - /** @var string $mac */ |
|
| 1174 | - $mac = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1175 | - $ciphertext, |
|
| 1176 | - 0, |
|
| 1177 | - self::secretbox_xchacha20poly1305_MACBYTES |
|
| 1178 | - ); |
|
| 1179 | - |
|
| 1180 | - /** @var string $c */ |
|
| 1181 | - $c = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1182 | - $ciphertext, |
|
| 1183 | - self::secretbox_xchacha20poly1305_MACBYTES |
|
| 1184 | - ); |
|
| 1185 | - |
|
| 1186 | - /** @var int $clen */ |
|
| 1187 | - $clen = ParagonIE_Sodium_Core32_Util::strlen($c); |
|
| 1188 | - |
|
| 1189 | - /** @var string $subkey */ |
|
| 1190 | - $subkey = ParagonIE_Sodium_Core32_HChaCha20::hchacha20($nonce, $key); |
|
| 1191 | - |
|
| 1192 | - /** @var string $block0 */ |
|
| 1193 | - $block0 = ParagonIE_Sodium_Core32_ChaCha20::stream( |
|
| 1194 | - 64, |
|
| 1195 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1196 | - $subkey |
|
| 1197 | - ); |
|
| 1198 | - $verified = ParagonIE_Sodium_Core32_Poly1305::onetimeauth_verify( |
|
| 1199 | - $mac, |
|
| 1200 | - $c, |
|
| 1201 | - ParagonIE_Sodium_Core32_Util::substr($block0, 0, 32) |
|
| 1202 | - ); |
|
| 1203 | - |
|
| 1204 | - if (!$verified) { |
|
| 1205 | - try { |
|
| 1206 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1207 | - } catch (SodiumException $ex) { |
|
| 1208 | - $subkey = null; |
|
| 1209 | - } |
|
| 1210 | - throw new SodiumException('Invalid MAC'); |
|
| 1211 | - } |
|
| 1212 | - |
|
| 1213 | - /** @var string $m - Decrypted message */ |
|
| 1214 | - $m = ParagonIE_Sodium_Core32_Util::xorStrings( |
|
| 1215 | - ParagonIE_Sodium_Core32_Util::substr($block0, self::secretbox_xchacha20poly1305_ZEROBYTES), |
|
| 1216 | - ParagonIE_Sodium_Core32_Util::substr($c, 0, self::secretbox_xchacha20poly1305_ZEROBYTES) |
|
| 1217 | - ); |
|
| 1218 | - |
|
| 1219 | - if ($clen > self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1220 | - // We had more than 1 block, so let's continue to decrypt the rest. |
|
| 1221 | - $m .= ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 1222 | - ParagonIE_Sodium_Core32_Util::substr( |
|
| 1223 | - $c, |
|
| 1224 | - self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1225 | - ), |
|
| 1226 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1227 | - (string) $subkey, |
|
| 1228 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1229 | - ); |
|
| 1230 | - } |
|
| 1231 | - return $m; |
|
| 1232 | - } |
|
| 1233 | - |
|
| 1234 | - /** |
|
| 1235 | - * @param string $key |
|
| 1236 | - * @return array<int, string> Returns a state and a header. |
|
| 1237 | - * @throws Exception |
|
| 1238 | - * @throws SodiumException |
|
| 1239 | - */ |
|
| 1240 | - public static function secretstream_xchacha20poly1305_init_push($key) |
|
| 1241 | - { |
|
| 1242 | - # randombytes_buf(out, crypto_secretstream_xchacha20poly1305_HEADERBYTES); |
|
| 1243 | - $out = random_bytes(24); |
|
| 1244 | - |
|
| 1245 | - # crypto_core_hchacha20(state->k, out, k, NULL); |
|
| 1246 | - $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20($out, $key); |
|
| 1247 | - $state = new ParagonIE_Sodium_Core32_SecretStream_State( |
|
| 1248 | - $subkey, |
|
| 1249 | - ParagonIE_Sodium_Core32_Util::substr($out, 16, 8) . str_repeat("\0", 4) |
|
| 1250 | - ); |
|
| 1251 | - |
|
| 1252 | - # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
|
| 1253 | - $state->counterReset(); |
|
| 1254 | - |
|
| 1255 | - # memcpy(STATE_INONCE(state), out + crypto_core_hchacha20_INPUTBYTES, |
|
| 1256 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1257 | - # memset(state->_pad, 0, sizeof state->_pad); |
|
| 1258 | - return array( |
|
| 1259 | - $state->toString(), |
|
| 1260 | - $out |
|
| 1261 | - ); |
|
| 1262 | - } |
|
| 1263 | - |
|
| 1264 | - /** |
|
| 1265 | - * @param string $key |
|
| 1266 | - * @param string $header |
|
| 1267 | - * @return string Returns a state. |
|
| 1268 | - * @throws Exception |
|
| 1269 | - */ |
|
| 1270 | - public static function secretstream_xchacha20poly1305_init_pull($key, $header) |
|
| 1271 | - { |
|
| 1272 | - # crypto_core_hchacha20(state->k, in, k, NULL); |
|
| 1273 | - $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
|
| 1274 | - ParagonIE_Sodium_Core32_Util::substr($header, 0, 16), |
|
| 1275 | - $key |
|
| 1276 | - ); |
|
| 1277 | - $state = new ParagonIE_Sodium_Core32_SecretStream_State( |
|
| 1278 | - $subkey, |
|
| 1279 | - ParagonIE_Sodium_Core32_Util::substr($header, 16) |
|
| 1280 | - ); |
|
| 1281 | - $state->counterReset(); |
|
| 1282 | - # memcpy(STATE_INONCE(state), in + crypto_core_hchacha20_INPUTBYTES, |
|
| 1283 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1284 | - # memset(state->_pad, 0, sizeof state->_pad); |
|
| 1285 | - # return 0; |
|
| 1286 | - return $state->toString(); |
|
| 1287 | - } |
|
| 1288 | - |
|
| 1289 | - /** |
|
| 1290 | - * @param string $state |
|
| 1291 | - * @param string $msg |
|
| 1292 | - * @param string $aad |
|
| 1293 | - * @param int $tag |
|
| 1294 | - * @return string |
|
| 1295 | - * @throws SodiumException |
|
| 1296 | - */ |
|
| 1297 | - public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) |
|
| 1298 | - { |
|
| 1299 | - $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
|
| 1300 | - # crypto_onetimeauth_poly1305_state poly1305_state; |
|
| 1301 | - # unsigned char block[64U]; |
|
| 1302 | - # unsigned char slen[8U]; |
|
| 1303 | - # unsigned char *c; |
|
| 1304 | - # unsigned char *mac; |
|
| 1305 | - |
|
| 1306 | - $msglen = ParagonIE_Sodium_Core32_Util::strlen($msg); |
|
| 1307 | - $aadlen = ParagonIE_Sodium_Core32_Util::strlen($aad); |
|
| 1308 | - |
|
| 1309 | - if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1310 | - throw new SodiumException( |
|
| 1311 | - 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
|
| 1312 | - ); |
|
| 1313 | - } |
|
| 1314 | - |
|
| 1315 | - # if (outlen_p != NULL) { |
|
| 1316 | - # *outlen_p = 0U; |
|
| 1317 | - # } |
|
| 1318 | - # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
|
| 1319 | - # sodium_misuse(); |
|
| 1320 | - # } |
|
| 1321 | - |
|
| 1322 | - # crypto_stream_chacha20_ietf(block, sizeof block, state->nonce, state->k); |
|
| 1323 | - # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
|
| 1324 | - # sodium_memzero(block, sizeof block); |
|
| 1325 | - $auth = new ParagonIE_Sodium_Core32_Poly1305_State( |
|
| 1326 | - ParagonIE_Sodium_Core32_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1327 | - ); |
|
| 1328 | - |
|
| 1329 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
|
| 1330 | - $auth->update($aad); |
|
| 1331 | - |
|
| 1332 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
|
| 1333 | - # (0x10 - adlen) & 0xf); |
|
| 1334 | - $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1335 | - |
|
| 1336 | - # memset(block, 0, sizeof block); |
|
| 1337 | - # block[0] = tag; |
|
| 1338 | - # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
|
| 1339 | - # state->nonce, 1U, state->k); |
|
| 1340 | - $block = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1341 | - ParagonIE_Sodium_Core32_Util::intToChr($tag) . str_repeat("\0", 63), |
|
| 1342 | - $st->getCombinedNonce(), |
|
| 1343 | - $st->getKey(), |
|
| 1344 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1345 | - ); |
|
| 1346 | - |
|
| 1347 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
|
| 1348 | - $auth->update($block); |
|
| 1349 | - |
|
| 1350 | - # out[0] = block[0]; |
|
| 1351 | - $out = $block[0]; |
|
| 1352 | - # c = out + (sizeof tag); |
|
| 1353 | - # crypto_stream_chacha20_ietf_xor_ic(c, m, mlen, state->nonce, 2U, state->k); |
|
| 1354 | - $cipher = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1355 | - $msg, |
|
| 1356 | - $st->getCombinedNonce(), |
|
| 1357 | - $st->getKey(), |
|
| 1358 | - ParagonIE_Sodium_Core32_Util::store64_le(2) |
|
| 1359 | - ); |
|
| 1360 | - |
|
| 1361 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
|
| 1362 | - $auth->update($cipher); |
|
| 1363 | - |
|
| 1364 | - $out .= $cipher; |
|
| 1365 | - unset($cipher); |
|
| 1366 | - |
|
| 1367 | - # crypto_onetimeauth_poly1305_update |
|
| 1368 | - # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
|
| 1369 | - $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1370 | - |
|
| 1371 | - # STORE64_LE(slen, (uint64_t) adlen); |
|
| 1372 | - $slen = ParagonIE_Sodium_Core32_Util::store64_le($aadlen); |
|
| 1373 | - |
|
| 1374 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1375 | - $auth->update($slen); |
|
| 1376 | - |
|
| 1377 | - # STORE64_LE(slen, (sizeof block) + mlen); |
|
| 1378 | - $slen = ParagonIE_Sodium_Core32_Util::store64_le(64 + $msglen); |
|
| 1379 | - |
|
| 1380 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1381 | - $auth->update($slen); |
|
| 1382 | - |
|
| 1383 | - # mac = c + mlen; |
|
| 1384 | - # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
|
| 1385 | - $mac = $auth->finish(); |
|
| 1386 | - $out .= $mac; |
|
| 1387 | - |
|
| 1388 | - # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
|
| 1389 | - unset($auth); |
|
| 1390 | - |
|
| 1391 | - |
|
| 1392 | - # XOR_BUF(STATE_INONCE(state), mac, |
|
| 1393 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1394 | - $st->xorNonce($mac); |
|
| 1395 | - |
|
| 1396 | - # sodium_increment(STATE_COUNTER(state), |
|
| 1397 | - # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
|
| 1398 | - $st->incrementCounter(); |
|
| 1399 | - // Overwrite by reference: |
|
| 1400 | - $state = $st->toString(); |
|
| 1401 | - |
|
| 1402 | - /** @var bool $rekey */ |
|
| 1403 | - $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1404 | - # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
|
| 1405 | - # sodium_is_zero(STATE_COUNTER(state), |
|
| 1406 | - # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
|
| 1407 | - # crypto_secretstream_xchacha20poly1305_rekey(state); |
|
| 1408 | - # } |
|
| 1409 | - if ($rekey || $st->needsRekey()) { |
|
| 1410 | - // DO REKEY |
|
| 1411 | - self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1412 | - } |
|
| 1413 | - # if (outlen_p != NULL) { |
|
| 1414 | - # *outlen_p = crypto_secretstream_xchacha20poly1305_ABYTES + mlen; |
|
| 1415 | - # } |
|
| 1416 | - return $out; |
|
| 1417 | - } |
|
| 1418 | - |
|
| 1419 | - /** |
|
| 1420 | - * @param string $state |
|
| 1421 | - * @param string $cipher |
|
| 1422 | - * @param string $aad |
|
| 1423 | - * @return bool|array{0: string, 1: int} |
|
| 1424 | - * @throws SodiumException |
|
| 1425 | - */ |
|
| 1426 | - public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') |
|
| 1427 | - { |
|
| 1428 | - $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
|
| 1429 | - |
|
| 1430 | - $cipherlen = ParagonIE_Sodium_Core32_Util::strlen($cipher); |
|
| 1431 | - # mlen = inlen - crypto_secretstream_xchacha20poly1305_ABYTES; |
|
| 1432 | - $msglen = $cipherlen - ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_ABYTES; |
|
| 1433 | - $aadlen = ParagonIE_Sodium_Core32_Util::strlen($aad); |
|
| 1434 | - |
|
| 1435 | - # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
|
| 1436 | - # sodium_misuse(); |
|
| 1437 | - # } |
|
| 1438 | - if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1439 | - throw new SodiumException( |
|
| 1440 | - 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
|
| 1441 | - ); |
|
| 1442 | - } |
|
| 1443 | - |
|
| 1444 | - # crypto_stream_chacha20_ietf(block, sizeof block, state->nonce, state->k); |
|
| 1445 | - # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
|
| 1446 | - # sodium_memzero(block, sizeof block); |
|
| 1447 | - $auth = new ParagonIE_Sodium_Core32_Poly1305_State( |
|
| 1448 | - ParagonIE_Sodium_Core32_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1449 | - ); |
|
| 1450 | - |
|
| 1451 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
|
| 1452 | - $auth->update($aad); |
|
| 1453 | - |
|
| 1454 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
|
| 1455 | - # (0x10 - adlen) & 0xf); |
|
| 1456 | - $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1457 | - |
|
| 1458 | - |
|
| 1459 | - # memset(block, 0, sizeof block); |
|
| 1460 | - # block[0] = in[0]; |
|
| 1461 | - # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
|
| 1462 | - # state->nonce, 1U, state->k); |
|
| 1463 | - $block = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1464 | - $cipher[0] . str_repeat("\0", 63), |
|
| 1465 | - $st->getCombinedNonce(), |
|
| 1466 | - $st->getKey(), |
|
| 1467 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1468 | - ); |
|
| 1469 | - # tag = block[0]; |
|
| 1470 | - # block[0] = in[0]; |
|
| 1471 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
|
| 1472 | - $tag = ParagonIE_Sodium_Core32_Util::chrToInt($block[0]); |
|
| 1473 | - $block[0] = $cipher[0]; |
|
| 1474 | - $auth->update($block); |
|
| 1475 | - |
|
| 1476 | - |
|
| 1477 | - # c = in + (sizeof tag); |
|
| 1478 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
|
| 1479 | - $auth->update(ParagonIE_Sodium_Core32_Util::substr($cipher, 1, $msglen)); |
|
| 1480 | - |
|
| 1481 | - # crypto_onetimeauth_poly1305_update |
|
| 1482 | - # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
|
| 1483 | - $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1484 | - |
|
| 1485 | - # STORE64_LE(slen, (uint64_t) adlen); |
|
| 1486 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1487 | - $slen = ParagonIE_Sodium_Core32_Util::store64_le($aadlen); |
|
| 1488 | - $auth->update($slen); |
|
| 1489 | - |
|
| 1490 | - # STORE64_LE(slen, (sizeof block) + mlen); |
|
| 1491 | - # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1492 | - $slen = ParagonIE_Sodium_Core32_Util::store64_le(64 + $msglen); |
|
| 1493 | - $auth->update($slen); |
|
| 1494 | - |
|
| 1495 | - # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
|
| 1496 | - # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
|
| 1497 | - $mac = $auth->finish(); |
|
| 1498 | - |
|
| 1499 | - # stored_mac = c + mlen; |
|
| 1500 | - # if (sodium_memcmp(mac, stored_mac, sizeof mac) != 0) { |
|
| 1501 | - # sodium_memzero(mac, sizeof mac); |
|
| 1502 | - # return -1; |
|
| 1503 | - # } |
|
| 1504 | - |
|
| 1505 | - $stored = ParagonIE_Sodium_Core32_Util::substr($cipher, $msglen + 1, 16); |
|
| 1506 | - if (!ParagonIE_Sodium_Core32_Util::hashEquals($mac, $stored)) { |
|
| 1507 | - return false; |
|
| 1508 | - } |
|
| 1509 | - |
|
| 1510 | - # crypto_stream_chacha20_ietf_xor_ic(m, c, mlen, state->nonce, 2U, state->k); |
|
| 1511 | - $out = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1512 | - ParagonIE_Sodium_Core32_Util::substr($cipher, 1, $msglen), |
|
| 1513 | - $st->getCombinedNonce(), |
|
| 1514 | - $st->getKey(), |
|
| 1515 | - ParagonIE_Sodium_Core32_Util::store64_le(2) |
|
| 1516 | - ); |
|
| 1517 | - |
|
| 1518 | - # XOR_BUF(STATE_INONCE(state), mac, |
|
| 1519 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1520 | - $st->xorNonce($mac); |
|
| 1521 | - |
|
| 1522 | - # sodium_increment(STATE_COUNTER(state), |
|
| 1523 | - # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
|
| 1524 | - $st->incrementCounter(); |
|
| 1525 | - |
|
| 1526 | - # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
|
| 1527 | - # sodium_is_zero(STATE_COUNTER(state), |
|
| 1528 | - # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
|
| 1529 | - # crypto_secretstream_xchacha20poly1305_rekey(state); |
|
| 1530 | - # } |
|
| 1531 | - |
|
| 1532 | - // Overwrite by reference: |
|
| 1533 | - $state = $st->toString(); |
|
| 1534 | - |
|
| 1535 | - /** @var bool $rekey */ |
|
| 1536 | - $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1537 | - if ($rekey || $st->needsRekey()) { |
|
| 1538 | - // DO REKEY |
|
| 1539 | - self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1540 | - } |
|
| 1541 | - return array($out, $tag); |
|
| 1542 | - } |
|
| 1543 | - |
|
| 1544 | - /** |
|
| 1545 | - * @param string $state |
|
| 1546 | - * @return void |
|
| 1547 | - * @throws SodiumException |
|
| 1548 | - */ |
|
| 1549 | - public static function secretstream_xchacha20poly1305_rekey(&$state) |
|
| 1550 | - { |
|
| 1551 | - $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
|
| 1552 | - # unsigned char new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + |
|
| 1553 | - # crypto_secretstream_xchacha20poly1305_INONCEBYTES]; |
|
| 1554 | - # size_t i; |
|
| 1555 | - # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
|
| 1556 | - # new_key_and_inonce[i] = state->k[i]; |
|
| 1557 | - # } |
|
| 1558 | - $new_key_and_inonce = $st->getKey(); |
|
| 1559 | - |
|
| 1560 | - # for (i = 0U; i < crypto_secretstream_xchacha20poly1305_INONCEBYTES; i++) { |
|
| 1561 | - # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i] = |
|
| 1562 | - # STATE_INONCE(state)[i]; |
|
| 1563 | - # } |
|
| 1564 | - $new_key_and_inonce .= ParagonIE_Sodium_Core32_Util::substR($st->getNonce(), 0, 8); |
|
| 1565 | - |
|
| 1566 | - # crypto_stream_chacha20_ietf_xor(new_key_and_inonce, new_key_and_inonce, |
|
| 1567 | - # sizeof new_key_and_inonce, |
|
| 1568 | - # state->nonce, state->k); |
|
| 1569 | - |
|
| 1570 | - $st->rekey(ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1571 | - $new_key_and_inonce, |
|
| 1572 | - $st->getCombinedNonce(), |
|
| 1573 | - $st->getKey(), |
|
| 1574 | - ParagonIE_Sodium_Core32_Util::store64_le(0) |
|
| 1575 | - )); |
|
| 1576 | - |
|
| 1577 | - # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
|
| 1578 | - # state->k[i] = new_key_and_inonce[i]; |
|
| 1579 | - # } |
|
| 1580 | - # for (i = 0U; i < crypto_secretstream_xchacha20poly1305_INONCEBYTES; i++) { |
|
| 1581 | - # STATE_INONCE(state)[i] = |
|
| 1582 | - # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i]; |
|
| 1583 | - # } |
|
| 1584 | - # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
|
| 1585 | - $st->counterReset(); |
|
| 1586 | - |
|
| 1587 | - $state = $st->toString(); |
|
| 1588 | - } |
|
| 1589 | - |
|
| 1590 | - /** |
|
| 1591 | - * Detached Ed25519 signature. |
|
| 1592 | - * |
|
| 1593 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1594 | - * |
|
| 1595 | - * @param string $message |
|
| 1596 | - * @param string $sk |
|
| 1597 | - * @return string |
|
| 1598 | - * @throws SodiumException |
|
| 1599 | - * @throws TypeError |
|
| 1600 | - */ |
|
| 1601 | - public static function sign_detached($message, $sk) |
|
| 1602 | - { |
|
| 1603 | - return ParagonIE_Sodium_Core32_Ed25519::sign_detached($message, $sk); |
|
| 1604 | - } |
|
| 1605 | - |
|
| 1606 | - /** |
|
| 1607 | - * Attached Ed25519 signature. (Returns a signed message.) |
|
| 1608 | - * |
|
| 1609 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1610 | - * |
|
| 1611 | - * @param string $message |
|
| 1612 | - * @param string $sk |
|
| 1613 | - * @return string |
|
| 1614 | - * @throws SodiumException |
|
| 1615 | - * @throws TypeError |
|
| 1616 | - */ |
|
| 1617 | - public static function sign($message, $sk) |
|
| 1618 | - { |
|
| 1619 | - return ParagonIE_Sodium_Core32_Ed25519::sign($message, $sk); |
|
| 1620 | - } |
|
| 1621 | - |
|
| 1622 | - /** |
|
| 1623 | - * Opens a signed message. If valid, returns the message. |
|
| 1624 | - * |
|
| 1625 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1626 | - * |
|
| 1627 | - * @param string $signedMessage |
|
| 1628 | - * @param string $pk |
|
| 1629 | - * @return string |
|
| 1630 | - * @throws SodiumException |
|
| 1631 | - * @throws TypeError |
|
| 1632 | - */ |
|
| 1633 | - public static function sign_open($signedMessage, $pk) |
|
| 1634 | - { |
|
| 1635 | - return ParagonIE_Sodium_Core32_Ed25519::sign_open($signedMessage, $pk); |
|
| 1636 | - } |
|
| 1637 | - |
|
| 1638 | - /** |
|
| 1639 | - * Verify a detached signature of a given message and public key. |
|
| 1640 | - * |
|
| 1641 | - * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1642 | - * |
|
| 1643 | - * @param string $signature |
|
| 1644 | - * @param string $message |
|
| 1645 | - * @param string $pk |
|
| 1646 | - * @return bool |
|
| 1647 | - * @throws SodiumException |
|
| 1648 | - * @throws TypeError |
|
| 1649 | - */ |
|
| 1650 | - public static function sign_verify_detached($signature, $message, $pk) |
|
| 1651 | - { |
|
| 1652 | - return ParagonIE_Sodium_Core32_Ed25519::verify_detached($signature, $message, $pk); |
|
| 1653 | - } |
|
| 17 | + const aead_chacha20poly1305_KEYBYTES = 32; |
|
| 18 | + const aead_chacha20poly1305_NSECBYTES = 0; |
|
| 19 | + const aead_chacha20poly1305_NPUBBYTES = 8; |
|
| 20 | + const aead_chacha20poly1305_ABYTES = 16; |
|
| 21 | + |
|
| 22 | + const aead_chacha20poly1305_IETF_KEYBYTES = 32; |
|
| 23 | + const aead_chacha20poly1305_IETF_NSECBYTES = 0; |
|
| 24 | + const aead_chacha20poly1305_IETF_NPUBBYTES = 12; |
|
| 25 | + const aead_chacha20poly1305_IETF_ABYTES = 16; |
|
| 26 | + |
|
| 27 | + const aead_xchacha20poly1305_IETF_KEYBYTES = 32; |
|
| 28 | + const aead_xchacha20poly1305_IETF_NSECBYTES = 0; |
|
| 29 | + const aead_xchacha20poly1305_IETF_NPUBBYTES = 24; |
|
| 30 | + const aead_xchacha20poly1305_IETF_ABYTES = 16; |
|
| 31 | + |
|
| 32 | + const box_curve25519xsalsa20poly1305_SEEDBYTES = 32; |
|
| 33 | + const box_curve25519xsalsa20poly1305_PUBLICKEYBYTES = 32; |
|
| 34 | + const box_curve25519xsalsa20poly1305_SECRETKEYBYTES = 32; |
|
| 35 | + const box_curve25519xsalsa20poly1305_BEFORENMBYTES = 32; |
|
| 36 | + const box_curve25519xsalsa20poly1305_NONCEBYTES = 24; |
|
| 37 | + const box_curve25519xsalsa20poly1305_MACBYTES = 16; |
|
| 38 | + const box_curve25519xsalsa20poly1305_BOXZEROBYTES = 16; |
|
| 39 | + const box_curve25519xsalsa20poly1305_ZEROBYTES = 32; |
|
| 40 | + |
|
| 41 | + const onetimeauth_poly1305_BYTES = 16; |
|
| 42 | + const onetimeauth_poly1305_KEYBYTES = 32; |
|
| 43 | + |
|
| 44 | + const secretbox_xsalsa20poly1305_KEYBYTES = 32; |
|
| 45 | + const secretbox_xsalsa20poly1305_NONCEBYTES = 24; |
|
| 46 | + const secretbox_xsalsa20poly1305_MACBYTES = 16; |
|
| 47 | + const secretbox_xsalsa20poly1305_BOXZEROBYTES = 16; |
|
| 48 | + const secretbox_xsalsa20poly1305_ZEROBYTES = 32; |
|
| 49 | + |
|
| 50 | + const secretbox_xchacha20poly1305_KEYBYTES = 32; |
|
| 51 | + const secretbox_xchacha20poly1305_NONCEBYTES = 24; |
|
| 52 | + const secretbox_xchacha20poly1305_MACBYTES = 16; |
|
| 53 | + const secretbox_xchacha20poly1305_BOXZEROBYTES = 16; |
|
| 54 | + const secretbox_xchacha20poly1305_ZEROBYTES = 32; |
|
| 55 | + |
|
| 56 | + const stream_salsa20_KEYBYTES = 32; |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * AEAD Decryption with ChaCha20-Poly1305 |
|
| 60 | + * |
|
| 61 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 62 | + * |
|
| 63 | + * @param string $message |
|
| 64 | + * @param string $ad |
|
| 65 | + * @param string $nonce |
|
| 66 | + * @param string $key |
|
| 67 | + * @return string |
|
| 68 | + * @throws SodiumException |
|
| 69 | + * @throws TypeError |
|
| 70 | + */ |
|
| 71 | + public static function aead_chacha20poly1305_decrypt( |
|
| 72 | + $message = '', |
|
| 73 | + $ad = '', |
|
| 74 | + $nonce = '', |
|
| 75 | + $key = '' |
|
| 76 | + ) { |
|
| 77 | + /** @var int $len - Length of message (ciphertext + MAC) */ |
|
| 78 | + $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 79 | + |
|
| 80 | + /** @var int $clen - Length of ciphertext */ |
|
| 81 | + $clen = $len - self::aead_chacha20poly1305_ABYTES; |
|
| 82 | + |
|
| 83 | + /** @var int $adlen - Length of associated data */ |
|
| 84 | + $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 85 | + |
|
| 86 | + /** @var string $mac - Message authentication code */ |
|
| 87 | + $mac = ParagonIE_Sodium_Core32_Util::substr( |
|
| 88 | + $message, |
|
| 89 | + $clen, |
|
| 90 | + self::aead_chacha20poly1305_ABYTES |
|
| 91 | + ); |
|
| 92 | + |
|
| 93 | + /** @var string $ciphertext - The encrypted message (sans MAC) */ |
|
| 94 | + $ciphertext = ParagonIE_Sodium_Core32_Util::substr($message, 0, $clen); |
|
| 95 | + |
|
| 96 | + /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 97 | + $block0 = ParagonIE_Sodium_Core32_ChaCha20::stream( |
|
| 98 | + 32, |
|
| 99 | + $nonce, |
|
| 100 | + $key |
|
| 101 | + ); |
|
| 102 | + |
|
| 103 | + /* Recalculate the Poly1305 authentication tag (MAC): */ |
|
| 104 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 105 | + try { |
|
| 106 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 107 | + } catch (SodiumException $ex) { |
|
| 108 | + $block0 = null; |
|
| 109 | + } |
|
| 110 | + $state->update($ad); |
|
| 111 | + $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 112 | + $state->update($ciphertext); |
|
| 113 | + $state->update(ParagonIE_Sodium_Core32_Util::store64_le($clen)); |
|
| 114 | + $computed_mac = $state->finish(); |
|
| 115 | + |
|
| 116 | + /* Compare the given MAC with the recalculated MAC: */ |
|
| 117 | + if (!ParagonIE_Sodium_Core32_Util::verify_16($computed_mac, $mac)) { |
|
| 118 | + throw new SodiumException('Invalid MAC'); |
|
| 119 | + } |
|
| 120 | + |
|
| 121 | + // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
|
| 122 | + return ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 123 | + $ciphertext, |
|
| 124 | + $nonce, |
|
| 125 | + $key, |
|
| 126 | + ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 127 | + ); |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + /** |
|
| 131 | + * AEAD Encryption with ChaCha20-Poly1305 |
|
| 132 | + * |
|
| 133 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 134 | + * |
|
| 135 | + * @param string $message |
|
| 136 | + * @param string $ad |
|
| 137 | + * @param string $nonce |
|
| 138 | + * @param string $key |
|
| 139 | + * @return string |
|
| 140 | + * @throws SodiumException |
|
| 141 | + * @throws TypeError |
|
| 142 | + */ |
|
| 143 | + public static function aead_chacha20poly1305_encrypt( |
|
| 144 | + $message = '', |
|
| 145 | + $ad = '', |
|
| 146 | + $nonce = '', |
|
| 147 | + $key = '' |
|
| 148 | + ) { |
|
| 149 | + /** @var int $len - Length of the plaintext message */ |
|
| 150 | + $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 151 | + |
|
| 152 | + /** @var int $adlen - Length of the associated data */ |
|
| 153 | + $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 154 | + |
|
| 155 | + /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 156 | + $block0 = ParagonIE_Sodium_Core32_ChaCha20::stream( |
|
| 157 | + 32, |
|
| 158 | + $nonce, |
|
| 159 | + $key |
|
| 160 | + ); |
|
| 161 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 162 | + try { |
|
| 163 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 164 | + } catch (SodiumException $ex) { |
|
| 165 | + $block0 = null; |
|
| 166 | + } |
|
| 167 | + |
|
| 168 | + /** @var string $ciphertext - Raw encrypted data */ |
|
| 169 | + $ciphertext = ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 170 | + $message, |
|
| 171 | + $nonce, |
|
| 172 | + $key, |
|
| 173 | + ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 174 | + ); |
|
| 175 | + |
|
| 176 | + $state->update($ad); |
|
| 177 | + $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 178 | + $state->update($ciphertext); |
|
| 179 | + $state->update(ParagonIE_Sodium_Core32_Util::store64_le($len)); |
|
| 180 | + return $ciphertext . $state->finish(); |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + /** |
|
| 184 | + * AEAD Decryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 185 | + * |
|
| 186 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 187 | + * |
|
| 188 | + * @param string $message |
|
| 189 | + * @param string $ad |
|
| 190 | + * @param string $nonce |
|
| 191 | + * @param string $key |
|
| 192 | + * @return string |
|
| 193 | + * @throws SodiumException |
|
| 194 | + * @throws TypeError |
|
| 195 | + */ |
|
| 196 | + public static function aead_chacha20poly1305_ietf_decrypt( |
|
| 197 | + $message = '', |
|
| 198 | + $ad = '', |
|
| 199 | + $nonce = '', |
|
| 200 | + $key = '' |
|
| 201 | + ) { |
|
| 202 | + /** @var int $adlen - Length of associated data */ |
|
| 203 | + $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 204 | + |
|
| 205 | + /** @var int $len - Length of message (ciphertext + MAC) */ |
|
| 206 | + $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 207 | + |
|
| 208 | + /** @var int $clen - Length of ciphertext */ |
|
| 209 | + $clen = $len - self::aead_chacha20poly1305_IETF_ABYTES; |
|
| 210 | + |
|
| 211 | + /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 212 | + $block0 = ParagonIE_Sodium_Core32_ChaCha20::ietfStream( |
|
| 213 | + 32, |
|
| 214 | + $nonce, |
|
| 215 | + $key |
|
| 216 | + ); |
|
| 217 | + |
|
| 218 | + /** @var string $mac - Message authentication code */ |
|
| 219 | + $mac = ParagonIE_Sodium_Core32_Util::substr( |
|
| 220 | + $message, |
|
| 221 | + $len - self::aead_chacha20poly1305_IETF_ABYTES, |
|
| 222 | + self::aead_chacha20poly1305_IETF_ABYTES |
|
| 223 | + ); |
|
| 224 | + |
|
| 225 | + /** @var string $ciphertext - The encrypted message (sans MAC) */ |
|
| 226 | + $ciphertext = ParagonIE_Sodium_Core32_Util::substr( |
|
| 227 | + $message, |
|
| 228 | + 0, |
|
| 229 | + $len - self::aead_chacha20poly1305_IETF_ABYTES |
|
| 230 | + ); |
|
| 231 | + |
|
| 232 | + /* Recalculate the Poly1305 authentication tag (MAC): */ |
|
| 233 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 234 | + try { |
|
| 235 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 236 | + } catch (SodiumException $ex) { |
|
| 237 | + $block0 = null; |
|
| 238 | + } |
|
| 239 | + $state->update($ad); |
|
| 240 | + $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 241 | + $state->update($ciphertext); |
|
| 242 | + $state->update(str_repeat("\x00", (0x10 - $clen) & 0xf)); |
|
| 243 | + $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 244 | + $state->update(ParagonIE_Sodium_Core32_Util::store64_le($clen)); |
|
| 245 | + $computed_mac = $state->finish(); |
|
| 246 | + |
|
| 247 | + /* Compare the given MAC with the recalculated MAC: */ |
|
| 248 | + if (!ParagonIE_Sodium_Core32_Util::verify_16($computed_mac, $mac)) { |
|
| 249 | + throw new SodiumException('Invalid MAC'); |
|
| 250 | + } |
|
| 251 | + |
|
| 252 | + // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
|
| 253 | + return ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 254 | + $ciphertext, |
|
| 255 | + $nonce, |
|
| 256 | + $key, |
|
| 257 | + ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 258 | + ); |
|
| 259 | + } |
|
| 260 | + |
|
| 261 | + /** |
|
| 262 | + * AEAD Encryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 263 | + * |
|
| 264 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 265 | + * |
|
| 266 | + * @param string $message |
|
| 267 | + * @param string $ad |
|
| 268 | + * @param string $nonce |
|
| 269 | + * @param string $key |
|
| 270 | + * @return string |
|
| 271 | + * @throws SodiumException |
|
| 272 | + * @throws TypeError |
|
| 273 | + */ |
|
| 274 | + public static function aead_chacha20poly1305_ietf_encrypt( |
|
| 275 | + $message = '', |
|
| 276 | + $ad = '', |
|
| 277 | + $nonce = '', |
|
| 278 | + $key = '' |
|
| 279 | + ) { |
|
| 280 | + /** @var int $len - Length of the plaintext message */ |
|
| 281 | + $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 282 | + |
|
| 283 | + /** @var int $adlen - Length of the associated data */ |
|
| 284 | + $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 285 | + |
|
| 286 | + /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
|
| 287 | + $block0 = ParagonIE_Sodium_Core32_ChaCha20::ietfStream( |
|
| 288 | + 32, |
|
| 289 | + $nonce, |
|
| 290 | + $key |
|
| 291 | + ); |
|
| 292 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 293 | + try { |
|
| 294 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 295 | + } catch (SodiumException $ex) { |
|
| 296 | + $block0 = null; |
|
| 297 | + } |
|
| 298 | + |
|
| 299 | + /** @var string $ciphertext - Raw encrypted data */ |
|
| 300 | + $ciphertext = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 301 | + $message, |
|
| 302 | + $nonce, |
|
| 303 | + $key, |
|
| 304 | + ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 305 | + ); |
|
| 306 | + |
|
| 307 | + $state->update($ad); |
|
| 308 | + $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 309 | + $state->update($ciphertext); |
|
| 310 | + $state->update(str_repeat("\x00", ((0x10 - $len) & 0xf))); |
|
| 311 | + $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 312 | + $state->update(ParagonIE_Sodium_Core32_Util::store64_le($len)); |
|
| 313 | + return $ciphertext . $state->finish(); |
|
| 314 | + } |
|
| 315 | + |
|
| 316 | + /** |
|
| 317 | + * AEAD Decryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 318 | + * |
|
| 319 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 320 | + * |
|
| 321 | + * @param string $message |
|
| 322 | + * @param string $ad |
|
| 323 | + * @param string $nonce |
|
| 324 | + * @param string $key |
|
| 325 | + * @return string |
|
| 326 | + * @throws SodiumException |
|
| 327 | + * @throws TypeError |
|
| 328 | + */ |
|
| 329 | + public static function aead_xchacha20poly1305_ietf_decrypt( |
|
| 330 | + $message = '', |
|
| 331 | + $ad = '', |
|
| 332 | + $nonce = '', |
|
| 333 | + $key = '' |
|
| 334 | + ) { |
|
| 335 | + $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
|
| 336 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
|
| 337 | + $key |
|
| 338 | + ); |
|
| 339 | + $nonceLast = "\x00\x00\x00\x00" . |
|
| 340 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8); |
|
| 341 | + |
|
| 342 | + return self::aead_chacha20poly1305_ietf_decrypt($message, $ad, $nonceLast, $subkey); |
|
| 343 | + } |
|
| 344 | + |
|
| 345 | + /** |
|
| 346 | + * AEAD Encryption with ChaCha20-Poly1305, IETF mode (96-bit nonce) |
|
| 347 | + * |
|
| 348 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 349 | + * |
|
| 350 | + * @param string $message |
|
| 351 | + * @param string $ad |
|
| 352 | + * @param string $nonce |
|
| 353 | + * @param string $key |
|
| 354 | + * @return string |
|
| 355 | + * @throws SodiumException |
|
| 356 | + * @throws TypeError |
|
| 357 | + */ |
|
| 358 | + public static function aead_xchacha20poly1305_ietf_encrypt( |
|
| 359 | + $message = '', |
|
| 360 | + $ad = '', |
|
| 361 | + $nonce = '', |
|
| 362 | + $key = '' |
|
| 363 | + ) { |
|
| 364 | + $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
|
| 365 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
|
| 366 | + $key |
|
| 367 | + ); |
|
| 368 | + $nonceLast = "\x00\x00\x00\x00" . |
|
| 369 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8); |
|
| 370 | + |
|
| 371 | + return self::aead_chacha20poly1305_ietf_encrypt($message, $ad, $nonceLast, $subkey); |
|
| 372 | + } |
|
| 373 | + |
|
| 374 | + /** |
|
| 375 | + * HMAC-SHA-512-256 (a.k.a. the leftmost 256 bits of HMAC-SHA-512) |
|
| 376 | + * |
|
| 377 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 378 | + * |
|
| 379 | + * @param string $message |
|
| 380 | + * @param string $key |
|
| 381 | + * @return string |
|
| 382 | + * @throws TypeError |
|
| 383 | + */ |
|
| 384 | + public static function auth($message, $key) |
|
| 385 | + { |
|
| 386 | + return ParagonIE_Sodium_Core32_Util::substr( |
|
| 387 | + hash_hmac('sha512', $message, $key, true), |
|
| 388 | + 0, |
|
| 389 | + 32 |
|
| 390 | + ); |
|
| 391 | + } |
|
| 392 | + |
|
| 393 | + /** |
|
| 394 | + * HMAC-SHA-512-256 validation. Constant-time via hash_equals(). |
|
| 395 | + * |
|
| 396 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 397 | + * |
|
| 398 | + * @param string $mac |
|
| 399 | + * @param string $message |
|
| 400 | + * @param string $key |
|
| 401 | + * @return bool |
|
| 402 | + * @throws SodiumException |
|
| 403 | + * @throws TypeError |
|
| 404 | + */ |
|
| 405 | + public static function auth_verify($mac, $message, $key) |
|
| 406 | + { |
|
| 407 | + return ParagonIE_Sodium_Core32_Util::hashEquals( |
|
| 408 | + $mac, |
|
| 409 | + self::auth($message, $key) |
|
| 410 | + ); |
|
| 411 | + } |
|
| 412 | + |
|
| 413 | + /** |
|
| 414 | + * X25519 key exchange followed by XSalsa20Poly1305 symmetric encryption |
|
| 415 | + * |
|
| 416 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 417 | + * |
|
| 418 | + * @param string $plaintext |
|
| 419 | + * @param string $nonce |
|
| 420 | + * @param string $keypair |
|
| 421 | + * @return string |
|
| 422 | + * @throws SodiumException |
|
| 423 | + * @throws TypeError |
|
| 424 | + */ |
|
| 425 | + public static function box($plaintext, $nonce, $keypair) |
|
| 426 | + { |
|
| 427 | + return self::secretbox( |
|
| 428 | + $plaintext, |
|
| 429 | + $nonce, |
|
| 430 | + self::box_beforenm( |
|
| 431 | + self::box_secretkey($keypair), |
|
| 432 | + self::box_publickey($keypair) |
|
| 433 | + ) |
|
| 434 | + ); |
|
| 435 | + } |
|
| 436 | + |
|
| 437 | + /** |
|
| 438 | + * X25519-XSalsa20-Poly1305 with one ephemeral X25519 keypair. |
|
| 439 | + * |
|
| 440 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 441 | + * |
|
| 442 | + * @param string $message |
|
| 443 | + * @param string $publicKey |
|
| 444 | + * @return string |
|
| 445 | + * @throws SodiumException |
|
| 446 | + * @throws TypeError |
|
| 447 | + */ |
|
| 448 | + public static function box_seal($message, $publicKey) |
|
| 449 | + { |
|
| 450 | + /** @var string $ephemeralKeypair */ |
|
| 451 | + $ephemeralKeypair = self::box_keypair(); |
|
| 452 | + |
|
| 453 | + /** @var string $ephemeralSK */ |
|
| 454 | + $ephemeralSK = self::box_secretkey($ephemeralKeypair); |
|
| 455 | + |
|
| 456 | + /** @var string $ephemeralPK */ |
|
| 457 | + $ephemeralPK = self::box_publickey($ephemeralKeypair); |
|
| 458 | + |
|
| 459 | + /** @var string $nonce */ |
|
| 460 | + $nonce = self::generichash( |
|
| 461 | + $ephemeralPK . $publicKey, |
|
| 462 | + '', |
|
| 463 | + 24 |
|
| 464 | + ); |
|
| 465 | + |
|
| 466 | + /** @var string $keypair - The combined keypair used in crypto_box() */ |
|
| 467 | + $keypair = self::box_keypair_from_secretkey_and_publickey($ephemeralSK, $publicKey); |
|
| 468 | + |
|
| 469 | + /** @var string $ciphertext Ciphertext + MAC from crypto_box */ |
|
| 470 | + $ciphertext = self::box($message, $nonce, $keypair); |
|
| 471 | + try { |
|
| 472 | + ParagonIE_Sodium_Compat::memzero($ephemeralKeypair); |
|
| 473 | + ParagonIE_Sodium_Compat::memzero($ephemeralSK); |
|
| 474 | + ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 475 | + } catch (SodiumException $ex) { |
|
| 476 | + $ephemeralKeypair = null; |
|
| 477 | + $ephemeralSK = null; |
|
| 478 | + $nonce = null; |
|
| 479 | + } |
|
| 480 | + return $ephemeralPK . $ciphertext; |
|
| 481 | + } |
|
| 482 | + |
|
| 483 | + /** |
|
| 484 | + * Opens a message encrypted via box_seal(). |
|
| 485 | + * |
|
| 486 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 487 | + * |
|
| 488 | + * @param string $message |
|
| 489 | + * @param string $keypair |
|
| 490 | + * @return string |
|
| 491 | + * @throws SodiumException |
|
| 492 | + * @throws TypeError |
|
| 493 | + */ |
|
| 494 | + public static function box_seal_open($message, $keypair) |
|
| 495 | + { |
|
| 496 | + /** @var string $ephemeralPK */ |
|
| 497 | + $ephemeralPK = ParagonIE_Sodium_Core32_Util::substr($message, 0, 32); |
|
| 498 | + |
|
| 499 | + /** @var string $ciphertext (ciphertext + MAC) */ |
|
| 500 | + $ciphertext = ParagonIE_Sodium_Core32_Util::substr($message, 32); |
|
| 501 | + |
|
| 502 | + /** @var string $secretKey */ |
|
| 503 | + $secretKey = self::box_secretkey($keypair); |
|
| 504 | + |
|
| 505 | + /** @var string $publicKey */ |
|
| 506 | + $publicKey = self::box_publickey($keypair); |
|
| 507 | + |
|
| 508 | + /** @var string $nonce */ |
|
| 509 | + $nonce = self::generichash( |
|
| 510 | + $ephemeralPK . $publicKey, |
|
| 511 | + '', |
|
| 512 | + 24 |
|
| 513 | + ); |
|
| 514 | + |
|
| 515 | + /** @var string $keypair */ |
|
| 516 | + $keypair = self::box_keypair_from_secretkey_and_publickey($secretKey, $ephemeralPK); |
|
| 517 | + |
|
| 518 | + /** @var string $m */ |
|
| 519 | + $m = self::box_open($ciphertext, $nonce, $keypair); |
|
| 520 | + try { |
|
| 521 | + ParagonIE_Sodium_Compat::memzero($secretKey); |
|
| 522 | + ParagonIE_Sodium_Compat::memzero($ephemeralPK); |
|
| 523 | + ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 524 | + } catch (SodiumException $ex) { |
|
| 525 | + $secretKey = null; |
|
| 526 | + $ephemeralPK = null; |
|
| 527 | + $nonce = null; |
|
| 528 | + } |
|
| 529 | + return $m; |
|
| 530 | + } |
|
| 531 | + |
|
| 532 | + /** |
|
| 533 | + * Used by crypto_box() to get the crypto_secretbox() key. |
|
| 534 | + * |
|
| 535 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 536 | + * |
|
| 537 | + * @param string $sk |
|
| 538 | + * @param string $pk |
|
| 539 | + * @return string |
|
| 540 | + * @throws SodiumException |
|
| 541 | + * @throws TypeError |
|
| 542 | + */ |
|
| 543 | + public static function box_beforenm($sk, $pk) |
|
| 544 | + { |
|
| 545 | + return ParagonIE_Sodium_Core32_HSalsa20::hsalsa20( |
|
| 546 | + str_repeat("\x00", 16), |
|
| 547 | + self::scalarmult($sk, $pk) |
|
| 548 | + ); |
|
| 549 | + } |
|
| 550 | + |
|
| 551 | + /** |
|
| 552 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 553 | + * |
|
| 554 | + * @return string |
|
| 555 | + * @throws Exception |
|
| 556 | + * @throws SodiumException |
|
| 557 | + * @throws TypeError |
|
| 558 | + */ |
|
| 559 | + public static function box_keypair() |
|
| 560 | + { |
|
| 561 | + $sKey = random_bytes(32); |
|
| 562 | + $pKey = self::scalarmult_base($sKey); |
|
| 563 | + return $sKey . $pKey; |
|
| 564 | + } |
|
| 565 | + |
|
| 566 | + /** |
|
| 567 | + * @param string $seed |
|
| 568 | + * @return string |
|
| 569 | + * @throws SodiumException |
|
| 570 | + * @throws TypeError |
|
| 571 | + */ |
|
| 572 | + public static function box_seed_keypair($seed) |
|
| 573 | + { |
|
| 574 | + $sKey = ParagonIE_Sodium_Core32_Util::substr( |
|
| 575 | + hash('sha512', $seed, true), |
|
| 576 | + 0, |
|
| 577 | + 32 |
|
| 578 | + ); |
|
| 579 | + $pKey = self::scalarmult_base($sKey); |
|
| 580 | + return $sKey . $pKey; |
|
| 581 | + } |
|
| 582 | + |
|
| 583 | + /** |
|
| 584 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 585 | + * |
|
| 586 | + * @param string $sKey |
|
| 587 | + * @param string $pKey |
|
| 588 | + * @return string |
|
| 589 | + * @throws TypeError |
|
| 590 | + */ |
|
| 591 | + public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) |
|
| 592 | + { |
|
| 593 | + return ParagonIE_Sodium_Core32_Util::substr($sKey, 0, 32) . |
|
| 594 | + ParagonIE_Sodium_Core32_Util::substr($pKey, 0, 32); |
|
| 595 | + } |
|
| 596 | + |
|
| 597 | + /** |
|
| 598 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 599 | + * |
|
| 600 | + * @param string $keypair |
|
| 601 | + * @return string |
|
| 602 | + * @throws RangeException |
|
| 603 | + * @throws TypeError |
|
| 604 | + */ |
|
| 605 | + public static function box_secretkey($keypair) |
|
| 606 | + { |
|
| 607 | + if (ParagonIE_Sodium_Core32_Util::strlen($keypair) !== 64) { |
|
| 608 | + throw new RangeException( |
|
| 609 | + 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
|
| 610 | + ); |
|
| 611 | + } |
|
| 612 | + return ParagonIE_Sodium_Core32_Util::substr($keypair, 0, 32); |
|
| 613 | + } |
|
| 614 | + |
|
| 615 | + /** |
|
| 616 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 617 | + * |
|
| 618 | + * @param string $keypair |
|
| 619 | + * @return string |
|
| 620 | + * @throws RangeException |
|
| 621 | + * @throws TypeError |
|
| 622 | + */ |
|
| 623 | + public static function box_publickey($keypair) |
|
| 624 | + { |
|
| 625 | + if (ParagonIE_Sodium_Core32_Util::strlen($keypair) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES) { |
|
| 626 | + throw new RangeException( |
|
| 627 | + 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
|
| 628 | + ); |
|
| 629 | + } |
|
| 630 | + return ParagonIE_Sodium_Core32_Util::substr($keypair, 32, 32); |
|
| 631 | + } |
|
| 632 | + |
|
| 633 | + /** |
|
| 634 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 635 | + * |
|
| 636 | + * @param string $sKey |
|
| 637 | + * @return string |
|
| 638 | + * @throws RangeException |
|
| 639 | + * @throws SodiumException |
|
| 640 | + * @throws TypeError |
|
| 641 | + */ |
|
| 642 | + public static function box_publickey_from_secretkey($sKey) |
|
| 643 | + { |
|
| 644 | + if (ParagonIE_Sodium_Core32_Util::strlen($sKey) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES) { |
|
| 645 | + throw new RangeException( |
|
| 646 | + 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES bytes long.' |
|
| 647 | + ); |
|
| 648 | + } |
|
| 649 | + return self::scalarmult_base($sKey); |
|
| 650 | + } |
|
| 651 | + |
|
| 652 | + /** |
|
| 653 | + * Decrypt a message encrypted with box(). |
|
| 654 | + * |
|
| 655 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 656 | + * |
|
| 657 | + * @param string $ciphertext |
|
| 658 | + * @param string $nonce |
|
| 659 | + * @param string $keypair |
|
| 660 | + * @return string |
|
| 661 | + * @throws SodiumException |
|
| 662 | + * @throws TypeError |
|
| 663 | + */ |
|
| 664 | + public static function box_open($ciphertext, $nonce, $keypair) |
|
| 665 | + { |
|
| 666 | + return self::secretbox_open( |
|
| 667 | + $ciphertext, |
|
| 668 | + $nonce, |
|
| 669 | + self::box_beforenm( |
|
| 670 | + self::box_secretkey($keypair), |
|
| 671 | + self::box_publickey($keypair) |
|
| 672 | + ) |
|
| 673 | + ); |
|
| 674 | + } |
|
| 675 | + |
|
| 676 | + /** |
|
| 677 | + * Calculate a BLAKE2b hash. |
|
| 678 | + * |
|
| 679 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 680 | + * |
|
| 681 | + * @param string $message |
|
| 682 | + * @param string|null $key |
|
| 683 | + * @param int $outlen |
|
| 684 | + * @return string |
|
| 685 | + * @throws RangeException |
|
| 686 | + * @throws SodiumException |
|
| 687 | + * @throws TypeError |
|
| 688 | + */ |
|
| 689 | + public static function generichash($message, $key = '', $outlen = 32) |
|
| 690 | + { |
|
| 691 | + // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
|
| 692 | + ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
|
| 693 | + |
|
| 694 | + $k = null; |
|
| 695 | + if (!empty($key)) { |
|
| 696 | + /** @var SplFixedArray $k */ |
|
| 697 | + $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($key); |
|
| 698 | + if ($k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES) { |
|
| 699 | + throw new RangeException('Invalid key size'); |
|
| 700 | + } |
|
| 701 | + } |
|
| 702 | + |
|
| 703 | + /** @var SplFixedArray $in */ |
|
| 704 | + $in = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($message); |
|
| 705 | + |
|
| 706 | + /** @var SplFixedArray $ctx */ |
|
| 707 | + $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init($k, $outlen); |
|
| 708 | + ParagonIE_Sodium_Core32_BLAKE2b::update($ctx, $in, $in->count()); |
|
| 709 | + |
|
| 710 | + /** @var SplFixedArray $out */ |
|
| 711 | + $out = new SplFixedArray($outlen); |
|
| 712 | + $out = ParagonIE_Sodium_Core32_BLAKE2b::finish($ctx, $out); |
|
| 713 | + |
|
| 714 | + /** @var array<int, int> */ |
|
| 715 | + $outArray = $out->toArray(); |
|
| 716 | + return ParagonIE_Sodium_Core32_Util::intArrayToString($outArray); |
|
| 717 | + } |
|
| 718 | + |
|
| 719 | + /** |
|
| 720 | + * Finalize a BLAKE2b hashing context, returning the hash. |
|
| 721 | + * |
|
| 722 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 723 | + * |
|
| 724 | + * @param string $ctx |
|
| 725 | + * @param int $outlen |
|
| 726 | + * @return string |
|
| 727 | + * @throws SodiumException |
|
| 728 | + * @throws TypeError |
|
| 729 | + */ |
|
| 730 | + public static function generichash_final($ctx, $outlen = 32) |
|
| 731 | + { |
|
| 732 | + if (!is_string($ctx)) { |
|
| 733 | + throw new TypeError('Context must be a string'); |
|
| 734 | + } |
|
| 735 | + $out = new SplFixedArray($outlen); |
|
| 736 | + |
|
| 737 | + /** @var SplFixedArray $context */ |
|
| 738 | + $context = ParagonIE_Sodium_Core32_BLAKE2b::stringToContext($ctx); |
|
| 739 | + |
|
| 740 | + /** @var SplFixedArray $out */ |
|
| 741 | + $out = ParagonIE_Sodium_Core32_BLAKE2b::finish($context, $out); |
|
| 742 | + |
|
| 743 | + /** @var array<int, int> */ |
|
| 744 | + $outArray = $out->toArray(); |
|
| 745 | + return ParagonIE_Sodium_Core32_Util::intArrayToString($outArray); |
|
| 746 | + } |
|
| 747 | + |
|
| 748 | + /** |
|
| 749 | + * Initialize a hashing context for BLAKE2b. |
|
| 750 | + * |
|
| 751 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 752 | + * |
|
| 753 | + * @param string $key |
|
| 754 | + * @param int $outputLength |
|
| 755 | + * @return string |
|
| 756 | + * @throws RangeException |
|
| 757 | + * @throws SodiumException |
|
| 758 | + * @throws TypeError |
|
| 759 | + */ |
|
| 760 | + public static function generichash_init($key = '', $outputLength = 32) |
|
| 761 | + { |
|
| 762 | + // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
|
| 763 | + ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
|
| 764 | + |
|
| 765 | + $k = null; |
|
| 766 | + if (!empty($key)) { |
|
| 767 | + $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($key); |
|
| 768 | + if ($k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES) { |
|
| 769 | + throw new RangeException('Invalid key size'); |
|
| 770 | + } |
|
| 771 | + } |
|
| 772 | + |
|
| 773 | + /** @var SplFixedArray $ctx */ |
|
| 774 | + $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init($k, $outputLength); |
|
| 775 | + |
|
| 776 | + return ParagonIE_Sodium_Core32_BLAKE2b::contextToString($ctx); |
|
| 777 | + } |
|
| 778 | + |
|
| 779 | + /** |
|
| 780 | + * Initialize a hashing context for BLAKE2b. |
|
| 781 | + * |
|
| 782 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 783 | + * |
|
| 784 | + * @param string $key |
|
| 785 | + * @param int $outputLength |
|
| 786 | + * @param string $salt |
|
| 787 | + * @param string $personal |
|
| 788 | + * @return string |
|
| 789 | + * @throws RangeException |
|
| 790 | + * @throws SodiumException |
|
| 791 | + * @throws TypeError |
|
| 792 | + */ |
|
| 793 | + public static function generichash_init_salt_personal( |
|
| 794 | + $key = '', |
|
| 795 | + $outputLength = 32, |
|
| 796 | + $salt = '', |
|
| 797 | + $personal = '' |
|
| 798 | + ) { |
|
| 799 | + // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
|
| 800 | + ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
|
| 801 | + |
|
| 802 | + $k = null; |
|
| 803 | + if (!empty($key)) { |
|
| 804 | + $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($key); |
|
| 805 | + if ($k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES) { |
|
| 806 | + throw new RangeException('Invalid key size'); |
|
| 807 | + } |
|
| 808 | + } |
|
| 809 | + if (!empty($salt)) { |
|
| 810 | + $s = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($salt); |
|
| 811 | + } else { |
|
| 812 | + $s = null; |
|
| 813 | + } |
|
| 814 | + if (!empty($salt)) { |
|
| 815 | + $p = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($personal); |
|
| 816 | + } else { |
|
| 817 | + $p = null; |
|
| 818 | + } |
|
| 819 | + |
|
| 820 | + /** @var SplFixedArray $ctx */ |
|
| 821 | + $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init($k, $outputLength, $s, $p); |
|
| 822 | + |
|
| 823 | + return ParagonIE_Sodium_Core32_BLAKE2b::contextToString($ctx); |
|
| 824 | + } |
|
| 825 | + |
|
| 826 | + /** |
|
| 827 | + * Update a hashing context for BLAKE2b with $message |
|
| 828 | + * |
|
| 829 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 830 | + * |
|
| 831 | + * @param string $ctx |
|
| 832 | + * @param string $message |
|
| 833 | + * @return string |
|
| 834 | + * @throws SodiumException |
|
| 835 | + * @throws TypeError |
|
| 836 | + */ |
|
| 837 | + public static function generichash_update($ctx, $message) |
|
| 838 | + { |
|
| 839 | + // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
|
| 840 | + ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
|
| 841 | + |
|
| 842 | + /** @var SplFixedArray $context */ |
|
| 843 | + $context = ParagonIE_Sodium_Core32_BLAKE2b::stringToContext($ctx); |
|
| 844 | + |
|
| 845 | + /** @var SplFixedArray $in */ |
|
| 846 | + $in = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($message); |
|
| 847 | + |
|
| 848 | + ParagonIE_Sodium_Core32_BLAKE2b::update($context, $in, $in->count()); |
|
| 849 | + |
|
| 850 | + return ParagonIE_Sodium_Core32_BLAKE2b::contextToString($context); |
|
| 851 | + } |
|
| 852 | + |
|
| 853 | + /** |
|
| 854 | + * Libsodium's crypto_kx(). |
|
| 855 | + * |
|
| 856 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 857 | + * |
|
| 858 | + * @param string $my_sk |
|
| 859 | + * @param string $their_pk |
|
| 860 | + * @param string $client_pk |
|
| 861 | + * @param string $server_pk |
|
| 862 | + * @return string |
|
| 863 | + * @throws SodiumException |
|
| 864 | + * @throws TypeError |
|
| 865 | + */ |
|
| 866 | + public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) |
|
| 867 | + { |
|
| 868 | + return self::generichash( |
|
| 869 | + self::scalarmult($my_sk, $their_pk) . |
|
| 870 | + $client_pk . |
|
| 871 | + $server_pk |
|
| 872 | + ); |
|
| 873 | + } |
|
| 874 | + |
|
| 875 | + /** |
|
| 876 | + * ECDH over Curve25519 |
|
| 877 | + * |
|
| 878 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 879 | + * |
|
| 880 | + * @param string $sKey |
|
| 881 | + * @param string $pKey |
|
| 882 | + * @return string |
|
| 883 | + * |
|
| 884 | + * @throws SodiumException |
|
| 885 | + * @throws TypeError |
|
| 886 | + */ |
|
| 887 | + public static function scalarmult($sKey, $pKey) |
|
| 888 | + { |
|
| 889 | + $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10($sKey, $pKey); |
|
| 890 | + self::scalarmult_throw_if_zero($q); |
|
| 891 | + return $q; |
|
| 892 | + } |
|
| 893 | + |
|
| 894 | + /** |
|
| 895 | + * ECDH over Curve25519, using the basepoint. |
|
| 896 | + * Used to get a secret key from a public key. |
|
| 897 | + * |
|
| 898 | + * @param string $secret |
|
| 899 | + * @return string |
|
| 900 | + * |
|
| 901 | + * @throws SodiumException |
|
| 902 | + * @throws TypeError |
|
| 903 | + */ |
|
| 904 | + public static function scalarmult_base($secret) |
|
| 905 | + { |
|
| 906 | + $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10_base($secret); |
|
| 907 | + self::scalarmult_throw_if_zero($q); |
|
| 908 | + return $q; |
|
| 909 | + } |
|
| 910 | + |
|
| 911 | + /** |
|
| 912 | + * This throws an Error if a zero public key was passed to the function. |
|
| 913 | + * |
|
| 914 | + * @param string $q |
|
| 915 | + * @return void |
|
| 916 | + * @throws SodiumException |
|
| 917 | + * @throws TypeError |
|
| 918 | + */ |
|
| 919 | + protected static function scalarmult_throw_if_zero($q) |
|
| 920 | + { |
|
| 921 | + $d = 0; |
|
| 922 | + for ($i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i) { |
|
| 923 | + $d |= ParagonIE_Sodium_Core32_Util::chrToInt($q[$i]); |
|
| 924 | + } |
|
| 925 | + |
|
| 926 | + /* branch-free variant of === 0 */ |
|
| 927 | + if (-(1 & (($d - 1) >> 8))) { |
|
| 928 | + throw new SodiumException('Zero public key is not allowed'); |
|
| 929 | + } |
|
| 930 | + } |
|
| 931 | + |
|
| 932 | + /** |
|
| 933 | + * XSalsa20-Poly1305 authenticated symmetric-key encryption. |
|
| 934 | + * |
|
| 935 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 936 | + * |
|
| 937 | + * @param string $plaintext |
|
| 938 | + * @param string $nonce |
|
| 939 | + * @param string $key |
|
| 940 | + * @return string |
|
| 941 | + * @throws SodiumException |
|
| 942 | + * @throws TypeError |
|
| 943 | + */ |
|
| 944 | + public static function secretbox($plaintext, $nonce, $key) |
|
| 945 | + { |
|
| 946 | + /** @var string $subkey */ |
|
| 947 | + $subkey = ParagonIE_Sodium_Core32_HSalsa20::hsalsa20($nonce, $key); |
|
| 948 | + |
|
| 949 | + /** @var string $block0 */ |
|
| 950 | + $block0 = str_repeat("\x00", 32); |
|
| 951 | + |
|
| 952 | + /** @var int $mlen - Length of the plaintext message */ |
|
| 953 | + $mlen = ParagonIE_Sodium_Core32_Util::strlen($plaintext); |
|
| 954 | + $mlen0 = $mlen; |
|
| 955 | + if ($mlen0 > 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 956 | + $mlen0 = 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES; |
|
| 957 | + } |
|
| 958 | + $block0 .= ParagonIE_Sodium_Core32_Util::substr($plaintext, 0, $mlen0); |
|
| 959 | + |
|
| 960 | + /** @var string $block0 */ |
|
| 961 | + $block0 = ParagonIE_Sodium_Core32_Salsa20::salsa20_xor( |
|
| 962 | + $block0, |
|
| 963 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 964 | + $subkey |
|
| 965 | + ); |
|
| 966 | + |
|
| 967 | + /** @var string $c */ |
|
| 968 | + $c = ParagonIE_Sodium_Core32_Util::substr( |
|
| 969 | + $block0, |
|
| 970 | + self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 971 | + ); |
|
| 972 | + if ($mlen > $mlen0) { |
|
| 973 | + $c .= ParagonIE_Sodium_Core32_Salsa20::salsa20_xor_ic( |
|
| 974 | + ParagonIE_Sodium_Core32_Util::substr( |
|
| 975 | + $plaintext, |
|
| 976 | + self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 977 | + ), |
|
| 978 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 979 | + 1, |
|
| 980 | + $subkey |
|
| 981 | + ); |
|
| 982 | + } |
|
| 983 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State( |
|
| 984 | + ParagonIE_Sodium_Core32_Util::substr( |
|
| 985 | + $block0, |
|
| 986 | + 0, |
|
| 987 | + self::onetimeauth_poly1305_KEYBYTES |
|
| 988 | + ) |
|
| 989 | + ); |
|
| 990 | + try { |
|
| 991 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 992 | + ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 993 | + } catch (SodiumException $ex) { |
|
| 994 | + $block0 = null; |
|
| 995 | + $subkey = null; |
|
| 996 | + } |
|
| 997 | + |
|
| 998 | + $state->update($c); |
|
| 999 | + |
|
| 1000 | + /** @var string $c - MAC || ciphertext */ |
|
| 1001 | + $c = $state->finish() . $c; |
|
| 1002 | + unset($state); |
|
| 1003 | + |
|
| 1004 | + return $c; |
|
| 1005 | + } |
|
| 1006 | + |
|
| 1007 | + /** |
|
| 1008 | + * Decrypt a ciphertext generated via secretbox(). |
|
| 1009 | + * |
|
| 1010 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1011 | + * |
|
| 1012 | + * @param string $ciphertext |
|
| 1013 | + * @param string $nonce |
|
| 1014 | + * @param string $key |
|
| 1015 | + * @return string |
|
| 1016 | + * @throws SodiumException |
|
| 1017 | + * @throws TypeError |
|
| 1018 | + */ |
|
| 1019 | + public static function secretbox_open($ciphertext, $nonce, $key) |
|
| 1020 | + { |
|
| 1021 | + /** @var string $mac */ |
|
| 1022 | + $mac = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1023 | + $ciphertext, |
|
| 1024 | + 0, |
|
| 1025 | + self::secretbox_xsalsa20poly1305_MACBYTES |
|
| 1026 | + ); |
|
| 1027 | + |
|
| 1028 | + /** @var string $c */ |
|
| 1029 | + $c = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1030 | + $ciphertext, |
|
| 1031 | + self::secretbox_xsalsa20poly1305_MACBYTES |
|
| 1032 | + ); |
|
| 1033 | + |
|
| 1034 | + /** @var int $clen */ |
|
| 1035 | + $clen = ParagonIE_Sodium_Core32_Util::strlen($c); |
|
| 1036 | + |
|
| 1037 | + /** @var string $subkey */ |
|
| 1038 | + $subkey = ParagonIE_Sodium_Core32_HSalsa20::hsalsa20($nonce, $key); |
|
| 1039 | + |
|
| 1040 | + /** @var string $block0 */ |
|
| 1041 | + $block0 = ParagonIE_Sodium_Core32_Salsa20::salsa20( |
|
| 1042 | + 64, |
|
| 1043 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1044 | + $subkey |
|
| 1045 | + ); |
|
| 1046 | + $verified = ParagonIE_Sodium_Core32_Poly1305::onetimeauth_verify( |
|
| 1047 | + $mac, |
|
| 1048 | + $c, |
|
| 1049 | + ParagonIE_Sodium_Core32_Util::substr($block0, 0, 32) |
|
| 1050 | + ); |
|
| 1051 | + if (!$verified) { |
|
| 1052 | + try { |
|
| 1053 | + ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1054 | + } catch (SodiumException $ex) { |
|
| 1055 | + $subkey = null; |
|
| 1056 | + } |
|
| 1057 | + throw new SodiumException('Invalid MAC'); |
|
| 1058 | + } |
|
| 1059 | + |
|
| 1060 | + /** @var string $m - Decrypted message */ |
|
| 1061 | + $m = ParagonIE_Sodium_Core32_Util::xorStrings( |
|
| 1062 | + ParagonIE_Sodium_Core32_Util::substr($block0, self::secretbox_xsalsa20poly1305_ZEROBYTES), |
|
| 1063 | + ParagonIE_Sodium_Core32_Util::substr($c, 0, self::secretbox_xsalsa20poly1305_ZEROBYTES) |
|
| 1064 | + ); |
|
| 1065 | + if ($clen > self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 1066 | + // We had more than 1 block, so let's continue to decrypt the rest. |
|
| 1067 | + $m .= ParagonIE_Sodium_Core32_Salsa20::salsa20_xor_ic( |
|
| 1068 | + ParagonIE_Sodium_Core32_Util::substr( |
|
| 1069 | + $c, |
|
| 1070 | + self::secretbox_xsalsa20poly1305_ZEROBYTES |
|
| 1071 | + ), |
|
| 1072 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1073 | + 1, |
|
| 1074 | + (string) $subkey |
|
| 1075 | + ); |
|
| 1076 | + } |
|
| 1077 | + return $m; |
|
| 1078 | + } |
|
| 1079 | + |
|
| 1080 | + /** |
|
| 1081 | + * XChaCha20-Poly1305 authenticated symmetric-key encryption. |
|
| 1082 | + * |
|
| 1083 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1084 | + * |
|
| 1085 | + * @param string $plaintext |
|
| 1086 | + * @param string $nonce |
|
| 1087 | + * @param string $key |
|
| 1088 | + * @return string |
|
| 1089 | + * @throws SodiumException |
|
| 1090 | + * @throws TypeError |
|
| 1091 | + */ |
|
| 1092 | + public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) |
|
| 1093 | + { |
|
| 1094 | + /** @var string $subkey */ |
|
| 1095 | + $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
|
| 1096 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
|
| 1097 | + $key |
|
| 1098 | + ); |
|
| 1099 | + $nonceLast = ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8); |
|
| 1100 | + |
|
| 1101 | + /** @var string $block0 */ |
|
| 1102 | + $block0 = str_repeat("\x00", 32); |
|
| 1103 | + |
|
| 1104 | + /** @var int $mlen - Length of the plaintext message */ |
|
| 1105 | + $mlen = ParagonIE_Sodium_Core32_Util::strlen($plaintext); |
|
| 1106 | + $mlen0 = $mlen; |
|
| 1107 | + if ($mlen0 > 64 - self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1108 | + $mlen0 = 64 - self::secretbox_xchacha20poly1305_ZEROBYTES; |
|
| 1109 | + } |
|
| 1110 | + $block0 .= ParagonIE_Sodium_Core32_Util::substr($plaintext, 0, $mlen0); |
|
| 1111 | + |
|
| 1112 | + /** @var string $block0 */ |
|
| 1113 | + $block0 = ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 1114 | + $block0, |
|
| 1115 | + $nonceLast, |
|
| 1116 | + $subkey |
|
| 1117 | + ); |
|
| 1118 | + |
|
| 1119 | + /** @var string $c */ |
|
| 1120 | + $c = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1121 | + $block0, |
|
| 1122 | + self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1123 | + ); |
|
| 1124 | + if ($mlen > $mlen0) { |
|
| 1125 | + $c .= ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 1126 | + ParagonIE_Sodium_Core32_Util::substr( |
|
| 1127 | + $plaintext, |
|
| 1128 | + self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1129 | + ), |
|
| 1130 | + $nonceLast, |
|
| 1131 | + $subkey, |
|
| 1132 | + ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1133 | + ); |
|
| 1134 | + } |
|
| 1135 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State( |
|
| 1136 | + ParagonIE_Sodium_Core32_Util::substr( |
|
| 1137 | + $block0, |
|
| 1138 | + 0, |
|
| 1139 | + self::onetimeauth_poly1305_KEYBYTES |
|
| 1140 | + ) |
|
| 1141 | + ); |
|
| 1142 | + try { |
|
| 1143 | + ParagonIE_Sodium_Compat::memzero($block0); |
|
| 1144 | + ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1145 | + } catch (SodiumException $ex) { |
|
| 1146 | + $block0 = null; |
|
| 1147 | + $subkey = null; |
|
| 1148 | + } |
|
| 1149 | + |
|
| 1150 | + $state->update($c); |
|
| 1151 | + |
|
| 1152 | + /** @var string $c - MAC || ciphertext */ |
|
| 1153 | + $c = $state->finish() . $c; |
|
| 1154 | + unset($state); |
|
| 1155 | + |
|
| 1156 | + return $c; |
|
| 1157 | + } |
|
| 1158 | + |
|
| 1159 | + /** |
|
| 1160 | + * Decrypt a ciphertext generated via secretbox_xchacha20poly1305(). |
|
| 1161 | + * |
|
| 1162 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1163 | + * |
|
| 1164 | + * @param string $ciphertext |
|
| 1165 | + * @param string $nonce |
|
| 1166 | + * @param string $key |
|
| 1167 | + * @return string |
|
| 1168 | + * @throws SodiumException |
|
| 1169 | + * @throws TypeError |
|
| 1170 | + */ |
|
| 1171 | + public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) |
|
| 1172 | + { |
|
| 1173 | + /** @var string $mac */ |
|
| 1174 | + $mac = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1175 | + $ciphertext, |
|
| 1176 | + 0, |
|
| 1177 | + self::secretbox_xchacha20poly1305_MACBYTES |
|
| 1178 | + ); |
|
| 1179 | + |
|
| 1180 | + /** @var string $c */ |
|
| 1181 | + $c = ParagonIE_Sodium_Core32_Util::substr( |
|
| 1182 | + $ciphertext, |
|
| 1183 | + self::secretbox_xchacha20poly1305_MACBYTES |
|
| 1184 | + ); |
|
| 1185 | + |
|
| 1186 | + /** @var int $clen */ |
|
| 1187 | + $clen = ParagonIE_Sodium_Core32_Util::strlen($c); |
|
| 1188 | + |
|
| 1189 | + /** @var string $subkey */ |
|
| 1190 | + $subkey = ParagonIE_Sodium_Core32_HChaCha20::hchacha20($nonce, $key); |
|
| 1191 | + |
|
| 1192 | + /** @var string $block0 */ |
|
| 1193 | + $block0 = ParagonIE_Sodium_Core32_ChaCha20::stream( |
|
| 1194 | + 64, |
|
| 1195 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1196 | + $subkey |
|
| 1197 | + ); |
|
| 1198 | + $verified = ParagonIE_Sodium_Core32_Poly1305::onetimeauth_verify( |
|
| 1199 | + $mac, |
|
| 1200 | + $c, |
|
| 1201 | + ParagonIE_Sodium_Core32_Util::substr($block0, 0, 32) |
|
| 1202 | + ); |
|
| 1203 | + |
|
| 1204 | + if (!$verified) { |
|
| 1205 | + try { |
|
| 1206 | + ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1207 | + } catch (SodiumException $ex) { |
|
| 1208 | + $subkey = null; |
|
| 1209 | + } |
|
| 1210 | + throw new SodiumException('Invalid MAC'); |
|
| 1211 | + } |
|
| 1212 | + |
|
| 1213 | + /** @var string $m - Decrypted message */ |
|
| 1214 | + $m = ParagonIE_Sodium_Core32_Util::xorStrings( |
|
| 1215 | + ParagonIE_Sodium_Core32_Util::substr($block0, self::secretbox_xchacha20poly1305_ZEROBYTES), |
|
| 1216 | + ParagonIE_Sodium_Core32_Util::substr($c, 0, self::secretbox_xchacha20poly1305_ZEROBYTES) |
|
| 1217 | + ); |
|
| 1218 | + |
|
| 1219 | + if ($clen > self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1220 | + // We had more than 1 block, so let's continue to decrypt the rest. |
|
| 1221 | + $m .= ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
|
| 1222 | + ParagonIE_Sodium_Core32_Util::substr( |
|
| 1223 | + $c, |
|
| 1224 | + self::secretbox_xchacha20poly1305_ZEROBYTES |
|
| 1225 | + ), |
|
| 1226 | + ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1227 | + (string) $subkey, |
|
| 1228 | + ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1229 | + ); |
|
| 1230 | + } |
|
| 1231 | + return $m; |
|
| 1232 | + } |
|
| 1233 | + |
|
| 1234 | + /** |
|
| 1235 | + * @param string $key |
|
| 1236 | + * @return array<int, string> Returns a state and a header. |
|
| 1237 | + * @throws Exception |
|
| 1238 | + * @throws SodiumException |
|
| 1239 | + */ |
|
| 1240 | + public static function secretstream_xchacha20poly1305_init_push($key) |
|
| 1241 | + { |
|
| 1242 | + # randombytes_buf(out, crypto_secretstream_xchacha20poly1305_HEADERBYTES); |
|
| 1243 | + $out = random_bytes(24); |
|
| 1244 | + |
|
| 1245 | + # crypto_core_hchacha20(state->k, out, k, NULL); |
|
| 1246 | + $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20($out, $key); |
|
| 1247 | + $state = new ParagonIE_Sodium_Core32_SecretStream_State( |
|
| 1248 | + $subkey, |
|
| 1249 | + ParagonIE_Sodium_Core32_Util::substr($out, 16, 8) . str_repeat("\0", 4) |
|
| 1250 | + ); |
|
| 1251 | + |
|
| 1252 | + # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
|
| 1253 | + $state->counterReset(); |
|
| 1254 | + |
|
| 1255 | + # memcpy(STATE_INONCE(state), out + crypto_core_hchacha20_INPUTBYTES, |
|
| 1256 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1257 | + # memset(state->_pad, 0, sizeof state->_pad); |
|
| 1258 | + return array( |
|
| 1259 | + $state->toString(), |
|
| 1260 | + $out |
|
| 1261 | + ); |
|
| 1262 | + } |
|
| 1263 | + |
|
| 1264 | + /** |
|
| 1265 | + * @param string $key |
|
| 1266 | + * @param string $header |
|
| 1267 | + * @return string Returns a state. |
|
| 1268 | + * @throws Exception |
|
| 1269 | + */ |
|
| 1270 | + public static function secretstream_xchacha20poly1305_init_pull($key, $header) |
|
| 1271 | + { |
|
| 1272 | + # crypto_core_hchacha20(state->k, in, k, NULL); |
|
| 1273 | + $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
|
| 1274 | + ParagonIE_Sodium_Core32_Util::substr($header, 0, 16), |
|
| 1275 | + $key |
|
| 1276 | + ); |
|
| 1277 | + $state = new ParagonIE_Sodium_Core32_SecretStream_State( |
|
| 1278 | + $subkey, |
|
| 1279 | + ParagonIE_Sodium_Core32_Util::substr($header, 16) |
|
| 1280 | + ); |
|
| 1281 | + $state->counterReset(); |
|
| 1282 | + # memcpy(STATE_INONCE(state), in + crypto_core_hchacha20_INPUTBYTES, |
|
| 1283 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1284 | + # memset(state->_pad, 0, sizeof state->_pad); |
|
| 1285 | + # return 0; |
|
| 1286 | + return $state->toString(); |
|
| 1287 | + } |
|
| 1288 | + |
|
| 1289 | + /** |
|
| 1290 | + * @param string $state |
|
| 1291 | + * @param string $msg |
|
| 1292 | + * @param string $aad |
|
| 1293 | + * @param int $tag |
|
| 1294 | + * @return string |
|
| 1295 | + * @throws SodiumException |
|
| 1296 | + */ |
|
| 1297 | + public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) |
|
| 1298 | + { |
|
| 1299 | + $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
|
| 1300 | + # crypto_onetimeauth_poly1305_state poly1305_state; |
|
| 1301 | + # unsigned char block[64U]; |
|
| 1302 | + # unsigned char slen[8U]; |
|
| 1303 | + # unsigned char *c; |
|
| 1304 | + # unsigned char *mac; |
|
| 1305 | + |
|
| 1306 | + $msglen = ParagonIE_Sodium_Core32_Util::strlen($msg); |
|
| 1307 | + $aadlen = ParagonIE_Sodium_Core32_Util::strlen($aad); |
|
| 1308 | + |
|
| 1309 | + if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1310 | + throw new SodiumException( |
|
| 1311 | + 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
|
| 1312 | + ); |
|
| 1313 | + } |
|
| 1314 | + |
|
| 1315 | + # if (outlen_p != NULL) { |
|
| 1316 | + # *outlen_p = 0U; |
|
| 1317 | + # } |
|
| 1318 | + # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
|
| 1319 | + # sodium_misuse(); |
|
| 1320 | + # } |
|
| 1321 | + |
|
| 1322 | + # crypto_stream_chacha20_ietf(block, sizeof block, state->nonce, state->k); |
|
| 1323 | + # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
|
| 1324 | + # sodium_memzero(block, sizeof block); |
|
| 1325 | + $auth = new ParagonIE_Sodium_Core32_Poly1305_State( |
|
| 1326 | + ParagonIE_Sodium_Core32_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1327 | + ); |
|
| 1328 | + |
|
| 1329 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
|
| 1330 | + $auth->update($aad); |
|
| 1331 | + |
|
| 1332 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
|
| 1333 | + # (0x10 - adlen) & 0xf); |
|
| 1334 | + $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1335 | + |
|
| 1336 | + # memset(block, 0, sizeof block); |
|
| 1337 | + # block[0] = tag; |
|
| 1338 | + # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
|
| 1339 | + # state->nonce, 1U, state->k); |
|
| 1340 | + $block = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1341 | + ParagonIE_Sodium_Core32_Util::intToChr($tag) . str_repeat("\0", 63), |
|
| 1342 | + $st->getCombinedNonce(), |
|
| 1343 | + $st->getKey(), |
|
| 1344 | + ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1345 | + ); |
|
| 1346 | + |
|
| 1347 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
|
| 1348 | + $auth->update($block); |
|
| 1349 | + |
|
| 1350 | + # out[0] = block[0]; |
|
| 1351 | + $out = $block[0]; |
|
| 1352 | + # c = out + (sizeof tag); |
|
| 1353 | + # crypto_stream_chacha20_ietf_xor_ic(c, m, mlen, state->nonce, 2U, state->k); |
|
| 1354 | + $cipher = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1355 | + $msg, |
|
| 1356 | + $st->getCombinedNonce(), |
|
| 1357 | + $st->getKey(), |
|
| 1358 | + ParagonIE_Sodium_Core32_Util::store64_le(2) |
|
| 1359 | + ); |
|
| 1360 | + |
|
| 1361 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
|
| 1362 | + $auth->update($cipher); |
|
| 1363 | + |
|
| 1364 | + $out .= $cipher; |
|
| 1365 | + unset($cipher); |
|
| 1366 | + |
|
| 1367 | + # crypto_onetimeauth_poly1305_update |
|
| 1368 | + # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
|
| 1369 | + $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1370 | + |
|
| 1371 | + # STORE64_LE(slen, (uint64_t) adlen); |
|
| 1372 | + $slen = ParagonIE_Sodium_Core32_Util::store64_le($aadlen); |
|
| 1373 | + |
|
| 1374 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1375 | + $auth->update($slen); |
|
| 1376 | + |
|
| 1377 | + # STORE64_LE(slen, (sizeof block) + mlen); |
|
| 1378 | + $slen = ParagonIE_Sodium_Core32_Util::store64_le(64 + $msglen); |
|
| 1379 | + |
|
| 1380 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1381 | + $auth->update($slen); |
|
| 1382 | + |
|
| 1383 | + # mac = c + mlen; |
|
| 1384 | + # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
|
| 1385 | + $mac = $auth->finish(); |
|
| 1386 | + $out .= $mac; |
|
| 1387 | + |
|
| 1388 | + # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
|
| 1389 | + unset($auth); |
|
| 1390 | + |
|
| 1391 | + |
|
| 1392 | + # XOR_BUF(STATE_INONCE(state), mac, |
|
| 1393 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1394 | + $st->xorNonce($mac); |
|
| 1395 | + |
|
| 1396 | + # sodium_increment(STATE_COUNTER(state), |
|
| 1397 | + # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
|
| 1398 | + $st->incrementCounter(); |
|
| 1399 | + // Overwrite by reference: |
|
| 1400 | + $state = $st->toString(); |
|
| 1401 | + |
|
| 1402 | + /** @var bool $rekey */ |
|
| 1403 | + $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1404 | + # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
|
| 1405 | + # sodium_is_zero(STATE_COUNTER(state), |
|
| 1406 | + # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
|
| 1407 | + # crypto_secretstream_xchacha20poly1305_rekey(state); |
|
| 1408 | + # } |
|
| 1409 | + if ($rekey || $st->needsRekey()) { |
|
| 1410 | + // DO REKEY |
|
| 1411 | + self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1412 | + } |
|
| 1413 | + # if (outlen_p != NULL) { |
|
| 1414 | + # *outlen_p = crypto_secretstream_xchacha20poly1305_ABYTES + mlen; |
|
| 1415 | + # } |
|
| 1416 | + return $out; |
|
| 1417 | + } |
|
| 1418 | + |
|
| 1419 | + /** |
|
| 1420 | + * @param string $state |
|
| 1421 | + * @param string $cipher |
|
| 1422 | + * @param string $aad |
|
| 1423 | + * @return bool|array{0: string, 1: int} |
|
| 1424 | + * @throws SodiumException |
|
| 1425 | + */ |
|
| 1426 | + public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') |
|
| 1427 | + { |
|
| 1428 | + $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
|
| 1429 | + |
|
| 1430 | + $cipherlen = ParagonIE_Sodium_Core32_Util::strlen($cipher); |
|
| 1431 | + # mlen = inlen - crypto_secretstream_xchacha20poly1305_ABYTES; |
|
| 1432 | + $msglen = $cipherlen - ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_ABYTES; |
|
| 1433 | + $aadlen = ParagonIE_Sodium_Core32_Util::strlen($aad); |
|
| 1434 | + |
|
| 1435 | + # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
|
| 1436 | + # sodium_misuse(); |
|
| 1437 | + # } |
|
| 1438 | + if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1439 | + throw new SodiumException( |
|
| 1440 | + 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
|
| 1441 | + ); |
|
| 1442 | + } |
|
| 1443 | + |
|
| 1444 | + # crypto_stream_chacha20_ietf(block, sizeof block, state->nonce, state->k); |
|
| 1445 | + # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
|
| 1446 | + # sodium_memzero(block, sizeof block); |
|
| 1447 | + $auth = new ParagonIE_Sodium_Core32_Poly1305_State( |
|
| 1448 | + ParagonIE_Sodium_Core32_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1449 | + ); |
|
| 1450 | + |
|
| 1451 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
|
| 1452 | + $auth->update($aad); |
|
| 1453 | + |
|
| 1454 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
|
| 1455 | + # (0x10 - adlen) & 0xf); |
|
| 1456 | + $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1457 | + |
|
| 1458 | + |
|
| 1459 | + # memset(block, 0, sizeof block); |
|
| 1460 | + # block[0] = in[0]; |
|
| 1461 | + # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
|
| 1462 | + # state->nonce, 1U, state->k); |
|
| 1463 | + $block = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1464 | + $cipher[0] . str_repeat("\0", 63), |
|
| 1465 | + $st->getCombinedNonce(), |
|
| 1466 | + $st->getKey(), |
|
| 1467 | + ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1468 | + ); |
|
| 1469 | + # tag = block[0]; |
|
| 1470 | + # block[0] = in[0]; |
|
| 1471 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
|
| 1472 | + $tag = ParagonIE_Sodium_Core32_Util::chrToInt($block[0]); |
|
| 1473 | + $block[0] = $cipher[0]; |
|
| 1474 | + $auth->update($block); |
|
| 1475 | + |
|
| 1476 | + |
|
| 1477 | + # c = in + (sizeof tag); |
|
| 1478 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
|
| 1479 | + $auth->update(ParagonIE_Sodium_Core32_Util::substr($cipher, 1, $msglen)); |
|
| 1480 | + |
|
| 1481 | + # crypto_onetimeauth_poly1305_update |
|
| 1482 | + # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
|
| 1483 | + $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1484 | + |
|
| 1485 | + # STORE64_LE(slen, (uint64_t) adlen); |
|
| 1486 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1487 | + $slen = ParagonIE_Sodium_Core32_Util::store64_le($aadlen); |
|
| 1488 | + $auth->update($slen); |
|
| 1489 | + |
|
| 1490 | + # STORE64_LE(slen, (sizeof block) + mlen); |
|
| 1491 | + # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
|
| 1492 | + $slen = ParagonIE_Sodium_Core32_Util::store64_le(64 + $msglen); |
|
| 1493 | + $auth->update($slen); |
|
| 1494 | + |
|
| 1495 | + # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
|
| 1496 | + # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
|
| 1497 | + $mac = $auth->finish(); |
|
| 1498 | + |
|
| 1499 | + # stored_mac = c + mlen; |
|
| 1500 | + # if (sodium_memcmp(mac, stored_mac, sizeof mac) != 0) { |
|
| 1501 | + # sodium_memzero(mac, sizeof mac); |
|
| 1502 | + # return -1; |
|
| 1503 | + # } |
|
| 1504 | + |
|
| 1505 | + $stored = ParagonIE_Sodium_Core32_Util::substr($cipher, $msglen + 1, 16); |
|
| 1506 | + if (!ParagonIE_Sodium_Core32_Util::hashEquals($mac, $stored)) { |
|
| 1507 | + return false; |
|
| 1508 | + } |
|
| 1509 | + |
|
| 1510 | + # crypto_stream_chacha20_ietf_xor_ic(m, c, mlen, state->nonce, 2U, state->k); |
|
| 1511 | + $out = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1512 | + ParagonIE_Sodium_Core32_Util::substr($cipher, 1, $msglen), |
|
| 1513 | + $st->getCombinedNonce(), |
|
| 1514 | + $st->getKey(), |
|
| 1515 | + ParagonIE_Sodium_Core32_Util::store64_le(2) |
|
| 1516 | + ); |
|
| 1517 | + |
|
| 1518 | + # XOR_BUF(STATE_INONCE(state), mac, |
|
| 1519 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
|
| 1520 | + $st->xorNonce($mac); |
|
| 1521 | + |
|
| 1522 | + # sodium_increment(STATE_COUNTER(state), |
|
| 1523 | + # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
|
| 1524 | + $st->incrementCounter(); |
|
| 1525 | + |
|
| 1526 | + # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
|
| 1527 | + # sodium_is_zero(STATE_COUNTER(state), |
|
| 1528 | + # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
|
| 1529 | + # crypto_secretstream_xchacha20poly1305_rekey(state); |
|
| 1530 | + # } |
|
| 1531 | + |
|
| 1532 | + // Overwrite by reference: |
|
| 1533 | + $state = $st->toString(); |
|
| 1534 | + |
|
| 1535 | + /** @var bool $rekey */ |
|
| 1536 | + $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1537 | + if ($rekey || $st->needsRekey()) { |
|
| 1538 | + // DO REKEY |
|
| 1539 | + self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1540 | + } |
|
| 1541 | + return array($out, $tag); |
|
| 1542 | + } |
|
| 1543 | + |
|
| 1544 | + /** |
|
| 1545 | + * @param string $state |
|
| 1546 | + * @return void |
|
| 1547 | + * @throws SodiumException |
|
| 1548 | + */ |
|
| 1549 | + public static function secretstream_xchacha20poly1305_rekey(&$state) |
|
| 1550 | + { |
|
| 1551 | + $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
|
| 1552 | + # unsigned char new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + |
|
| 1553 | + # crypto_secretstream_xchacha20poly1305_INONCEBYTES]; |
|
| 1554 | + # size_t i; |
|
| 1555 | + # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
|
| 1556 | + # new_key_and_inonce[i] = state->k[i]; |
|
| 1557 | + # } |
|
| 1558 | + $new_key_and_inonce = $st->getKey(); |
|
| 1559 | + |
|
| 1560 | + # for (i = 0U; i < crypto_secretstream_xchacha20poly1305_INONCEBYTES; i++) { |
|
| 1561 | + # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i] = |
|
| 1562 | + # STATE_INONCE(state)[i]; |
|
| 1563 | + # } |
|
| 1564 | + $new_key_and_inonce .= ParagonIE_Sodium_Core32_Util::substR($st->getNonce(), 0, 8); |
|
| 1565 | + |
|
| 1566 | + # crypto_stream_chacha20_ietf_xor(new_key_and_inonce, new_key_and_inonce, |
|
| 1567 | + # sizeof new_key_and_inonce, |
|
| 1568 | + # state->nonce, state->k); |
|
| 1569 | + |
|
| 1570 | + $st->rekey(ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1571 | + $new_key_and_inonce, |
|
| 1572 | + $st->getCombinedNonce(), |
|
| 1573 | + $st->getKey(), |
|
| 1574 | + ParagonIE_Sodium_Core32_Util::store64_le(0) |
|
| 1575 | + )); |
|
| 1576 | + |
|
| 1577 | + # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
|
| 1578 | + # state->k[i] = new_key_and_inonce[i]; |
|
| 1579 | + # } |
|
| 1580 | + # for (i = 0U; i < crypto_secretstream_xchacha20poly1305_INONCEBYTES; i++) { |
|
| 1581 | + # STATE_INONCE(state)[i] = |
|
| 1582 | + # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i]; |
|
| 1583 | + # } |
|
| 1584 | + # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
|
| 1585 | + $st->counterReset(); |
|
| 1586 | + |
|
| 1587 | + $state = $st->toString(); |
|
| 1588 | + } |
|
| 1589 | + |
|
| 1590 | + /** |
|
| 1591 | + * Detached Ed25519 signature. |
|
| 1592 | + * |
|
| 1593 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1594 | + * |
|
| 1595 | + * @param string $message |
|
| 1596 | + * @param string $sk |
|
| 1597 | + * @return string |
|
| 1598 | + * @throws SodiumException |
|
| 1599 | + * @throws TypeError |
|
| 1600 | + */ |
|
| 1601 | + public static function sign_detached($message, $sk) |
|
| 1602 | + { |
|
| 1603 | + return ParagonIE_Sodium_Core32_Ed25519::sign_detached($message, $sk); |
|
| 1604 | + } |
|
| 1605 | + |
|
| 1606 | + /** |
|
| 1607 | + * Attached Ed25519 signature. (Returns a signed message.) |
|
| 1608 | + * |
|
| 1609 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1610 | + * |
|
| 1611 | + * @param string $message |
|
| 1612 | + * @param string $sk |
|
| 1613 | + * @return string |
|
| 1614 | + * @throws SodiumException |
|
| 1615 | + * @throws TypeError |
|
| 1616 | + */ |
|
| 1617 | + public static function sign($message, $sk) |
|
| 1618 | + { |
|
| 1619 | + return ParagonIE_Sodium_Core32_Ed25519::sign($message, $sk); |
|
| 1620 | + } |
|
| 1621 | + |
|
| 1622 | + /** |
|
| 1623 | + * Opens a signed message. If valid, returns the message. |
|
| 1624 | + * |
|
| 1625 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1626 | + * |
|
| 1627 | + * @param string $signedMessage |
|
| 1628 | + * @param string $pk |
|
| 1629 | + * @return string |
|
| 1630 | + * @throws SodiumException |
|
| 1631 | + * @throws TypeError |
|
| 1632 | + */ |
|
| 1633 | + public static function sign_open($signedMessage, $pk) |
|
| 1634 | + { |
|
| 1635 | + return ParagonIE_Sodium_Core32_Ed25519::sign_open($signedMessage, $pk); |
|
| 1636 | + } |
|
| 1637 | + |
|
| 1638 | + /** |
|
| 1639 | + * Verify a detached signature of a given message and public key. |
|
| 1640 | + * |
|
| 1641 | + * @internal Do not use this directly. Use ParagonIE_Sodium_Compat. |
|
| 1642 | + * |
|
| 1643 | + * @param string $signature |
|
| 1644 | + * @param string $message |
|
| 1645 | + * @param string $pk |
|
| 1646 | + * @return bool |
|
| 1647 | + * @throws SodiumException |
|
| 1648 | + * @throws TypeError |
|
| 1649 | + */ |
|
| 1650 | + public static function sign_verify_detached($signature, $message, $pk) |
|
| 1651 | + { |
|
| 1652 | + return ParagonIE_Sodium_Core32_Ed25519::verify_detached($signature, $message, $pk); |
|
| 1653 | + } |
|
| 1654 | 1654 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if (class_exists('ParagonIE_Sodium_Crypto32', false)) { |
|
| 3 | +if ( class_exists( 'ParagonIE_Sodium_Crypto32', false ) ) { |
|
| 4 | 4 | return; |
| 5 | 5 | } |
| 6 | 6 | |
@@ -75,13 +75,13 @@ discard block |
||
| 75 | 75 | $key = '' |
| 76 | 76 | ) { |
| 77 | 77 | /** @var int $len - Length of message (ciphertext + MAC) */ |
| 78 | - $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 78 | + $len = ParagonIE_Sodium_Core32_Util::strlen( $message ); |
|
| 79 | 79 | |
| 80 | 80 | /** @var int $clen - Length of ciphertext */ |
| 81 | 81 | $clen = $len - self::aead_chacha20poly1305_ABYTES; |
| 82 | 82 | |
| 83 | 83 | /** @var int $adlen - Length of associated data */ |
| 84 | - $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 84 | + $adlen = ParagonIE_Sodium_Core32_Util::strlen( $ad ); |
|
| 85 | 85 | |
| 86 | 86 | /** @var string $mac - Message authentication code */ |
| 87 | 87 | $mac = ParagonIE_Sodium_Core32_Util::substr( |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | ); |
| 92 | 92 | |
| 93 | 93 | /** @var string $ciphertext - The encrypted message (sans MAC) */ |
| 94 | - $ciphertext = ParagonIE_Sodium_Core32_Util::substr($message, 0, $clen); |
|
| 94 | + $ciphertext = ParagonIE_Sodium_Core32_Util::substr( $message, 0, $clen ); |
|
| 95 | 95 | |
| 96 | 96 | /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
| 97 | 97 | $block0 = ParagonIE_Sodium_Core32_ChaCha20::stream( |
@@ -101,21 +101,21 @@ discard block |
||
| 101 | 101 | ); |
| 102 | 102 | |
| 103 | 103 | /* Recalculate the Poly1305 authentication tag (MAC): */ |
| 104 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 104 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State( $block0 ); |
|
| 105 | 105 | try { |
| 106 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 107 | - } catch (SodiumException $ex) { |
|
| 106 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 107 | + } catch ( SodiumException $ex ) { |
|
| 108 | 108 | $block0 = null; |
| 109 | 109 | } |
| 110 | - $state->update($ad); |
|
| 111 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 112 | - $state->update($ciphertext); |
|
| 113 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($clen)); |
|
| 110 | + $state->update( $ad ); |
|
| 111 | + $state->update( ParagonIE_Sodium_Core32_Util::store64_le( $adlen ) ); |
|
| 112 | + $state->update( $ciphertext ); |
|
| 113 | + $state->update( ParagonIE_Sodium_Core32_Util::store64_le( $clen ) ); |
|
| 114 | 114 | $computed_mac = $state->finish(); |
| 115 | 115 | |
| 116 | 116 | /* Compare the given MAC with the recalculated MAC: */ |
| 117 | - if (!ParagonIE_Sodium_Core32_Util::verify_16($computed_mac, $mac)) { |
|
| 118 | - throw new SodiumException('Invalid MAC'); |
|
| 117 | + if ( ! ParagonIE_Sodium_Core32_Util::verify_16( $computed_mac, $mac ) ) { |
|
| 118 | + throw new SodiumException( 'Invalid MAC' ); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | $ciphertext, |
| 124 | 124 | $nonce, |
| 125 | 125 | $key, |
| 126 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 126 | + ParagonIE_Sodium_Core32_Util::store64_le( 1 ) |
|
| 127 | 127 | ); |
| 128 | 128 | } |
| 129 | 129 | |
@@ -147,10 +147,10 @@ discard block |
||
| 147 | 147 | $key = '' |
| 148 | 148 | ) { |
| 149 | 149 | /** @var int $len - Length of the plaintext message */ |
| 150 | - $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 150 | + $len = ParagonIE_Sodium_Core32_Util::strlen( $message ); |
|
| 151 | 151 | |
| 152 | 152 | /** @var int $adlen - Length of the associated data */ |
| 153 | - $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 153 | + $adlen = ParagonIE_Sodium_Core32_Util::strlen( $ad ); |
|
| 154 | 154 | |
| 155 | 155 | /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
| 156 | 156 | $block0 = ParagonIE_Sodium_Core32_ChaCha20::stream( |
@@ -158,10 +158,10 @@ discard block |
||
| 158 | 158 | $nonce, |
| 159 | 159 | $key |
| 160 | 160 | ); |
| 161 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 161 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State( $block0 ); |
|
| 162 | 162 | try { |
| 163 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 164 | - } catch (SodiumException $ex) { |
|
| 163 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 164 | + } catch ( SodiumException $ex ) { |
|
| 165 | 165 | $block0 = null; |
| 166 | 166 | } |
| 167 | 167 | |
@@ -170,13 +170,13 @@ discard block |
||
| 170 | 170 | $message, |
| 171 | 171 | $nonce, |
| 172 | 172 | $key, |
| 173 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 173 | + ParagonIE_Sodium_Core32_Util::store64_le( 1 ) |
|
| 174 | 174 | ); |
| 175 | 175 | |
| 176 | - $state->update($ad); |
|
| 177 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 178 | - $state->update($ciphertext); |
|
| 179 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($len)); |
|
| 176 | + $state->update( $ad ); |
|
| 177 | + $state->update( ParagonIE_Sodium_Core32_Util::store64_le( $adlen ) ); |
|
| 178 | + $state->update( $ciphertext ); |
|
| 179 | + $state->update( ParagonIE_Sodium_Core32_Util::store64_le( $len ) ); |
|
| 180 | 180 | return $ciphertext . $state->finish(); |
| 181 | 181 | } |
| 182 | 182 | |
@@ -200,10 +200,10 @@ discard block |
||
| 200 | 200 | $key = '' |
| 201 | 201 | ) { |
| 202 | 202 | /** @var int $adlen - Length of associated data */ |
| 203 | - $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 203 | + $adlen = ParagonIE_Sodium_Core32_Util::strlen( $ad ); |
|
| 204 | 204 | |
| 205 | 205 | /** @var int $len - Length of message (ciphertext + MAC) */ |
| 206 | - $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 206 | + $len = ParagonIE_Sodium_Core32_Util::strlen( $message ); |
|
| 207 | 207 | |
| 208 | 208 | /** @var int $clen - Length of ciphertext */ |
| 209 | 209 | $clen = $len - self::aead_chacha20poly1305_IETF_ABYTES; |
@@ -230,23 +230,23 @@ discard block |
||
| 230 | 230 | ); |
| 231 | 231 | |
| 232 | 232 | /* Recalculate the Poly1305 authentication tag (MAC): */ |
| 233 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 233 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State( $block0 ); |
|
| 234 | 234 | try { |
| 235 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 236 | - } catch (SodiumException $ex) { |
|
| 235 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 236 | + } catch ( SodiumException $ex ) { |
|
| 237 | 237 | $block0 = null; |
| 238 | 238 | } |
| 239 | - $state->update($ad); |
|
| 240 | - $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 241 | - $state->update($ciphertext); |
|
| 242 | - $state->update(str_repeat("\x00", (0x10 - $clen) & 0xf)); |
|
| 243 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 244 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($clen)); |
|
| 239 | + $state->update( $ad ); |
|
| 240 | + $state->update( str_repeat( "\x00", ( ( 0x10 - $adlen ) & 0xf ) ) ); |
|
| 241 | + $state->update( $ciphertext ); |
|
| 242 | + $state->update( str_repeat( "\x00", ( 0x10 - $clen ) & 0xf ) ); |
|
| 243 | + $state->update( ParagonIE_Sodium_Core32_Util::store64_le( $adlen ) ); |
|
| 244 | + $state->update( ParagonIE_Sodium_Core32_Util::store64_le( $clen ) ); |
|
| 245 | 245 | $computed_mac = $state->finish(); |
| 246 | 246 | |
| 247 | 247 | /* Compare the given MAC with the recalculated MAC: */ |
| 248 | - if (!ParagonIE_Sodium_Core32_Util::verify_16($computed_mac, $mac)) { |
|
| 249 | - throw new SodiumException('Invalid MAC'); |
|
| 248 | + if ( ! ParagonIE_Sodium_Core32_Util::verify_16( $computed_mac, $mac ) ) { |
|
| 249 | + throw new SodiumException( 'Invalid MAC' ); |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | // Here, we know that the MAC is valid, so we decrypt and return the plaintext |
@@ -254,7 +254,7 @@ discard block |
||
| 254 | 254 | $ciphertext, |
| 255 | 255 | $nonce, |
| 256 | 256 | $key, |
| 257 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 257 | + ParagonIE_Sodium_Core32_Util::store64_le( 1 ) |
|
| 258 | 258 | ); |
| 259 | 259 | } |
| 260 | 260 | |
@@ -278,10 +278,10 @@ discard block |
||
| 278 | 278 | $key = '' |
| 279 | 279 | ) { |
| 280 | 280 | /** @var int $len - Length of the plaintext message */ |
| 281 | - $len = ParagonIE_Sodium_Core32_Util::strlen($message); |
|
| 281 | + $len = ParagonIE_Sodium_Core32_Util::strlen( $message ); |
|
| 282 | 282 | |
| 283 | 283 | /** @var int $adlen - Length of the associated data */ |
| 284 | - $adlen = ParagonIE_Sodium_Core32_Util::strlen($ad); |
|
| 284 | + $adlen = ParagonIE_Sodium_Core32_Util::strlen( $ad ); |
|
| 285 | 285 | |
| 286 | 286 | /** @var string The first block of the chacha20 keystream, used as a poly1305 key */ |
| 287 | 287 | $block0 = ParagonIE_Sodium_Core32_ChaCha20::ietfStream( |
@@ -289,10 +289,10 @@ discard block |
||
| 289 | 289 | $nonce, |
| 290 | 290 | $key |
| 291 | 291 | ); |
| 292 | - $state = new ParagonIE_Sodium_Core32_Poly1305_State($block0); |
|
| 292 | + $state = new ParagonIE_Sodium_Core32_Poly1305_State( $block0 ); |
|
| 293 | 293 | try { |
| 294 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 295 | - } catch (SodiumException $ex) { |
|
| 294 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 295 | + } catch ( SodiumException $ex ) { |
|
| 296 | 296 | $block0 = null; |
| 297 | 297 | } |
| 298 | 298 | |
@@ -301,15 +301,15 @@ discard block |
||
| 301 | 301 | $message, |
| 302 | 302 | $nonce, |
| 303 | 303 | $key, |
| 304 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 304 | + ParagonIE_Sodium_Core32_Util::store64_le( 1 ) |
|
| 305 | 305 | ); |
| 306 | 306 | |
| 307 | - $state->update($ad); |
|
| 308 | - $state->update(str_repeat("\x00", ((0x10 - $adlen) & 0xf))); |
|
| 309 | - $state->update($ciphertext); |
|
| 310 | - $state->update(str_repeat("\x00", ((0x10 - $len) & 0xf))); |
|
| 311 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($adlen)); |
|
| 312 | - $state->update(ParagonIE_Sodium_Core32_Util::store64_le($len)); |
|
| 307 | + $state->update( $ad ); |
|
| 308 | + $state->update( str_repeat( "\x00", ( ( 0x10 - $adlen ) & 0xf ) ) ); |
|
| 309 | + $state->update( $ciphertext ); |
|
| 310 | + $state->update( str_repeat( "\x00", ( ( 0x10 - $len ) & 0xf ) ) ); |
|
| 311 | + $state->update( ParagonIE_Sodium_Core32_Util::store64_le( $adlen ) ); |
|
| 312 | + $state->update( ParagonIE_Sodium_Core32_Util::store64_le( $len ) ); |
|
| 313 | 313 | return $ciphertext . $state->finish(); |
| 314 | 314 | } |
| 315 | 315 | |
@@ -333,13 +333,13 @@ discard block |
||
| 333 | 333 | $key = '' |
| 334 | 334 | ) { |
| 335 | 335 | $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
| 336 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
|
| 336 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 0, 16 ), |
|
| 337 | 337 | $key |
| 338 | 338 | ); |
| 339 | 339 | $nonceLast = "\x00\x00\x00\x00" . |
| 340 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8); |
|
| 340 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 16, 8 ); |
|
| 341 | 341 | |
| 342 | - return self::aead_chacha20poly1305_ietf_decrypt($message, $ad, $nonceLast, $subkey); |
|
| 342 | + return self::aead_chacha20poly1305_ietf_decrypt( $message, $ad, $nonceLast, $subkey ); |
|
| 343 | 343 | } |
| 344 | 344 | |
| 345 | 345 | /** |
@@ -362,13 +362,13 @@ discard block |
||
| 362 | 362 | $key = '' |
| 363 | 363 | ) { |
| 364 | 364 | $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
| 365 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
|
| 365 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 0, 16 ), |
|
| 366 | 366 | $key |
| 367 | 367 | ); |
| 368 | 368 | $nonceLast = "\x00\x00\x00\x00" . |
| 369 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8); |
|
| 369 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 16, 8 ); |
|
| 370 | 370 | |
| 371 | - return self::aead_chacha20poly1305_ietf_encrypt($message, $ad, $nonceLast, $subkey); |
|
| 371 | + return self::aead_chacha20poly1305_ietf_encrypt( $message, $ad, $nonceLast, $subkey ); |
|
| 372 | 372 | } |
| 373 | 373 | |
| 374 | 374 | /** |
@@ -381,10 +381,10 @@ discard block |
||
| 381 | 381 | * @return string |
| 382 | 382 | * @throws TypeError |
| 383 | 383 | */ |
| 384 | - public static function auth($message, $key) |
|
| 384 | + public static function auth( $message, $key ) |
|
| 385 | 385 | { |
| 386 | 386 | return ParagonIE_Sodium_Core32_Util::substr( |
| 387 | - hash_hmac('sha512', $message, $key, true), |
|
| 387 | + hash_hmac( 'sha512', $message, $key, true ), |
|
| 388 | 388 | 0, |
| 389 | 389 | 32 |
| 390 | 390 | ); |
@@ -402,11 +402,11 @@ discard block |
||
| 402 | 402 | * @throws SodiumException |
| 403 | 403 | * @throws TypeError |
| 404 | 404 | */ |
| 405 | - public static function auth_verify($mac, $message, $key) |
|
| 405 | + public static function auth_verify( $mac, $message, $key ) |
|
| 406 | 406 | { |
| 407 | 407 | return ParagonIE_Sodium_Core32_Util::hashEquals( |
| 408 | 408 | $mac, |
| 409 | - self::auth($message, $key) |
|
| 409 | + self::auth( $message, $key ) |
|
| 410 | 410 | ); |
| 411 | 411 | } |
| 412 | 412 | |
@@ -422,14 +422,14 @@ discard block |
||
| 422 | 422 | * @throws SodiumException |
| 423 | 423 | * @throws TypeError |
| 424 | 424 | */ |
| 425 | - public static function box($plaintext, $nonce, $keypair) |
|
| 425 | + public static function box( $plaintext, $nonce, $keypair ) |
|
| 426 | 426 | { |
| 427 | 427 | return self::secretbox( |
| 428 | 428 | $plaintext, |
| 429 | 429 | $nonce, |
| 430 | 430 | self::box_beforenm( |
| 431 | - self::box_secretkey($keypair), |
|
| 432 | - self::box_publickey($keypair) |
|
| 431 | + self::box_secretkey( $keypair ), |
|
| 432 | + self::box_publickey( $keypair ) |
|
| 433 | 433 | ) |
| 434 | 434 | ); |
| 435 | 435 | } |
@@ -445,16 +445,16 @@ discard block |
||
| 445 | 445 | * @throws SodiumException |
| 446 | 446 | * @throws TypeError |
| 447 | 447 | */ |
| 448 | - public static function box_seal($message, $publicKey) |
|
| 448 | + public static function box_seal( $message, $publicKey ) |
|
| 449 | 449 | { |
| 450 | 450 | /** @var string $ephemeralKeypair */ |
| 451 | 451 | $ephemeralKeypair = self::box_keypair(); |
| 452 | 452 | |
| 453 | 453 | /** @var string $ephemeralSK */ |
| 454 | - $ephemeralSK = self::box_secretkey($ephemeralKeypair); |
|
| 454 | + $ephemeralSK = self::box_secretkey( $ephemeralKeypair ); |
|
| 455 | 455 | |
| 456 | 456 | /** @var string $ephemeralPK */ |
| 457 | - $ephemeralPK = self::box_publickey($ephemeralKeypair); |
|
| 457 | + $ephemeralPK = self::box_publickey( $ephemeralKeypair ); |
|
| 458 | 458 | |
| 459 | 459 | /** @var string $nonce */ |
| 460 | 460 | $nonce = self::generichash( |
@@ -464,15 +464,15 @@ discard block |
||
| 464 | 464 | ); |
| 465 | 465 | |
| 466 | 466 | /** @var string $keypair - The combined keypair used in crypto_box() */ |
| 467 | - $keypair = self::box_keypair_from_secretkey_and_publickey($ephemeralSK, $publicKey); |
|
| 467 | + $keypair = self::box_keypair_from_secretkey_and_publickey( $ephemeralSK, $publicKey ); |
|
| 468 | 468 | |
| 469 | 469 | /** @var string $ciphertext Ciphertext + MAC from crypto_box */ |
| 470 | - $ciphertext = self::box($message, $nonce, $keypair); |
|
| 470 | + $ciphertext = self::box( $message, $nonce, $keypair ); |
|
| 471 | 471 | try { |
| 472 | - ParagonIE_Sodium_Compat::memzero($ephemeralKeypair); |
|
| 473 | - ParagonIE_Sodium_Compat::memzero($ephemeralSK); |
|
| 474 | - ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 475 | - } catch (SodiumException $ex) { |
|
| 472 | + ParagonIE_Sodium_Compat::memzero( $ephemeralKeypair ); |
|
| 473 | + ParagonIE_Sodium_Compat::memzero( $ephemeralSK ); |
|
| 474 | + ParagonIE_Sodium_Compat::memzero( $nonce ); |
|
| 475 | + } catch ( SodiumException $ex ) { |
|
| 476 | 476 | $ephemeralKeypair = null; |
| 477 | 477 | $ephemeralSK = null; |
| 478 | 478 | $nonce = null; |
@@ -491,19 +491,19 @@ discard block |
||
| 491 | 491 | * @throws SodiumException |
| 492 | 492 | * @throws TypeError |
| 493 | 493 | */ |
| 494 | - public static function box_seal_open($message, $keypair) |
|
| 494 | + public static function box_seal_open( $message, $keypair ) |
|
| 495 | 495 | { |
| 496 | 496 | /** @var string $ephemeralPK */ |
| 497 | - $ephemeralPK = ParagonIE_Sodium_Core32_Util::substr($message, 0, 32); |
|
| 497 | + $ephemeralPK = ParagonIE_Sodium_Core32_Util::substr( $message, 0, 32 ); |
|
| 498 | 498 | |
| 499 | 499 | /** @var string $ciphertext (ciphertext + MAC) */ |
| 500 | - $ciphertext = ParagonIE_Sodium_Core32_Util::substr($message, 32); |
|
| 500 | + $ciphertext = ParagonIE_Sodium_Core32_Util::substr( $message, 32 ); |
|
| 501 | 501 | |
| 502 | 502 | /** @var string $secretKey */ |
| 503 | - $secretKey = self::box_secretkey($keypair); |
|
| 503 | + $secretKey = self::box_secretkey( $keypair ); |
|
| 504 | 504 | |
| 505 | 505 | /** @var string $publicKey */ |
| 506 | - $publicKey = self::box_publickey($keypair); |
|
| 506 | + $publicKey = self::box_publickey( $keypair ); |
|
| 507 | 507 | |
| 508 | 508 | /** @var string $nonce */ |
| 509 | 509 | $nonce = self::generichash( |
@@ -513,15 +513,15 @@ discard block |
||
| 513 | 513 | ); |
| 514 | 514 | |
| 515 | 515 | /** @var string $keypair */ |
| 516 | - $keypair = self::box_keypair_from_secretkey_and_publickey($secretKey, $ephemeralPK); |
|
| 516 | + $keypair = self::box_keypair_from_secretkey_and_publickey( $secretKey, $ephemeralPK ); |
|
| 517 | 517 | |
| 518 | 518 | /** @var string $m */ |
| 519 | - $m = self::box_open($ciphertext, $nonce, $keypair); |
|
| 519 | + $m = self::box_open( $ciphertext, $nonce, $keypair ); |
|
| 520 | 520 | try { |
| 521 | - ParagonIE_Sodium_Compat::memzero($secretKey); |
|
| 522 | - ParagonIE_Sodium_Compat::memzero($ephemeralPK); |
|
| 523 | - ParagonIE_Sodium_Compat::memzero($nonce); |
|
| 524 | - } catch (SodiumException $ex) { |
|
| 521 | + ParagonIE_Sodium_Compat::memzero( $secretKey ); |
|
| 522 | + ParagonIE_Sodium_Compat::memzero( $ephemeralPK ); |
|
| 523 | + ParagonIE_Sodium_Compat::memzero( $nonce ); |
|
| 524 | + } catch ( SodiumException $ex ) { |
|
| 525 | 525 | $secretKey = null; |
| 526 | 526 | $ephemeralPK = null; |
| 527 | 527 | $nonce = null; |
@@ -540,11 +540,11 @@ discard block |
||
| 540 | 540 | * @throws SodiumException |
| 541 | 541 | * @throws TypeError |
| 542 | 542 | */ |
| 543 | - public static function box_beforenm($sk, $pk) |
|
| 543 | + public static function box_beforenm( $sk, $pk ) |
|
| 544 | 544 | { |
| 545 | 545 | return ParagonIE_Sodium_Core32_HSalsa20::hsalsa20( |
| 546 | - str_repeat("\x00", 16), |
|
| 547 | - self::scalarmult($sk, $pk) |
|
| 546 | + str_repeat( "\x00", 16 ), |
|
| 547 | + self::scalarmult( $sk, $pk ) |
|
| 548 | 548 | ); |
| 549 | 549 | } |
| 550 | 550 | |
@@ -558,8 +558,8 @@ discard block |
||
| 558 | 558 | */ |
| 559 | 559 | public static function box_keypair() |
| 560 | 560 | { |
| 561 | - $sKey = random_bytes(32); |
|
| 562 | - $pKey = self::scalarmult_base($sKey); |
|
| 561 | + $sKey = random_bytes( 32 ); |
|
| 562 | + $pKey = self::scalarmult_base( $sKey ); |
|
| 563 | 563 | return $sKey . $pKey; |
| 564 | 564 | } |
| 565 | 565 | |
@@ -569,14 +569,14 @@ discard block |
||
| 569 | 569 | * @throws SodiumException |
| 570 | 570 | * @throws TypeError |
| 571 | 571 | */ |
| 572 | - public static function box_seed_keypair($seed) |
|
| 572 | + public static function box_seed_keypair( $seed ) |
|
| 573 | 573 | { |
| 574 | 574 | $sKey = ParagonIE_Sodium_Core32_Util::substr( |
| 575 | - hash('sha512', $seed, true), |
|
| 575 | + hash( 'sha512', $seed, true ), |
|
| 576 | 576 | 0, |
| 577 | 577 | 32 |
| 578 | 578 | ); |
| 579 | - $pKey = self::scalarmult_base($sKey); |
|
| 579 | + $pKey = self::scalarmult_base( $sKey ); |
|
| 580 | 580 | return $sKey . $pKey; |
| 581 | 581 | } |
| 582 | 582 | |
@@ -588,10 +588,10 @@ discard block |
||
| 588 | 588 | * @return string |
| 589 | 589 | * @throws TypeError |
| 590 | 590 | */ |
| 591 | - public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) |
|
| 591 | + public static function box_keypair_from_secretkey_and_publickey( $sKey, $pKey ) |
|
| 592 | 592 | { |
| 593 | - return ParagonIE_Sodium_Core32_Util::substr($sKey, 0, 32) . |
|
| 594 | - ParagonIE_Sodium_Core32_Util::substr($pKey, 0, 32); |
|
| 593 | + return ParagonIE_Sodium_Core32_Util::substr( $sKey, 0, 32 ) . |
|
| 594 | + ParagonIE_Sodium_Core32_Util::substr( $pKey, 0, 32 ); |
|
| 595 | 595 | } |
| 596 | 596 | |
| 597 | 597 | /** |
@@ -602,14 +602,14 @@ discard block |
||
| 602 | 602 | * @throws RangeException |
| 603 | 603 | * @throws TypeError |
| 604 | 604 | */ |
| 605 | - public static function box_secretkey($keypair) |
|
| 605 | + public static function box_secretkey( $keypair ) |
|
| 606 | 606 | { |
| 607 | - if (ParagonIE_Sodium_Core32_Util::strlen($keypair) !== 64) { |
|
| 607 | + if ( ParagonIE_Sodium_Core32_Util::strlen( $keypair ) !== 64 ) { |
|
| 608 | 608 | throw new RangeException( |
| 609 | 609 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
| 610 | 610 | ); |
| 611 | 611 | } |
| 612 | - return ParagonIE_Sodium_Core32_Util::substr($keypair, 0, 32); |
|
| 612 | + return ParagonIE_Sodium_Core32_Util::substr( $keypair, 0, 32 ); |
|
| 613 | 613 | } |
| 614 | 614 | |
| 615 | 615 | /** |
@@ -620,14 +620,14 @@ discard block |
||
| 620 | 620 | * @throws RangeException |
| 621 | 621 | * @throws TypeError |
| 622 | 622 | */ |
| 623 | - public static function box_publickey($keypair) |
|
| 623 | + public static function box_publickey( $keypair ) |
|
| 624 | 624 | { |
| 625 | - if (ParagonIE_Sodium_Core32_Util::strlen($keypair) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES) { |
|
| 625 | + if ( ParagonIE_Sodium_Core32_Util::strlen( $keypair ) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES ) { |
|
| 626 | 626 | throw new RangeException( |
| 627 | 627 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
| 628 | 628 | ); |
| 629 | 629 | } |
| 630 | - return ParagonIE_Sodium_Core32_Util::substr($keypair, 32, 32); |
|
| 630 | + return ParagonIE_Sodium_Core32_Util::substr( $keypair, 32, 32 ); |
|
| 631 | 631 | } |
| 632 | 632 | |
| 633 | 633 | /** |
@@ -639,14 +639,14 @@ discard block |
||
| 639 | 639 | * @throws SodiumException |
| 640 | 640 | * @throws TypeError |
| 641 | 641 | */ |
| 642 | - public static function box_publickey_from_secretkey($sKey) |
|
| 642 | + public static function box_publickey_from_secretkey( $sKey ) |
|
| 643 | 643 | { |
| 644 | - if (ParagonIE_Sodium_Core32_Util::strlen($sKey) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES) { |
|
| 644 | + if ( ParagonIE_Sodium_Core32_Util::strlen( $sKey ) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES ) { |
|
| 645 | 645 | throw new RangeException( |
| 646 | 646 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES bytes long.' |
| 647 | 647 | ); |
| 648 | 648 | } |
| 649 | - return self::scalarmult_base($sKey); |
|
| 649 | + return self::scalarmult_base( $sKey ); |
|
| 650 | 650 | } |
| 651 | 651 | |
| 652 | 652 | /** |
@@ -661,14 +661,14 @@ discard block |
||
| 661 | 661 | * @throws SodiumException |
| 662 | 662 | * @throws TypeError |
| 663 | 663 | */ |
| 664 | - public static function box_open($ciphertext, $nonce, $keypair) |
|
| 664 | + public static function box_open( $ciphertext, $nonce, $keypair ) |
|
| 665 | 665 | { |
| 666 | 666 | return self::secretbox_open( |
| 667 | 667 | $ciphertext, |
| 668 | 668 | $nonce, |
| 669 | 669 | self::box_beforenm( |
| 670 | - self::box_secretkey($keypair), |
|
| 671 | - self::box_publickey($keypair) |
|
| 670 | + self::box_secretkey( $keypair ), |
|
| 671 | + self::box_publickey( $keypair ) |
|
| 672 | 672 | ) |
| 673 | 673 | ); |
| 674 | 674 | } |
@@ -686,34 +686,34 @@ discard block |
||
| 686 | 686 | * @throws SodiumException |
| 687 | 687 | * @throws TypeError |
| 688 | 688 | */ |
| 689 | - public static function generichash($message, $key = '', $outlen = 32) |
|
| 689 | + public static function generichash( $message, $key = '', $outlen = 32 ) |
|
| 690 | 690 | { |
| 691 | 691 | // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
| 692 | 692 | ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
| 693 | 693 | |
| 694 | 694 | $k = null; |
| 695 | - if (!empty($key)) { |
|
| 695 | + if ( ! empty( $key ) ) { |
|
| 696 | 696 | /** @var SplFixedArray $k */ |
| 697 | - $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($key); |
|
| 698 | - if ($k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES) { |
|
| 699 | - throw new RangeException('Invalid key size'); |
|
| 697 | + $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray( $key ); |
|
| 698 | + if ( $k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES ) { |
|
| 699 | + throw new RangeException( 'Invalid key size' ); |
|
| 700 | 700 | } |
| 701 | 701 | } |
| 702 | 702 | |
| 703 | 703 | /** @var SplFixedArray $in */ |
| 704 | - $in = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($message); |
|
| 704 | + $in = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray( $message ); |
|
| 705 | 705 | |
| 706 | 706 | /** @var SplFixedArray $ctx */ |
| 707 | - $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init($k, $outlen); |
|
| 708 | - ParagonIE_Sodium_Core32_BLAKE2b::update($ctx, $in, $in->count()); |
|
| 707 | + $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init( $k, $outlen ); |
|
| 708 | + ParagonIE_Sodium_Core32_BLAKE2b::update( $ctx, $in, $in->count() ); |
|
| 709 | 709 | |
| 710 | 710 | /** @var SplFixedArray $out */ |
| 711 | - $out = new SplFixedArray($outlen); |
|
| 712 | - $out = ParagonIE_Sodium_Core32_BLAKE2b::finish($ctx, $out); |
|
| 711 | + $out = new SplFixedArray( $outlen ); |
|
| 712 | + $out = ParagonIE_Sodium_Core32_BLAKE2b::finish( $ctx, $out ); |
|
| 713 | 713 | |
| 714 | 714 | /** @var array<int, int> */ |
| 715 | 715 | $outArray = $out->toArray(); |
| 716 | - return ParagonIE_Sodium_Core32_Util::intArrayToString($outArray); |
|
| 716 | + return ParagonIE_Sodium_Core32_Util::intArrayToString( $outArray ); |
|
| 717 | 717 | } |
| 718 | 718 | |
| 719 | 719 | /** |
@@ -727,22 +727,22 @@ discard block |
||
| 727 | 727 | * @throws SodiumException |
| 728 | 728 | * @throws TypeError |
| 729 | 729 | */ |
| 730 | - public static function generichash_final($ctx, $outlen = 32) |
|
| 730 | + public static function generichash_final( $ctx, $outlen = 32 ) |
|
| 731 | 731 | { |
| 732 | - if (!is_string($ctx)) { |
|
| 733 | - throw new TypeError('Context must be a string'); |
|
| 732 | + if ( ! is_string( $ctx ) ) { |
|
| 733 | + throw new TypeError( 'Context must be a string' ); |
|
| 734 | 734 | } |
| 735 | - $out = new SplFixedArray($outlen); |
|
| 735 | + $out = new SplFixedArray( $outlen ); |
|
| 736 | 736 | |
| 737 | 737 | /** @var SplFixedArray $context */ |
| 738 | - $context = ParagonIE_Sodium_Core32_BLAKE2b::stringToContext($ctx); |
|
| 738 | + $context = ParagonIE_Sodium_Core32_BLAKE2b::stringToContext( $ctx ); |
|
| 739 | 739 | |
| 740 | 740 | /** @var SplFixedArray $out */ |
| 741 | - $out = ParagonIE_Sodium_Core32_BLAKE2b::finish($context, $out); |
|
| 741 | + $out = ParagonIE_Sodium_Core32_BLAKE2b::finish( $context, $out ); |
|
| 742 | 742 | |
| 743 | 743 | /** @var array<int, int> */ |
| 744 | 744 | $outArray = $out->toArray(); |
| 745 | - return ParagonIE_Sodium_Core32_Util::intArrayToString($outArray); |
|
| 745 | + return ParagonIE_Sodium_Core32_Util::intArrayToString( $outArray ); |
|
| 746 | 746 | } |
| 747 | 747 | |
| 748 | 748 | /** |
@@ -757,23 +757,23 @@ discard block |
||
| 757 | 757 | * @throws SodiumException |
| 758 | 758 | * @throws TypeError |
| 759 | 759 | */ |
| 760 | - public static function generichash_init($key = '', $outputLength = 32) |
|
| 760 | + public static function generichash_init( $key = '', $outputLength = 32 ) |
|
| 761 | 761 | { |
| 762 | 762 | // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
| 763 | 763 | ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
| 764 | 764 | |
| 765 | 765 | $k = null; |
| 766 | - if (!empty($key)) { |
|
| 767 | - $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($key); |
|
| 768 | - if ($k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES) { |
|
| 769 | - throw new RangeException('Invalid key size'); |
|
| 766 | + if ( ! empty( $key ) ) { |
|
| 767 | + $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray( $key ); |
|
| 768 | + if ( $k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES ) { |
|
| 769 | + throw new RangeException( 'Invalid key size' ); |
|
| 770 | 770 | } |
| 771 | 771 | } |
| 772 | 772 | |
| 773 | 773 | /** @var SplFixedArray $ctx */ |
| 774 | - $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init($k, $outputLength); |
|
| 774 | + $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init( $k, $outputLength ); |
|
| 775 | 775 | |
| 776 | - return ParagonIE_Sodium_Core32_BLAKE2b::contextToString($ctx); |
|
| 776 | + return ParagonIE_Sodium_Core32_BLAKE2b::contextToString( $ctx ); |
|
| 777 | 777 | } |
| 778 | 778 | |
| 779 | 779 | /** |
@@ -800,27 +800,27 @@ discard block |
||
| 800 | 800 | ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
| 801 | 801 | |
| 802 | 802 | $k = null; |
| 803 | - if (!empty($key)) { |
|
| 804 | - $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($key); |
|
| 805 | - if ($k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES) { |
|
| 806 | - throw new RangeException('Invalid key size'); |
|
| 803 | + if ( ! empty( $key ) ) { |
|
| 804 | + $k = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray( $key ); |
|
| 805 | + if ( $k->count() > ParagonIE_Sodium_Core32_BLAKE2b::KEYBYTES ) { |
|
| 806 | + throw new RangeException( 'Invalid key size' ); |
|
| 807 | 807 | } |
| 808 | 808 | } |
| 809 | - if (!empty($salt)) { |
|
| 810 | - $s = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($salt); |
|
| 809 | + if ( ! empty( $salt ) ) { |
|
| 810 | + $s = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray( $salt ); |
|
| 811 | 811 | } else { |
| 812 | 812 | $s = null; |
| 813 | 813 | } |
| 814 | - if (!empty($salt)) { |
|
| 815 | - $p = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($personal); |
|
| 814 | + if ( ! empty( $salt ) ) { |
|
| 815 | + $p = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray( $personal ); |
|
| 816 | 816 | } else { |
| 817 | 817 | $p = null; |
| 818 | 818 | } |
| 819 | 819 | |
| 820 | 820 | /** @var SplFixedArray $ctx */ |
| 821 | - $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init($k, $outputLength, $s, $p); |
|
| 821 | + $ctx = ParagonIE_Sodium_Core32_BLAKE2b::init( $k, $outputLength, $s, $p ); |
|
| 822 | 822 | |
| 823 | - return ParagonIE_Sodium_Core32_BLAKE2b::contextToString($ctx); |
|
| 823 | + return ParagonIE_Sodium_Core32_BLAKE2b::contextToString( $ctx ); |
|
| 824 | 824 | } |
| 825 | 825 | |
| 826 | 826 | /** |
@@ -834,20 +834,20 @@ discard block |
||
| 834 | 834 | * @throws SodiumException |
| 835 | 835 | * @throws TypeError |
| 836 | 836 | */ |
| 837 | - public static function generichash_update($ctx, $message) |
|
| 837 | + public static function generichash_update( $ctx, $message ) |
|
| 838 | 838 | { |
| 839 | 839 | // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
| 840 | 840 | ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
| 841 | 841 | |
| 842 | 842 | /** @var SplFixedArray $context */ |
| 843 | - $context = ParagonIE_Sodium_Core32_BLAKE2b::stringToContext($ctx); |
|
| 843 | + $context = ParagonIE_Sodium_Core32_BLAKE2b::stringToContext( $ctx ); |
|
| 844 | 844 | |
| 845 | 845 | /** @var SplFixedArray $in */ |
| 846 | - $in = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray($message); |
|
| 846 | + $in = ParagonIE_Sodium_Core32_BLAKE2b::stringToSplFixedArray( $message ); |
|
| 847 | 847 | |
| 848 | - ParagonIE_Sodium_Core32_BLAKE2b::update($context, $in, $in->count()); |
|
| 848 | + ParagonIE_Sodium_Core32_BLAKE2b::update( $context, $in, $in->count() ); |
|
| 849 | 849 | |
| 850 | - return ParagonIE_Sodium_Core32_BLAKE2b::contextToString($context); |
|
| 850 | + return ParagonIE_Sodium_Core32_BLAKE2b::contextToString( $context ); |
|
| 851 | 851 | } |
| 852 | 852 | |
| 853 | 853 | /** |
@@ -863,10 +863,10 @@ discard block |
||
| 863 | 863 | * @throws SodiumException |
| 864 | 864 | * @throws TypeError |
| 865 | 865 | */ |
| 866 | - public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) |
|
| 866 | + public static function keyExchange( $my_sk, $their_pk, $client_pk, $server_pk ) |
|
| 867 | 867 | { |
| 868 | 868 | return self::generichash( |
| 869 | - self::scalarmult($my_sk, $their_pk) . |
|
| 869 | + self::scalarmult( $my_sk, $their_pk ) . |
|
| 870 | 870 | $client_pk . |
| 871 | 871 | $server_pk |
| 872 | 872 | ); |
@@ -884,10 +884,10 @@ discard block |
||
| 884 | 884 | * @throws SodiumException |
| 885 | 885 | * @throws TypeError |
| 886 | 886 | */ |
| 887 | - public static function scalarmult($sKey, $pKey) |
|
| 887 | + public static function scalarmult( $sKey, $pKey ) |
|
| 888 | 888 | { |
| 889 | - $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10($sKey, $pKey); |
|
| 890 | - self::scalarmult_throw_if_zero($q); |
|
| 889 | + $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10( $sKey, $pKey ); |
|
| 890 | + self::scalarmult_throw_if_zero( $q ); |
|
| 891 | 891 | return $q; |
| 892 | 892 | } |
| 893 | 893 | |
@@ -901,10 +901,10 @@ discard block |
||
| 901 | 901 | * @throws SodiumException |
| 902 | 902 | * @throws TypeError |
| 903 | 903 | */ |
| 904 | - public static function scalarmult_base($secret) |
|
| 904 | + public static function scalarmult_base( $secret ) |
|
| 905 | 905 | { |
| 906 | - $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10_base($secret); |
|
| 907 | - self::scalarmult_throw_if_zero($q); |
|
| 906 | + $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10_base( $secret ); |
|
| 907 | + self::scalarmult_throw_if_zero( $q ); |
|
| 908 | 908 | return $q; |
| 909 | 909 | } |
| 910 | 910 | |
@@ -916,16 +916,16 @@ discard block |
||
| 916 | 916 | * @throws SodiumException |
| 917 | 917 | * @throws TypeError |
| 918 | 918 | */ |
| 919 | - protected static function scalarmult_throw_if_zero($q) |
|
| 919 | + protected static function scalarmult_throw_if_zero( $q ) |
|
| 920 | 920 | { |
| 921 | 921 | $d = 0; |
| 922 | - for ($i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i) { |
|
| 923 | - $d |= ParagonIE_Sodium_Core32_Util::chrToInt($q[$i]); |
|
| 922 | + for ( $i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i ) { |
|
| 923 | + $d |= ParagonIE_Sodium_Core32_Util::chrToInt( $q[ $i ] ); |
|
| 924 | 924 | } |
| 925 | 925 | |
| 926 | 926 | /* branch-free variant of === 0 */ |
| 927 | - if (-(1 & (($d - 1) >> 8))) { |
|
| 928 | - throw new SodiumException('Zero public key is not allowed'); |
|
| 927 | + if (-( 1 & ( ( $d - 1 ) >> 8 ) )) { |
|
| 928 | + throw new SodiumException( 'Zero public key is not allowed' ); |
|
| 929 | 929 | } |
| 930 | 930 | } |
| 931 | 931 | |
@@ -941,26 +941,26 @@ discard block |
||
| 941 | 941 | * @throws SodiumException |
| 942 | 942 | * @throws TypeError |
| 943 | 943 | */ |
| 944 | - public static function secretbox($plaintext, $nonce, $key) |
|
| 944 | + public static function secretbox( $plaintext, $nonce, $key ) |
|
| 945 | 945 | { |
| 946 | 946 | /** @var string $subkey */ |
| 947 | - $subkey = ParagonIE_Sodium_Core32_HSalsa20::hsalsa20($nonce, $key); |
|
| 947 | + $subkey = ParagonIE_Sodium_Core32_HSalsa20::hsalsa20( $nonce, $key ); |
|
| 948 | 948 | |
| 949 | 949 | /** @var string $block0 */ |
| 950 | - $block0 = str_repeat("\x00", 32); |
|
| 950 | + $block0 = str_repeat( "\x00", 32 ); |
|
| 951 | 951 | |
| 952 | 952 | /** @var int $mlen - Length of the plaintext message */ |
| 953 | - $mlen = ParagonIE_Sodium_Core32_Util::strlen($plaintext); |
|
| 953 | + $mlen = ParagonIE_Sodium_Core32_Util::strlen( $plaintext ); |
|
| 954 | 954 | $mlen0 = $mlen; |
| 955 | - if ($mlen0 > 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 955 | + if ( $mlen0 > 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES ) { |
|
| 956 | 956 | $mlen0 = 64 - self::secretbox_xsalsa20poly1305_ZEROBYTES; |
| 957 | 957 | } |
| 958 | - $block0 .= ParagonIE_Sodium_Core32_Util::substr($plaintext, 0, $mlen0); |
|
| 958 | + $block0 .= ParagonIE_Sodium_Core32_Util::substr( $plaintext, 0, $mlen0 ); |
|
| 959 | 959 | |
| 960 | 960 | /** @var string $block0 */ |
| 961 | 961 | $block0 = ParagonIE_Sodium_Core32_Salsa20::salsa20_xor( |
| 962 | 962 | $block0, |
| 963 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 963 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 16, 8 ), |
|
| 964 | 964 | $subkey |
| 965 | 965 | ); |
| 966 | 966 | |
@@ -969,13 +969,13 @@ discard block |
||
| 969 | 969 | $block0, |
| 970 | 970 | self::secretbox_xsalsa20poly1305_ZEROBYTES |
| 971 | 971 | ); |
| 972 | - if ($mlen > $mlen0) { |
|
| 972 | + if ( $mlen > $mlen0 ) { |
|
| 973 | 973 | $c .= ParagonIE_Sodium_Core32_Salsa20::salsa20_xor_ic( |
| 974 | 974 | ParagonIE_Sodium_Core32_Util::substr( |
| 975 | 975 | $plaintext, |
| 976 | 976 | self::secretbox_xsalsa20poly1305_ZEROBYTES |
| 977 | 977 | ), |
| 978 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 978 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 16, 8 ), |
|
| 979 | 979 | 1, |
| 980 | 980 | $subkey |
| 981 | 981 | ); |
@@ -988,18 +988,18 @@ discard block |
||
| 988 | 988 | ) |
| 989 | 989 | ); |
| 990 | 990 | try { |
| 991 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 992 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 993 | - } catch (SodiumException $ex) { |
|
| 991 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 992 | + ParagonIE_Sodium_Compat::memzero( $subkey ); |
|
| 993 | + } catch ( SodiumException $ex ) { |
|
| 994 | 994 | $block0 = null; |
| 995 | 995 | $subkey = null; |
| 996 | 996 | } |
| 997 | 997 | |
| 998 | - $state->update($c); |
|
| 998 | + $state->update( $c ); |
|
| 999 | 999 | |
| 1000 | 1000 | /** @var string $c - MAC || ciphertext */ |
| 1001 | 1001 | $c = $state->finish() . $c; |
| 1002 | - unset($state); |
|
| 1002 | + unset( $state ); |
|
| 1003 | 1003 | |
| 1004 | 1004 | return $c; |
| 1005 | 1005 | } |
@@ -1016,7 +1016,7 @@ discard block |
||
| 1016 | 1016 | * @throws SodiumException |
| 1017 | 1017 | * @throws TypeError |
| 1018 | 1018 | */ |
| 1019 | - public static function secretbox_open($ciphertext, $nonce, $key) |
|
| 1019 | + public static function secretbox_open( $ciphertext, $nonce, $key ) |
|
| 1020 | 1020 | { |
| 1021 | 1021 | /** @var string $mac */ |
| 1022 | 1022 | $mac = ParagonIE_Sodium_Core32_Util::substr( |
@@ -1032,46 +1032,46 @@ discard block |
||
| 1032 | 1032 | ); |
| 1033 | 1033 | |
| 1034 | 1034 | /** @var int $clen */ |
| 1035 | - $clen = ParagonIE_Sodium_Core32_Util::strlen($c); |
|
| 1035 | + $clen = ParagonIE_Sodium_Core32_Util::strlen( $c ); |
|
| 1036 | 1036 | |
| 1037 | 1037 | /** @var string $subkey */ |
| 1038 | - $subkey = ParagonIE_Sodium_Core32_HSalsa20::hsalsa20($nonce, $key); |
|
| 1038 | + $subkey = ParagonIE_Sodium_Core32_HSalsa20::hsalsa20( $nonce, $key ); |
|
| 1039 | 1039 | |
| 1040 | 1040 | /** @var string $block0 */ |
| 1041 | 1041 | $block0 = ParagonIE_Sodium_Core32_Salsa20::salsa20( |
| 1042 | 1042 | 64, |
| 1043 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1043 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 16, 8 ), |
|
| 1044 | 1044 | $subkey |
| 1045 | 1045 | ); |
| 1046 | 1046 | $verified = ParagonIE_Sodium_Core32_Poly1305::onetimeauth_verify( |
| 1047 | 1047 | $mac, |
| 1048 | 1048 | $c, |
| 1049 | - ParagonIE_Sodium_Core32_Util::substr($block0, 0, 32) |
|
| 1049 | + ParagonIE_Sodium_Core32_Util::substr( $block0, 0, 32 ) |
|
| 1050 | 1050 | ); |
| 1051 | - if (!$verified) { |
|
| 1051 | + if ( ! $verified ) { |
|
| 1052 | 1052 | try { |
| 1053 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1054 | - } catch (SodiumException $ex) { |
|
| 1053 | + ParagonIE_Sodium_Compat::memzero( $subkey ); |
|
| 1054 | + } catch ( SodiumException $ex ) { |
|
| 1055 | 1055 | $subkey = null; |
| 1056 | 1056 | } |
| 1057 | - throw new SodiumException('Invalid MAC'); |
|
| 1057 | + throw new SodiumException( 'Invalid MAC' ); |
|
| 1058 | 1058 | } |
| 1059 | 1059 | |
| 1060 | 1060 | /** @var string $m - Decrypted message */ |
| 1061 | 1061 | $m = ParagonIE_Sodium_Core32_Util::xorStrings( |
| 1062 | - ParagonIE_Sodium_Core32_Util::substr($block0, self::secretbox_xsalsa20poly1305_ZEROBYTES), |
|
| 1063 | - ParagonIE_Sodium_Core32_Util::substr($c, 0, self::secretbox_xsalsa20poly1305_ZEROBYTES) |
|
| 1062 | + ParagonIE_Sodium_Core32_Util::substr( $block0, self::secretbox_xsalsa20poly1305_ZEROBYTES ), |
|
| 1063 | + ParagonIE_Sodium_Core32_Util::substr( $c, 0, self::secretbox_xsalsa20poly1305_ZEROBYTES ) |
|
| 1064 | 1064 | ); |
| 1065 | - if ($clen > self::secretbox_xsalsa20poly1305_ZEROBYTES) { |
|
| 1065 | + if ( $clen > self::secretbox_xsalsa20poly1305_ZEROBYTES ) { |
|
| 1066 | 1066 | // We had more than 1 block, so let's continue to decrypt the rest. |
| 1067 | 1067 | $m .= ParagonIE_Sodium_Core32_Salsa20::salsa20_xor_ic( |
| 1068 | 1068 | ParagonIE_Sodium_Core32_Util::substr( |
| 1069 | 1069 | $c, |
| 1070 | 1070 | self::secretbox_xsalsa20poly1305_ZEROBYTES |
| 1071 | 1071 | ), |
| 1072 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1072 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 16, 8 ), |
|
| 1073 | 1073 | 1, |
| 1074 | - (string) $subkey |
|
| 1074 | + (string)$subkey |
|
| 1075 | 1075 | ); |
| 1076 | 1076 | } |
| 1077 | 1077 | return $m; |
@@ -1089,25 +1089,25 @@ discard block |
||
| 1089 | 1089 | * @throws SodiumException |
| 1090 | 1090 | * @throws TypeError |
| 1091 | 1091 | */ |
| 1092 | - public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) |
|
| 1092 | + public static function secretbox_xchacha20poly1305( $plaintext, $nonce, $key ) |
|
| 1093 | 1093 | { |
| 1094 | 1094 | /** @var string $subkey */ |
| 1095 | 1095 | $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
| 1096 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
|
| 1096 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 0, 16 ), |
|
| 1097 | 1097 | $key |
| 1098 | 1098 | ); |
| 1099 | - $nonceLast = ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8); |
|
| 1099 | + $nonceLast = ParagonIE_Sodium_Core32_Util::substr( $nonce, 16, 8 ); |
|
| 1100 | 1100 | |
| 1101 | 1101 | /** @var string $block0 */ |
| 1102 | - $block0 = str_repeat("\x00", 32); |
|
| 1102 | + $block0 = str_repeat( "\x00", 32 ); |
|
| 1103 | 1103 | |
| 1104 | 1104 | /** @var int $mlen - Length of the plaintext message */ |
| 1105 | - $mlen = ParagonIE_Sodium_Core32_Util::strlen($plaintext); |
|
| 1105 | + $mlen = ParagonIE_Sodium_Core32_Util::strlen( $plaintext ); |
|
| 1106 | 1106 | $mlen0 = $mlen; |
| 1107 | - if ($mlen0 > 64 - self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1107 | + if ( $mlen0 > 64 - self::secretbox_xchacha20poly1305_ZEROBYTES ) { |
|
| 1108 | 1108 | $mlen0 = 64 - self::secretbox_xchacha20poly1305_ZEROBYTES; |
| 1109 | 1109 | } |
| 1110 | - $block0 .= ParagonIE_Sodium_Core32_Util::substr($plaintext, 0, $mlen0); |
|
| 1110 | + $block0 .= ParagonIE_Sodium_Core32_Util::substr( $plaintext, 0, $mlen0 ); |
|
| 1111 | 1111 | |
| 1112 | 1112 | /** @var string $block0 */ |
| 1113 | 1113 | $block0 = ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
@@ -1121,7 +1121,7 @@ discard block |
||
| 1121 | 1121 | $block0, |
| 1122 | 1122 | self::secretbox_xchacha20poly1305_ZEROBYTES |
| 1123 | 1123 | ); |
| 1124 | - if ($mlen > $mlen0) { |
|
| 1124 | + if ( $mlen > $mlen0 ) { |
|
| 1125 | 1125 | $c .= ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
| 1126 | 1126 | ParagonIE_Sodium_Core32_Util::substr( |
| 1127 | 1127 | $plaintext, |
@@ -1129,7 +1129,7 @@ discard block |
||
| 1129 | 1129 | ), |
| 1130 | 1130 | $nonceLast, |
| 1131 | 1131 | $subkey, |
| 1132 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1132 | + ParagonIE_Sodium_Core32_Util::store64_le( 1 ) |
|
| 1133 | 1133 | ); |
| 1134 | 1134 | } |
| 1135 | 1135 | $state = new ParagonIE_Sodium_Core32_Poly1305_State( |
@@ -1140,18 +1140,18 @@ discard block |
||
| 1140 | 1140 | ) |
| 1141 | 1141 | ); |
| 1142 | 1142 | try { |
| 1143 | - ParagonIE_Sodium_Compat::memzero($block0); |
|
| 1144 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1145 | - } catch (SodiumException $ex) { |
|
| 1143 | + ParagonIE_Sodium_Compat::memzero( $block0 ); |
|
| 1144 | + ParagonIE_Sodium_Compat::memzero( $subkey ); |
|
| 1145 | + } catch ( SodiumException $ex ) { |
|
| 1146 | 1146 | $block0 = null; |
| 1147 | 1147 | $subkey = null; |
| 1148 | 1148 | } |
| 1149 | 1149 | |
| 1150 | - $state->update($c); |
|
| 1150 | + $state->update( $c ); |
|
| 1151 | 1151 | |
| 1152 | 1152 | /** @var string $c - MAC || ciphertext */ |
| 1153 | 1153 | $c = $state->finish() . $c; |
| 1154 | - unset($state); |
|
| 1154 | + unset( $state ); |
|
| 1155 | 1155 | |
| 1156 | 1156 | return $c; |
| 1157 | 1157 | } |
@@ -1168,7 +1168,7 @@ discard block |
||
| 1168 | 1168 | * @throws SodiumException |
| 1169 | 1169 | * @throws TypeError |
| 1170 | 1170 | */ |
| 1171 | - public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) |
|
| 1171 | + public static function secretbox_xchacha20poly1305_open( $ciphertext, $nonce, $key ) |
|
| 1172 | 1172 | { |
| 1173 | 1173 | /** @var string $mac */ |
| 1174 | 1174 | $mac = ParagonIE_Sodium_Core32_Util::substr( |
@@ -1184,48 +1184,48 @@ discard block |
||
| 1184 | 1184 | ); |
| 1185 | 1185 | |
| 1186 | 1186 | /** @var int $clen */ |
| 1187 | - $clen = ParagonIE_Sodium_Core32_Util::strlen($c); |
|
| 1187 | + $clen = ParagonIE_Sodium_Core32_Util::strlen( $c ); |
|
| 1188 | 1188 | |
| 1189 | 1189 | /** @var string $subkey */ |
| 1190 | - $subkey = ParagonIE_Sodium_Core32_HChaCha20::hchacha20($nonce, $key); |
|
| 1190 | + $subkey = ParagonIE_Sodium_Core32_HChaCha20::hchacha20( $nonce, $key ); |
|
| 1191 | 1191 | |
| 1192 | 1192 | /** @var string $block0 */ |
| 1193 | 1193 | $block0 = ParagonIE_Sodium_Core32_ChaCha20::stream( |
| 1194 | 1194 | 64, |
| 1195 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1195 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 16, 8 ), |
|
| 1196 | 1196 | $subkey |
| 1197 | 1197 | ); |
| 1198 | 1198 | $verified = ParagonIE_Sodium_Core32_Poly1305::onetimeauth_verify( |
| 1199 | 1199 | $mac, |
| 1200 | 1200 | $c, |
| 1201 | - ParagonIE_Sodium_Core32_Util::substr($block0, 0, 32) |
|
| 1201 | + ParagonIE_Sodium_Core32_Util::substr( $block0, 0, 32 ) |
|
| 1202 | 1202 | ); |
| 1203 | 1203 | |
| 1204 | - if (!$verified) { |
|
| 1204 | + if ( ! $verified ) { |
|
| 1205 | 1205 | try { |
| 1206 | - ParagonIE_Sodium_Compat::memzero($subkey); |
|
| 1207 | - } catch (SodiumException $ex) { |
|
| 1206 | + ParagonIE_Sodium_Compat::memzero( $subkey ); |
|
| 1207 | + } catch ( SodiumException $ex ) { |
|
| 1208 | 1208 | $subkey = null; |
| 1209 | 1209 | } |
| 1210 | - throw new SodiumException('Invalid MAC'); |
|
| 1210 | + throw new SodiumException( 'Invalid MAC' ); |
|
| 1211 | 1211 | } |
| 1212 | 1212 | |
| 1213 | 1213 | /** @var string $m - Decrypted message */ |
| 1214 | 1214 | $m = ParagonIE_Sodium_Core32_Util::xorStrings( |
| 1215 | - ParagonIE_Sodium_Core32_Util::substr($block0, self::secretbox_xchacha20poly1305_ZEROBYTES), |
|
| 1216 | - ParagonIE_Sodium_Core32_Util::substr($c, 0, self::secretbox_xchacha20poly1305_ZEROBYTES) |
|
| 1215 | + ParagonIE_Sodium_Core32_Util::substr( $block0, self::secretbox_xchacha20poly1305_ZEROBYTES ), |
|
| 1216 | + ParagonIE_Sodium_Core32_Util::substr( $c, 0, self::secretbox_xchacha20poly1305_ZEROBYTES ) |
|
| 1217 | 1217 | ); |
| 1218 | 1218 | |
| 1219 | - if ($clen > self::secretbox_xchacha20poly1305_ZEROBYTES) { |
|
| 1219 | + if ( $clen > self::secretbox_xchacha20poly1305_ZEROBYTES ) { |
|
| 1220 | 1220 | // We had more than 1 block, so let's continue to decrypt the rest. |
| 1221 | 1221 | $m .= ParagonIE_Sodium_Core32_ChaCha20::streamXorIc( |
| 1222 | 1222 | ParagonIE_Sodium_Core32_Util::substr( |
| 1223 | 1223 | $c, |
| 1224 | 1224 | self::secretbox_xchacha20poly1305_ZEROBYTES |
| 1225 | 1225 | ), |
| 1226 | - ParagonIE_Sodium_Core32_Util::substr($nonce, 16, 8), |
|
| 1227 | - (string) $subkey, |
|
| 1228 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1226 | + ParagonIE_Sodium_Core32_Util::substr( $nonce, 16, 8 ), |
|
| 1227 | + (string)$subkey, |
|
| 1228 | + ParagonIE_Sodium_Core32_Util::store64_le( 1 ) |
|
| 1229 | 1229 | ); |
| 1230 | 1230 | } |
| 1231 | 1231 | return $m; |
@@ -1237,16 +1237,16 @@ discard block |
||
| 1237 | 1237 | * @throws Exception |
| 1238 | 1238 | * @throws SodiumException |
| 1239 | 1239 | */ |
| 1240 | - public static function secretstream_xchacha20poly1305_init_push($key) |
|
| 1240 | + public static function secretstream_xchacha20poly1305_init_push( $key ) |
|
| 1241 | 1241 | { |
| 1242 | 1242 | # randombytes_buf(out, crypto_secretstream_xchacha20poly1305_HEADERBYTES); |
| 1243 | - $out = random_bytes(24); |
|
| 1243 | + $out = random_bytes( 24 ); |
|
| 1244 | 1244 | |
| 1245 | 1245 | # crypto_core_hchacha20(state->k, out, k, NULL); |
| 1246 | - $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20($out, $key); |
|
| 1246 | + $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( $out, $key ); |
|
| 1247 | 1247 | $state = new ParagonIE_Sodium_Core32_SecretStream_State( |
| 1248 | 1248 | $subkey, |
| 1249 | - ParagonIE_Sodium_Core32_Util::substr($out, 16, 8) . str_repeat("\0", 4) |
|
| 1249 | + ParagonIE_Sodium_Core32_Util::substr( $out, 16, 8 ) . str_repeat( "\0", 4 ) |
|
| 1250 | 1250 | ); |
| 1251 | 1251 | |
| 1252 | 1252 | # _crypto_secretstream_xchacha20poly1305_counter_reset(state); |
@@ -1267,16 +1267,16 @@ discard block |
||
| 1267 | 1267 | * @return string Returns a state. |
| 1268 | 1268 | * @throws Exception |
| 1269 | 1269 | */ |
| 1270 | - public static function secretstream_xchacha20poly1305_init_pull($key, $header) |
|
| 1270 | + public static function secretstream_xchacha20poly1305_init_pull( $key, $header ) |
|
| 1271 | 1271 | { |
| 1272 | 1272 | # crypto_core_hchacha20(state->k, in, k, NULL); |
| 1273 | 1273 | $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
| 1274 | - ParagonIE_Sodium_Core32_Util::substr($header, 0, 16), |
|
| 1274 | + ParagonIE_Sodium_Core32_Util::substr( $header, 0, 16 ), |
|
| 1275 | 1275 | $key |
| 1276 | 1276 | ); |
| 1277 | 1277 | $state = new ParagonIE_Sodium_Core32_SecretStream_State( |
| 1278 | 1278 | $subkey, |
| 1279 | - ParagonIE_Sodium_Core32_Util::substr($header, 16) |
|
| 1279 | + ParagonIE_Sodium_Core32_Util::substr( $header, 16 ) |
|
| 1280 | 1280 | ); |
| 1281 | 1281 | $state->counterReset(); |
| 1282 | 1282 | # memcpy(STATE_INONCE(state), in + crypto_core_hchacha20_INPUTBYTES, |
@@ -1294,19 +1294,19 @@ discard block |
||
| 1294 | 1294 | * @return string |
| 1295 | 1295 | * @throws SodiumException |
| 1296 | 1296 | */ |
| 1297 | - public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) |
|
| 1297 | + public static function secretstream_xchacha20poly1305_push( &$state, $msg, $aad = '', $tag = 0 ) |
|
| 1298 | 1298 | { |
| 1299 | - $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
|
| 1299 | + $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString( $state ); |
|
| 1300 | 1300 | # crypto_onetimeauth_poly1305_state poly1305_state; |
| 1301 | 1301 | # unsigned char block[64U]; |
| 1302 | 1302 | # unsigned char slen[8U]; |
| 1303 | 1303 | # unsigned char *c; |
| 1304 | 1304 | # unsigned char *mac; |
| 1305 | 1305 | |
| 1306 | - $msglen = ParagonIE_Sodium_Core32_Util::strlen($msg); |
|
| 1307 | - $aadlen = ParagonIE_Sodium_Core32_Util::strlen($aad); |
|
| 1306 | + $msglen = ParagonIE_Sodium_Core32_Util::strlen( $msg ); |
|
| 1307 | + $aadlen = ParagonIE_Sodium_Core32_Util::strlen( $aad ); |
|
| 1308 | 1308 | |
| 1309 | - if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1309 | + if ( ( ( $msglen + 63 ) >> 6 ) > 0xfffffffe ) { |
|
| 1310 | 1310 | throw new SodiumException( |
| 1311 | 1311 | 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
| 1312 | 1312 | ); |
@@ -1323,62 +1323,62 @@ discard block |
||
| 1323 | 1323 | # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
| 1324 | 1324 | # sodium_memzero(block, sizeof block); |
| 1325 | 1325 | $auth = new ParagonIE_Sodium_Core32_Poly1305_State( |
| 1326 | - ParagonIE_Sodium_Core32_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1326 | + ParagonIE_Sodium_Core32_ChaCha20::ietfStream( 32, $st->getCombinedNonce(), $st->getKey() ) |
|
| 1327 | 1327 | ); |
| 1328 | 1328 | |
| 1329 | 1329 | # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
| 1330 | - $auth->update($aad); |
|
| 1330 | + $auth->update( $aad ); |
|
| 1331 | 1331 | |
| 1332 | 1332 | # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
| 1333 | 1333 | # (0x10 - adlen) & 0xf); |
| 1334 | - $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1334 | + $auth->update( str_repeat( "\0", ( ( 0x10 - $aadlen ) & 0xf ) ) ); |
|
| 1335 | 1335 | |
| 1336 | 1336 | # memset(block, 0, sizeof block); |
| 1337 | 1337 | # block[0] = tag; |
| 1338 | 1338 | # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
| 1339 | 1339 | # state->nonce, 1U, state->k); |
| 1340 | 1340 | $block = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
| 1341 | - ParagonIE_Sodium_Core32_Util::intToChr($tag) . str_repeat("\0", 63), |
|
| 1341 | + ParagonIE_Sodium_Core32_Util::intToChr( $tag ) . str_repeat( "\0", 63 ), |
|
| 1342 | 1342 | $st->getCombinedNonce(), |
| 1343 | 1343 | $st->getKey(), |
| 1344 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1344 | + ParagonIE_Sodium_Core32_Util::store64_le( 1 ) |
|
| 1345 | 1345 | ); |
| 1346 | 1346 | |
| 1347 | 1347 | # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
| 1348 | - $auth->update($block); |
|
| 1348 | + $auth->update( $block ); |
|
| 1349 | 1349 | |
| 1350 | 1350 | # out[0] = block[0]; |
| 1351 | - $out = $block[0]; |
|
| 1351 | + $out = $block[ 0 ]; |
|
| 1352 | 1352 | # c = out + (sizeof tag); |
| 1353 | 1353 | # crypto_stream_chacha20_ietf_xor_ic(c, m, mlen, state->nonce, 2U, state->k); |
| 1354 | 1354 | $cipher = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
| 1355 | 1355 | $msg, |
| 1356 | 1356 | $st->getCombinedNonce(), |
| 1357 | 1357 | $st->getKey(), |
| 1358 | - ParagonIE_Sodium_Core32_Util::store64_le(2) |
|
| 1358 | + ParagonIE_Sodium_Core32_Util::store64_le( 2 ) |
|
| 1359 | 1359 | ); |
| 1360 | 1360 | |
| 1361 | 1361 | # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
| 1362 | - $auth->update($cipher); |
|
| 1362 | + $auth->update( $cipher ); |
|
| 1363 | 1363 | |
| 1364 | 1364 | $out .= $cipher; |
| 1365 | - unset($cipher); |
|
| 1365 | + unset( $cipher ); |
|
| 1366 | 1366 | |
| 1367 | 1367 | # crypto_onetimeauth_poly1305_update |
| 1368 | 1368 | # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
| 1369 | - $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1369 | + $auth->update( str_repeat( "\0", ( ( 0x10 - 64 + $msglen ) & 0xf ) ) ); |
|
| 1370 | 1370 | |
| 1371 | 1371 | # STORE64_LE(slen, (uint64_t) adlen); |
| 1372 | - $slen = ParagonIE_Sodium_Core32_Util::store64_le($aadlen); |
|
| 1372 | + $slen = ParagonIE_Sodium_Core32_Util::store64_le( $aadlen ); |
|
| 1373 | 1373 | |
| 1374 | 1374 | # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
| 1375 | - $auth->update($slen); |
|
| 1375 | + $auth->update( $slen ); |
|
| 1376 | 1376 | |
| 1377 | 1377 | # STORE64_LE(slen, (sizeof block) + mlen); |
| 1378 | - $slen = ParagonIE_Sodium_Core32_Util::store64_le(64 + $msglen); |
|
| 1378 | + $slen = ParagonIE_Sodium_Core32_Util::store64_le( 64 + $msglen ); |
|
| 1379 | 1379 | |
| 1380 | 1380 | # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
| 1381 | - $auth->update($slen); |
|
| 1381 | + $auth->update( $slen ); |
|
| 1382 | 1382 | |
| 1383 | 1383 | # mac = c + mlen; |
| 1384 | 1384 | # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
@@ -1386,12 +1386,12 @@ discard block |
||
| 1386 | 1386 | $out .= $mac; |
| 1387 | 1387 | |
| 1388 | 1388 | # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
| 1389 | - unset($auth); |
|
| 1389 | + unset( $auth ); |
|
| 1390 | 1390 | |
| 1391 | 1391 | |
| 1392 | 1392 | # XOR_BUF(STATE_INONCE(state), mac, |
| 1393 | 1393 | # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
| 1394 | - $st->xorNonce($mac); |
|
| 1394 | + $st->xorNonce( $mac ); |
|
| 1395 | 1395 | |
| 1396 | 1396 | # sodium_increment(STATE_COUNTER(state), |
| 1397 | 1397 | # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
@@ -1400,15 +1400,15 @@ discard block |
||
| 1400 | 1400 | $state = $st->toString(); |
| 1401 | 1401 | |
| 1402 | 1402 | /** @var bool $rekey */ |
| 1403 | - $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1403 | + $rekey = ( $tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY ) !== 0; |
|
| 1404 | 1404 | # if ((tag & crypto_secretstream_xchacha20poly1305_TAG_REKEY) != 0 || |
| 1405 | 1405 | # sodium_is_zero(STATE_COUNTER(state), |
| 1406 | 1406 | # crypto_secretstream_xchacha20poly1305_COUNTERBYTES)) { |
| 1407 | 1407 | # crypto_secretstream_xchacha20poly1305_rekey(state); |
| 1408 | 1408 | # } |
| 1409 | - if ($rekey || $st->needsRekey()) { |
|
| 1409 | + if ( $rekey || $st->needsRekey() ) { |
|
| 1410 | 1410 | // DO REKEY |
| 1411 | - self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1411 | + self::secretstream_xchacha20poly1305_rekey( $state ); |
|
| 1412 | 1412 | } |
| 1413 | 1413 | # if (outlen_p != NULL) { |
| 1414 | 1414 | # *outlen_p = crypto_secretstream_xchacha20poly1305_ABYTES + mlen; |
@@ -1423,19 +1423,19 @@ discard block |
||
| 1423 | 1423 | * @return bool|array{0: string, 1: int} |
| 1424 | 1424 | * @throws SodiumException |
| 1425 | 1425 | */ |
| 1426 | - public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') |
|
| 1426 | + public static function secretstream_xchacha20poly1305_pull( &$state, $cipher, $aad = '' ) |
|
| 1427 | 1427 | { |
| 1428 | - $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
|
| 1428 | + $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString( $state ); |
|
| 1429 | 1429 | |
| 1430 | - $cipherlen = ParagonIE_Sodium_Core32_Util::strlen($cipher); |
|
| 1430 | + $cipherlen = ParagonIE_Sodium_Core32_Util::strlen( $cipher ); |
|
| 1431 | 1431 | # mlen = inlen - crypto_secretstream_xchacha20poly1305_ABYTES; |
| 1432 | 1432 | $msglen = $cipherlen - ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_ABYTES; |
| 1433 | - $aadlen = ParagonIE_Sodium_Core32_Util::strlen($aad); |
|
| 1433 | + $aadlen = ParagonIE_Sodium_Core32_Util::strlen( $aad ); |
|
| 1434 | 1434 | |
| 1435 | 1435 | # if (mlen > crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX) { |
| 1436 | 1436 | # sodium_misuse(); |
| 1437 | 1437 | # } |
| 1438 | - if ((($msglen + 63) >> 6) > 0xfffffffe) { |
|
| 1438 | + if ( ( ( $msglen + 63 ) >> 6 ) > 0xfffffffe ) { |
|
| 1439 | 1439 | throw new SodiumException( |
| 1440 | 1440 | 'message cannot be larger than SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX bytes' |
| 1441 | 1441 | ); |
@@ -1445,15 +1445,15 @@ discard block |
||
| 1445 | 1445 | # crypto_onetimeauth_poly1305_init(&poly1305_state, block); |
| 1446 | 1446 | # sodium_memzero(block, sizeof block); |
| 1447 | 1447 | $auth = new ParagonIE_Sodium_Core32_Poly1305_State( |
| 1448 | - ParagonIE_Sodium_Core32_ChaCha20::ietfStream(32, $st->getCombinedNonce(), $st->getKey()) |
|
| 1448 | + ParagonIE_Sodium_Core32_ChaCha20::ietfStream( 32, $st->getCombinedNonce(), $st->getKey() ) |
|
| 1449 | 1449 | ); |
| 1450 | 1450 | |
| 1451 | 1451 | # crypto_onetimeauth_poly1305_update(&poly1305_state, ad, adlen); |
| 1452 | - $auth->update($aad); |
|
| 1452 | + $auth->update( $aad ); |
|
| 1453 | 1453 | |
| 1454 | 1454 | # crypto_onetimeauth_poly1305_update(&poly1305_state, _pad0, |
| 1455 | 1455 | # (0x10 - adlen) & 0xf); |
| 1456 | - $auth->update(str_repeat("\0", ((0x10 - $aadlen) & 0xf))); |
|
| 1456 | + $auth->update( str_repeat( "\0", ( ( 0x10 - $aadlen ) & 0xf ) ) ); |
|
| 1457 | 1457 | |
| 1458 | 1458 | |
| 1459 | 1459 | # memset(block, 0, sizeof block); |
@@ -1461,36 +1461,36 @@ discard block |
||
| 1461 | 1461 | # crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, |
| 1462 | 1462 | # state->nonce, 1U, state->k); |
| 1463 | 1463 | $block = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
| 1464 | - $cipher[0] . str_repeat("\0", 63), |
|
| 1464 | + $cipher[ 0 ] . str_repeat( "\0", 63 ), |
|
| 1465 | 1465 | $st->getCombinedNonce(), |
| 1466 | 1466 | $st->getKey(), |
| 1467 | - ParagonIE_Sodium_Core32_Util::store64_le(1) |
|
| 1467 | + ParagonIE_Sodium_Core32_Util::store64_le( 1 ) |
|
| 1468 | 1468 | ); |
| 1469 | 1469 | # tag = block[0]; |
| 1470 | 1470 | # block[0] = in[0]; |
| 1471 | 1471 | # crypto_onetimeauth_poly1305_update(&poly1305_state, block, sizeof block); |
| 1472 | - $tag = ParagonIE_Sodium_Core32_Util::chrToInt($block[0]); |
|
| 1473 | - $block[0] = $cipher[0]; |
|
| 1474 | - $auth->update($block); |
|
| 1472 | + $tag = ParagonIE_Sodium_Core32_Util::chrToInt( $block[ 0 ] ); |
|
| 1473 | + $block[ 0 ] = $cipher[ 0 ]; |
|
| 1474 | + $auth->update( $block ); |
|
| 1475 | 1475 | |
| 1476 | 1476 | |
| 1477 | 1477 | # c = in + (sizeof tag); |
| 1478 | 1478 | # crypto_onetimeauth_poly1305_update(&poly1305_state, c, mlen); |
| 1479 | - $auth->update(ParagonIE_Sodium_Core32_Util::substr($cipher, 1, $msglen)); |
|
| 1479 | + $auth->update( ParagonIE_Sodium_Core32_Util::substr( $cipher, 1, $msglen ) ); |
|
| 1480 | 1480 | |
| 1481 | 1481 | # crypto_onetimeauth_poly1305_update |
| 1482 | 1482 | # (&poly1305_state, _pad0, (0x10 - (sizeof block) + mlen) & 0xf); |
| 1483 | - $auth->update(str_repeat("\0", ((0x10 - 64 + $msglen) & 0xf))); |
|
| 1483 | + $auth->update( str_repeat( "\0", ( ( 0x10 - 64 + $msglen ) & 0xf ) ) ); |
|
| 1484 | 1484 | |
| 1485 | 1485 | # STORE64_LE(slen, (uint64_t) adlen); |
| 1486 | 1486 | # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
| 1487 | - $slen = ParagonIE_Sodium_Core32_Util::store64_le($aadlen); |
|
| 1488 | - $auth->update($slen); |
|
| 1487 | + $slen = ParagonIE_Sodium_Core32_Util::store64_le( $aadlen ); |
|
| 1488 | + $auth->update( $slen ); |
|
| 1489 | 1489 | |
| 1490 | 1490 | # STORE64_LE(slen, (sizeof block) + mlen); |
| 1491 | 1491 | # crypto_onetimeauth_poly1305_update(&poly1305_state, slen, sizeof slen); |
| 1492 | - $slen = ParagonIE_Sodium_Core32_Util::store64_le(64 + $msglen); |
|
| 1493 | - $auth->update($slen); |
|
| 1492 | + $slen = ParagonIE_Sodium_Core32_Util::store64_le( 64 + $msglen ); |
|
| 1493 | + $auth->update( $slen ); |
|
| 1494 | 1494 | |
| 1495 | 1495 | # crypto_onetimeauth_poly1305_final(&poly1305_state, mac); |
| 1496 | 1496 | # sodium_memzero(&poly1305_state, sizeof poly1305_state); |
@@ -1502,22 +1502,22 @@ discard block |
||
| 1502 | 1502 | # return -1; |
| 1503 | 1503 | # } |
| 1504 | 1504 | |
| 1505 | - $stored = ParagonIE_Sodium_Core32_Util::substr($cipher, $msglen + 1, 16); |
|
| 1506 | - if (!ParagonIE_Sodium_Core32_Util::hashEquals($mac, $stored)) { |
|
| 1505 | + $stored = ParagonIE_Sodium_Core32_Util::substr( $cipher, $msglen + 1, 16 ); |
|
| 1506 | + if ( ! ParagonIE_Sodium_Core32_Util::hashEquals( $mac, $stored ) ) { |
|
| 1507 | 1507 | return false; |
| 1508 | 1508 | } |
| 1509 | 1509 | |
| 1510 | 1510 | # crypto_stream_chacha20_ietf_xor_ic(m, c, mlen, state->nonce, 2U, state->k); |
| 1511 | 1511 | $out = ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
| 1512 | - ParagonIE_Sodium_Core32_Util::substr($cipher, 1, $msglen), |
|
| 1512 | + ParagonIE_Sodium_Core32_Util::substr( $cipher, 1, $msglen ), |
|
| 1513 | 1513 | $st->getCombinedNonce(), |
| 1514 | 1514 | $st->getKey(), |
| 1515 | - ParagonIE_Sodium_Core32_Util::store64_le(2) |
|
| 1515 | + ParagonIE_Sodium_Core32_Util::store64_le( 2 ) |
|
| 1516 | 1516 | ); |
| 1517 | 1517 | |
| 1518 | 1518 | # XOR_BUF(STATE_INONCE(state), mac, |
| 1519 | 1519 | # crypto_secretstream_xchacha20poly1305_INONCEBYTES); |
| 1520 | - $st->xorNonce($mac); |
|
| 1520 | + $st->xorNonce( $mac ); |
|
| 1521 | 1521 | |
| 1522 | 1522 | # sodium_increment(STATE_COUNTER(state), |
| 1523 | 1523 | # crypto_secretstream_xchacha20poly1305_COUNTERBYTES); |
@@ -1533,12 +1533,12 @@ discard block |
||
| 1533 | 1533 | $state = $st->toString(); |
| 1534 | 1534 | |
| 1535 | 1535 | /** @var bool $rekey */ |
| 1536 | - $rekey = ($tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY) !== 0; |
|
| 1537 | - if ($rekey || $st->needsRekey()) { |
|
| 1536 | + $rekey = ( $tag & ParagonIE_Sodium_Compat::CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY ) !== 0; |
|
| 1537 | + if ( $rekey || $st->needsRekey() ) { |
|
| 1538 | 1538 | // DO REKEY |
| 1539 | - self::secretstream_xchacha20poly1305_rekey($state); |
|
| 1539 | + self::secretstream_xchacha20poly1305_rekey( $state ); |
|
| 1540 | 1540 | } |
| 1541 | - return array($out, $tag); |
|
| 1541 | + return array( $out, $tag ); |
|
| 1542 | 1542 | } |
| 1543 | 1543 | |
| 1544 | 1544 | /** |
@@ -1546,9 +1546,9 @@ discard block |
||
| 1546 | 1546 | * @return void |
| 1547 | 1547 | * @throws SodiumException |
| 1548 | 1548 | */ |
| 1549 | - public static function secretstream_xchacha20poly1305_rekey(&$state) |
|
| 1549 | + public static function secretstream_xchacha20poly1305_rekey( &$state ) |
|
| 1550 | 1550 | { |
| 1551 | - $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
|
| 1551 | + $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString( $state ); |
|
| 1552 | 1552 | # unsigned char new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + |
| 1553 | 1553 | # crypto_secretstream_xchacha20poly1305_INONCEBYTES]; |
| 1554 | 1554 | # size_t i; |
@@ -1561,18 +1561,18 @@ discard block |
||
| 1561 | 1561 | # new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + i] = |
| 1562 | 1562 | # STATE_INONCE(state)[i]; |
| 1563 | 1563 | # } |
| 1564 | - $new_key_and_inonce .= ParagonIE_Sodium_Core32_Util::substR($st->getNonce(), 0, 8); |
|
| 1564 | + $new_key_and_inonce .= ParagonIE_Sodium_Core32_Util::substR( $st->getNonce(), 0, 8 ); |
|
| 1565 | 1565 | |
| 1566 | 1566 | # crypto_stream_chacha20_ietf_xor(new_key_and_inonce, new_key_and_inonce, |
| 1567 | 1567 | # sizeof new_key_and_inonce, |
| 1568 | 1568 | # state->nonce, state->k); |
| 1569 | 1569 | |
| 1570 | - $st->rekey(ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1570 | + $st->rekey( ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc( |
|
| 1571 | 1571 | $new_key_and_inonce, |
| 1572 | 1572 | $st->getCombinedNonce(), |
| 1573 | 1573 | $st->getKey(), |
| 1574 | - ParagonIE_Sodium_Core32_Util::store64_le(0) |
|
| 1575 | - )); |
|
| 1574 | + ParagonIE_Sodium_Core32_Util::store64_le( 0 ) |
|
| 1575 | + ) ); |
|
| 1576 | 1576 | |
| 1577 | 1577 | # for (i = 0U; i < crypto_stream_chacha20_ietf_KEYBYTES; i++) { |
| 1578 | 1578 | # state->k[i] = new_key_and_inonce[i]; |
@@ -1598,9 +1598,9 @@ discard block |
||
| 1598 | 1598 | * @throws SodiumException |
| 1599 | 1599 | * @throws TypeError |
| 1600 | 1600 | */ |
| 1601 | - public static function sign_detached($message, $sk) |
|
| 1601 | + public static function sign_detached( $message, $sk ) |
|
| 1602 | 1602 | { |
| 1603 | - return ParagonIE_Sodium_Core32_Ed25519::sign_detached($message, $sk); |
|
| 1603 | + return ParagonIE_Sodium_Core32_Ed25519::sign_detached( $message, $sk ); |
|
| 1604 | 1604 | } |
| 1605 | 1605 | |
| 1606 | 1606 | /** |
@@ -1614,9 +1614,9 @@ discard block |
||
| 1614 | 1614 | * @throws SodiumException |
| 1615 | 1615 | * @throws TypeError |
| 1616 | 1616 | */ |
| 1617 | - public static function sign($message, $sk) |
|
| 1617 | + public static function sign( $message, $sk ) |
|
| 1618 | 1618 | { |
| 1619 | - return ParagonIE_Sodium_Core32_Ed25519::sign($message, $sk); |
|
| 1619 | + return ParagonIE_Sodium_Core32_Ed25519::sign( $message, $sk ); |
|
| 1620 | 1620 | } |
| 1621 | 1621 | |
| 1622 | 1622 | /** |
@@ -1630,9 +1630,9 @@ discard block |
||
| 1630 | 1630 | * @throws SodiumException |
| 1631 | 1631 | * @throws TypeError |
| 1632 | 1632 | */ |
| 1633 | - public static function sign_open($signedMessage, $pk) |
|
| 1633 | + public static function sign_open( $signedMessage, $pk ) |
|
| 1634 | 1634 | { |
| 1635 | - return ParagonIE_Sodium_Core32_Ed25519::sign_open($signedMessage, $pk); |
|
| 1635 | + return ParagonIE_Sodium_Core32_Ed25519::sign_open( $signedMessage, $pk ); |
|
| 1636 | 1636 | } |
| 1637 | 1637 | |
| 1638 | 1638 | /** |
@@ -1647,8 +1647,8 @@ discard block |
||
| 1647 | 1647 | * @throws SodiumException |
| 1648 | 1648 | * @throws TypeError |
| 1649 | 1649 | */ |
| 1650 | - public static function sign_verify_detached($signature, $message, $pk) |
|
| 1650 | + public static function sign_verify_detached( $signature, $message, $pk ) |
|
| 1651 | 1651 | { |
| 1652 | - return ParagonIE_Sodium_Core32_Ed25519::verify_detached($signature, $message, $pk); |
|
| 1652 | + return ParagonIE_Sodium_Core32_Ed25519::verify_detached( $signature, $message, $pk ); |
|
| 1653 | 1653 | } |
| 1654 | 1654 | } |
@@ -12,8 +12,7 @@ discard block |
||
| 12 | 12 | * If you are using this library, you should be using |
| 13 | 13 | * ParagonIE_Sodium_Compat in your code, not this class. |
| 14 | 14 | */ |
| 15 | -abstract class ParagonIE_Sodium_Crypto32 |
|
| 16 | -{ |
|
| 15 | +abstract class ParagonIE_Sodium_Crypto32 { |
|
| 17 | 16 | const aead_chacha20poly1305_KEYBYTES = 32; |
| 18 | 17 | const aead_chacha20poly1305_NSECBYTES = 0; |
| 19 | 18 | const aead_chacha20poly1305_NPUBBYTES = 8; |
@@ -381,8 +380,7 @@ discard block |
||
| 381 | 380 | * @return string |
| 382 | 381 | * @throws TypeError |
| 383 | 382 | */ |
| 384 | - public static function auth($message, $key) |
|
| 385 | - { |
|
| 383 | + public static function auth($message, $key) { |
|
| 386 | 384 | return ParagonIE_Sodium_Core32_Util::substr( |
| 387 | 385 | hash_hmac('sha512', $message, $key, true), |
| 388 | 386 | 0, |
@@ -402,8 +400,7 @@ discard block |
||
| 402 | 400 | * @throws SodiumException |
| 403 | 401 | * @throws TypeError |
| 404 | 402 | */ |
| 405 | - public static function auth_verify($mac, $message, $key) |
|
| 406 | - { |
|
| 403 | + public static function auth_verify($mac, $message, $key) { |
|
| 407 | 404 | return ParagonIE_Sodium_Core32_Util::hashEquals( |
| 408 | 405 | $mac, |
| 409 | 406 | self::auth($message, $key) |
@@ -422,8 +419,7 @@ discard block |
||
| 422 | 419 | * @throws SodiumException |
| 423 | 420 | * @throws TypeError |
| 424 | 421 | */ |
| 425 | - public static function box($plaintext, $nonce, $keypair) |
|
| 426 | - { |
|
| 422 | + public static function box($plaintext, $nonce, $keypair) { |
|
| 427 | 423 | return self::secretbox( |
| 428 | 424 | $plaintext, |
| 429 | 425 | $nonce, |
@@ -445,8 +441,7 @@ discard block |
||
| 445 | 441 | * @throws SodiumException |
| 446 | 442 | * @throws TypeError |
| 447 | 443 | */ |
| 448 | - public static function box_seal($message, $publicKey) |
|
| 449 | - { |
|
| 444 | + public static function box_seal($message, $publicKey) { |
|
| 450 | 445 | /** @var string $ephemeralKeypair */ |
| 451 | 446 | $ephemeralKeypair = self::box_keypair(); |
| 452 | 447 | |
@@ -491,8 +486,7 @@ discard block |
||
| 491 | 486 | * @throws SodiumException |
| 492 | 487 | * @throws TypeError |
| 493 | 488 | */ |
| 494 | - public static function box_seal_open($message, $keypair) |
|
| 495 | - { |
|
| 489 | + public static function box_seal_open($message, $keypair) { |
|
| 496 | 490 | /** @var string $ephemeralPK */ |
| 497 | 491 | $ephemeralPK = ParagonIE_Sodium_Core32_Util::substr($message, 0, 32); |
| 498 | 492 | |
@@ -540,8 +534,7 @@ discard block |
||
| 540 | 534 | * @throws SodiumException |
| 541 | 535 | * @throws TypeError |
| 542 | 536 | */ |
| 543 | - public static function box_beforenm($sk, $pk) |
|
| 544 | - { |
|
| 537 | + public static function box_beforenm($sk, $pk) { |
|
| 545 | 538 | return ParagonIE_Sodium_Core32_HSalsa20::hsalsa20( |
| 546 | 539 | str_repeat("\x00", 16), |
| 547 | 540 | self::scalarmult($sk, $pk) |
@@ -556,8 +549,7 @@ discard block |
||
| 556 | 549 | * @throws SodiumException |
| 557 | 550 | * @throws TypeError |
| 558 | 551 | */ |
| 559 | - public static function box_keypair() |
|
| 560 | - { |
|
| 552 | + public static function box_keypair() { |
|
| 561 | 553 | $sKey = random_bytes(32); |
| 562 | 554 | $pKey = self::scalarmult_base($sKey); |
| 563 | 555 | return $sKey . $pKey; |
@@ -569,8 +561,7 @@ discard block |
||
| 569 | 561 | * @throws SodiumException |
| 570 | 562 | * @throws TypeError |
| 571 | 563 | */ |
| 572 | - public static function box_seed_keypair($seed) |
|
| 573 | - { |
|
| 564 | + public static function box_seed_keypair($seed) { |
|
| 574 | 565 | $sKey = ParagonIE_Sodium_Core32_Util::substr( |
| 575 | 566 | hash('sha512', $seed, true), |
| 576 | 567 | 0, |
@@ -588,8 +579,7 @@ discard block |
||
| 588 | 579 | * @return string |
| 589 | 580 | * @throws TypeError |
| 590 | 581 | */ |
| 591 | - public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) |
|
| 592 | - { |
|
| 582 | + public static function box_keypair_from_secretkey_and_publickey($sKey, $pKey) { |
|
| 593 | 583 | return ParagonIE_Sodium_Core32_Util::substr($sKey, 0, 32) . |
| 594 | 584 | ParagonIE_Sodium_Core32_Util::substr($pKey, 0, 32); |
| 595 | 585 | } |
@@ -602,8 +592,7 @@ discard block |
||
| 602 | 592 | * @throws RangeException |
| 603 | 593 | * @throws TypeError |
| 604 | 594 | */ |
| 605 | - public static function box_secretkey($keypair) |
|
| 606 | - { |
|
| 595 | + public static function box_secretkey($keypair) { |
|
| 607 | 596 | if (ParagonIE_Sodium_Core32_Util::strlen($keypair) !== 64) { |
| 608 | 597 | throw new RangeException( |
| 609 | 598 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
@@ -620,8 +609,7 @@ discard block |
||
| 620 | 609 | * @throws RangeException |
| 621 | 610 | * @throws TypeError |
| 622 | 611 | */ |
| 623 | - public static function box_publickey($keypair) |
|
| 624 | - { |
|
| 612 | + public static function box_publickey($keypair) { |
|
| 625 | 613 | if (ParagonIE_Sodium_Core32_Util::strlen($keypair) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES) { |
| 626 | 614 | throw new RangeException( |
| 627 | 615 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES bytes long.' |
@@ -639,8 +627,7 @@ discard block |
||
| 639 | 627 | * @throws SodiumException |
| 640 | 628 | * @throws TypeError |
| 641 | 629 | */ |
| 642 | - public static function box_publickey_from_secretkey($sKey) |
|
| 643 | - { |
|
| 630 | + public static function box_publickey_from_secretkey($sKey) { |
|
| 644 | 631 | if (ParagonIE_Sodium_Core32_Util::strlen($sKey) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES) { |
| 645 | 632 | throw new RangeException( |
| 646 | 633 | 'Must be ParagonIE_Sodium_Compat::CRYPTO_BOX_SECRETKEYBYTES bytes long.' |
@@ -661,8 +648,7 @@ discard block |
||
| 661 | 648 | * @throws SodiumException |
| 662 | 649 | * @throws TypeError |
| 663 | 650 | */ |
| 664 | - public static function box_open($ciphertext, $nonce, $keypair) |
|
| 665 | - { |
|
| 651 | + public static function box_open($ciphertext, $nonce, $keypair) { |
|
| 666 | 652 | return self::secretbox_open( |
| 667 | 653 | $ciphertext, |
| 668 | 654 | $nonce, |
@@ -686,8 +672,7 @@ discard block |
||
| 686 | 672 | * @throws SodiumException |
| 687 | 673 | * @throws TypeError |
| 688 | 674 | */ |
| 689 | - public static function generichash($message, $key = '', $outlen = 32) |
|
| 690 | - { |
|
| 675 | + public static function generichash($message, $key = '', $outlen = 32) { |
|
| 691 | 676 | // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
| 692 | 677 | ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
| 693 | 678 | |
@@ -727,8 +712,7 @@ discard block |
||
| 727 | 712 | * @throws SodiumException |
| 728 | 713 | * @throws TypeError |
| 729 | 714 | */ |
| 730 | - public static function generichash_final($ctx, $outlen = 32) |
|
| 731 | - { |
|
| 715 | + public static function generichash_final($ctx, $outlen = 32) { |
|
| 732 | 716 | if (!is_string($ctx)) { |
| 733 | 717 | throw new TypeError('Context must be a string'); |
| 734 | 718 | } |
@@ -757,8 +741,7 @@ discard block |
||
| 757 | 741 | * @throws SodiumException |
| 758 | 742 | * @throws TypeError |
| 759 | 743 | */ |
| 760 | - public static function generichash_init($key = '', $outputLength = 32) |
|
| 761 | - { |
|
| 744 | + public static function generichash_init($key = '', $outputLength = 32) { |
|
| 762 | 745 | // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
| 763 | 746 | ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
| 764 | 747 | |
@@ -834,8 +817,7 @@ discard block |
||
| 834 | 817 | * @throws SodiumException |
| 835 | 818 | * @throws TypeError |
| 836 | 819 | */ |
| 837 | - public static function generichash_update($ctx, $message) |
|
| 838 | - { |
|
| 820 | + public static function generichash_update($ctx, $message) { |
|
| 839 | 821 | // This ensures that ParagonIE_Sodium_Core32_BLAKE2b::$iv is initialized |
| 840 | 822 | ParagonIE_Sodium_Core32_BLAKE2b::pseudoConstructor(); |
| 841 | 823 | |
@@ -863,8 +845,7 @@ discard block |
||
| 863 | 845 | * @throws SodiumException |
| 864 | 846 | * @throws TypeError |
| 865 | 847 | */ |
| 866 | - public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) |
|
| 867 | - { |
|
| 848 | + public static function keyExchange($my_sk, $their_pk, $client_pk, $server_pk) { |
|
| 868 | 849 | return self::generichash( |
| 869 | 850 | self::scalarmult($my_sk, $their_pk) . |
| 870 | 851 | $client_pk . |
@@ -884,8 +865,7 @@ discard block |
||
| 884 | 865 | * @throws SodiumException |
| 885 | 866 | * @throws TypeError |
| 886 | 867 | */ |
| 887 | - public static function scalarmult($sKey, $pKey) |
|
| 888 | - { |
|
| 868 | + public static function scalarmult($sKey, $pKey) { |
|
| 889 | 869 | $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10($sKey, $pKey); |
| 890 | 870 | self::scalarmult_throw_if_zero($q); |
| 891 | 871 | return $q; |
@@ -901,8 +881,7 @@ discard block |
||
| 901 | 881 | * @throws SodiumException |
| 902 | 882 | * @throws TypeError |
| 903 | 883 | */ |
| 904 | - public static function scalarmult_base($secret) |
|
| 905 | - { |
|
| 884 | + public static function scalarmult_base($secret) { |
|
| 906 | 885 | $q = ParagonIE_Sodium_Core32_X25519::crypto_scalarmult_curve25519_ref10_base($secret); |
| 907 | 886 | self::scalarmult_throw_if_zero($q); |
| 908 | 887 | return $q; |
@@ -916,8 +895,7 @@ discard block |
||
| 916 | 895 | * @throws SodiumException |
| 917 | 896 | * @throws TypeError |
| 918 | 897 | */ |
| 919 | - protected static function scalarmult_throw_if_zero($q) |
|
| 920 | - { |
|
| 898 | + protected static function scalarmult_throw_if_zero($q) { |
|
| 921 | 899 | $d = 0; |
| 922 | 900 | for ($i = 0; $i < self::box_curve25519xsalsa20poly1305_SECRETKEYBYTES; ++$i) { |
| 923 | 901 | $d |= ParagonIE_Sodium_Core32_Util::chrToInt($q[$i]); |
@@ -941,8 +919,7 @@ discard block |
||
| 941 | 919 | * @throws SodiumException |
| 942 | 920 | * @throws TypeError |
| 943 | 921 | */ |
| 944 | - public static function secretbox($plaintext, $nonce, $key) |
|
| 945 | - { |
|
| 922 | + public static function secretbox($plaintext, $nonce, $key) { |
|
| 946 | 923 | /** @var string $subkey */ |
| 947 | 924 | $subkey = ParagonIE_Sodium_Core32_HSalsa20::hsalsa20($nonce, $key); |
| 948 | 925 | |
@@ -1016,8 +993,7 @@ discard block |
||
| 1016 | 993 | * @throws SodiumException |
| 1017 | 994 | * @throws TypeError |
| 1018 | 995 | */ |
| 1019 | - public static function secretbox_open($ciphertext, $nonce, $key) |
|
| 1020 | - { |
|
| 996 | + public static function secretbox_open($ciphertext, $nonce, $key) { |
|
| 1021 | 997 | /** @var string $mac */ |
| 1022 | 998 | $mac = ParagonIE_Sodium_Core32_Util::substr( |
| 1023 | 999 | $ciphertext, |
@@ -1089,8 +1065,7 @@ discard block |
||
| 1089 | 1065 | * @throws SodiumException |
| 1090 | 1066 | * @throws TypeError |
| 1091 | 1067 | */ |
| 1092 | - public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) |
|
| 1093 | - { |
|
| 1068 | + public static function secretbox_xchacha20poly1305($plaintext, $nonce, $key) { |
|
| 1094 | 1069 | /** @var string $subkey */ |
| 1095 | 1070 | $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
| 1096 | 1071 | ParagonIE_Sodium_Core32_Util::substr($nonce, 0, 16), |
@@ -1168,8 +1143,7 @@ discard block |
||
| 1168 | 1143 | * @throws SodiumException |
| 1169 | 1144 | * @throws TypeError |
| 1170 | 1145 | */ |
| 1171 | - public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) |
|
| 1172 | - { |
|
| 1146 | + public static function secretbox_xchacha20poly1305_open($ciphertext, $nonce, $key) { |
|
| 1173 | 1147 | /** @var string $mac */ |
| 1174 | 1148 | $mac = ParagonIE_Sodium_Core32_Util::substr( |
| 1175 | 1149 | $ciphertext, |
@@ -1237,8 +1211,7 @@ discard block |
||
| 1237 | 1211 | * @throws Exception |
| 1238 | 1212 | * @throws SodiumException |
| 1239 | 1213 | */ |
| 1240 | - public static function secretstream_xchacha20poly1305_init_push($key) |
|
| 1241 | - { |
|
| 1214 | + public static function secretstream_xchacha20poly1305_init_push($key) { |
|
| 1242 | 1215 | # randombytes_buf(out, crypto_secretstream_xchacha20poly1305_HEADERBYTES); |
| 1243 | 1216 | $out = random_bytes(24); |
| 1244 | 1217 | |
@@ -1267,8 +1240,7 @@ discard block |
||
| 1267 | 1240 | * @return string Returns a state. |
| 1268 | 1241 | * @throws Exception |
| 1269 | 1242 | */ |
| 1270 | - public static function secretstream_xchacha20poly1305_init_pull($key, $header) |
|
| 1271 | - { |
|
| 1243 | + public static function secretstream_xchacha20poly1305_init_pull($key, $header) { |
|
| 1272 | 1244 | # crypto_core_hchacha20(state->k, in, k, NULL); |
| 1273 | 1245 | $subkey = ParagonIE_Sodium_Core32_HChaCha20::hChaCha20( |
| 1274 | 1246 | ParagonIE_Sodium_Core32_Util::substr($header, 0, 16), |
@@ -1294,8 +1266,7 @@ discard block |
||
| 1294 | 1266 | * @return string |
| 1295 | 1267 | * @throws SodiumException |
| 1296 | 1268 | */ |
| 1297 | - public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) |
|
| 1298 | - { |
|
| 1269 | + public static function secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) { |
|
| 1299 | 1270 | $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
| 1300 | 1271 | # crypto_onetimeauth_poly1305_state poly1305_state; |
| 1301 | 1272 | # unsigned char block[64U]; |
@@ -1423,8 +1394,7 @@ discard block |
||
| 1423 | 1394 | * @return bool|array{0: string, 1: int} |
| 1424 | 1395 | * @throws SodiumException |
| 1425 | 1396 | */ |
| 1426 | - public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') |
|
| 1427 | - { |
|
| 1397 | + public static function secretstream_xchacha20poly1305_pull(&$state, $cipher, $aad = '') { |
|
| 1428 | 1398 | $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
| 1429 | 1399 | |
| 1430 | 1400 | $cipherlen = ParagonIE_Sodium_Core32_Util::strlen($cipher); |
@@ -1546,8 +1516,7 @@ discard block |
||
| 1546 | 1516 | * @return void |
| 1547 | 1517 | * @throws SodiumException |
| 1548 | 1518 | */ |
| 1549 | - public static function secretstream_xchacha20poly1305_rekey(&$state) |
|
| 1550 | - { |
|
| 1519 | + public static function secretstream_xchacha20poly1305_rekey(&$state) { |
|
| 1551 | 1520 | $st = ParagonIE_Sodium_Core32_SecretStream_State::fromString($state); |
| 1552 | 1521 | # unsigned char new_key_and_inonce[crypto_stream_chacha20_ietf_KEYBYTES + |
| 1553 | 1522 | # crypto_secretstream_xchacha20poly1305_INONCEBYTES]; |
@@ -1598,8 +1567,7 @@ discard block |
||
| 1598 | 1567 | * @throws SodiumException |
| 1599 | 1568 | * @throws TypeError |
| 1600 | 1569 | */ |
| 1601 | - public static function sign_detached($message, $sk) |
|
| 1602 | - { |
|
| 1570 | + public static function sign_detached($message, $sk) { |
|
| 1603 | 1571 | return ParagonIE_Sodium_Core32_Ed25519::sign_detached($message, $sk); |
| 1604 | 1572 | } |
| 1605 | 1573 | |
@@ -1614,8 +1582,7 @@ discard block |
||
| 1614 | 1582 | * @throws SodiumException |
| 1615 | 1583 | * @throws TypeError |
| 1616 | 1584 | */ |
| 1617 | - public static function sign($message, $sk) |
|
| 1618 | - { |
|
| 1585 | + public static function sign($message, $sk) { |
|
| 1619 | 1586 | return ParagonIE_Sodium_Core32_Ed25519::sign($message, $sk); |
| 1620 | 1587 | } |
| 1621 | 1588 | |
@@ -1630,8 +1597,7 @@ discard block |
||
| 1630 | 1597 | * @throws SodiumException |
| 1631 | 1598 | * @throws TypeError |
| 1632 | 1599 | */ |
| 1633 | - public static function sign_open($signedMessage, $pk) |
|
| 1634 | - { |
|
| 1600 | + public static function sign_open($signedMessage, $pk) { |
|
| 1635 | 1601 | return ParagonIE_Sodium_Core32_Ed25519::sign_open($signedMessage, $pk); |
| 1636 | 1602 | } |
| 1637 | 1603 | |
@@ -1647,8 +1613,7 @@ discard block |
||
| 1647 | 1613 | * @throws SodiumException |
| 1648 | 1614 | * @throws TypeError |
| 1649 | 1615 | */ |
| 1650 | - public static function sign_verify_detached($signature, $message, $pk) |
|
| 1651 | - { |
|
| 1616 | + public static function sign_verify_detached($signature, $message, $pk) { |
|
| 1652 | 1617 | return ParagonIE_Sodium_Core32_Ed25519::verify_detached($signature, $message, $pk); |
| 1653 | 1618 | } |
| 1654 | 1619 | } |
@@ -7,8 +7,7 @@ discard block |
||
| 7 | 7 | /** |
| 8 | 8 | * Class ParagonIE_Sodium_Core_Ed25519 |
| 9 | 9 | */ |
| 10 | -abstract class ParagonIE_Sodium_Core_Ed25519 extends ParagonIE_Sodium_Core_Curve25519 |
|
| 11 | -{ |
|
| 10 | +abstract class ParagonIE_Sodium_Core_Ed25519 extends ParagonIE_Sodium_Core_Curve25519 { |
|
| 12 | 11 | const KEYPAIR_BYTES = 96; |
| 13 | 12 | const SEED_BYTES = 32; |
| 14 | 13 | const SCALAR_BYTES = 32; |
@@ -21,8 +20,7 @@ discard block |
||
| 21 | 20 | * @throws SodiumException |
| 22 | 21 | * @throws TypeError |
| 23 | 22 | */ |
| 24 | - public static function keypair() |
|
| 25 | - { |
|
| 23 | + public static function keypair() { |
|
| 26 | 24 | $seed = random_bytes(self::SEED_BYTES); |
| 27 | 25 | $pk = ''; |
| 28 | 26 | $sk = ''; |
@@ -40,8 +38,7 @@ discard block |
||
| 40 | 38 | * @throws SodiumException |
| 41 | 39 | * @throws TypeError |
| 42 | 40 | */ |
| 43 | - public static function seed_keypair(&$pk, &$sk, $seed) |
|
| 44 | - { |
|
| 41 | + public static function seed_keypair(&$pk, &$sk, $seed) { |
|
| 45 | 42 | if (self::strlen($seed) !== self::SEED_BYTES) { |
| 46 | 43 | throw new RangeException('crypto_sign keypair seed must be 32 bytes long'); |
| 47 | 44 | } |
@@ -59,8 +56,7 @@ discard block |
||
| 59 | 56 | * @return string |
| 60 | 57 | * @throws TypeError |
| 61 | 58 | */ |
| 62 | - public static function secretkey($keypair) |
|
| 63 | - { |
|
| 59 | + public static function secretkey($keypair) { |
|
| 64 | 60 | if (self::strlen($keypair) !== self::KEYPAIR_BYTES) { |
| 65 | 61 | throw new RangeException('crypto_sign keypair must be 96 bytes long'); |
| 66 | 62 | } |
@@ -74,8 +70,7 @@ discard block |
||
| 74 | 70 | * @return string |
| 75 | 71 | * @throws TypeError |
| 76 | 72 | */ |
| 77 | - public static function publickey($keypair) |
|
| 78 | - { |
|
| 73 | + public static function publickey($keypair) { |
|
| 79 | 74 | if (self::strlen($keypair) !== self::KEYPAIR_BYTES) { |
| 80 | 75 | throw new RangeException('crypto_sign keypair must be 96 bytes long'); |
| 81 | 76 | } |
@@ -90,8 +85,7 @@ discard block |
||
| 90 | 85 | * @throws SodiumException |
| 91 | 86 | * @throws TypeError |
| 92 | 87 | */ |
| 93 | - public static function publickey_from_secretkey($sk) |
|
| 94 | - { |
|
| 88 | + public static function publickey_from_secretkey($sk) { |
|
| 95 | 89 | /** @var string $sk */ |
| 96 | 90 | $sk = hash('sha512', self::substr($sk, 0, 32), true); |
| 97 | 91 | $sk[0] = self::intToChr( |
@@ -109,8 +103,7 @@ discard block |
||
| 109 | 103 | * @throws SodiumException |
| 110 | 104 | * @throws TypeError |
| 111 | 105 | */ |
| 112 | - public static function pk_to_curve25519($pk) |
|
| 113 | - { |
|
| 106 | + public static function pk_to_curve25519($pk) { |
|
| 114 | 107 | if (self::small_order($pk)) { |
| 115 | 108 | throw new SodiumException('Public key is on a small order'); |
| 116 | 109 | } |
@@ -150,8 +143,7 @@ discard block |
||
| 150 | 143 | * @throws SodiumException |
| 151 | 144 | * @throws TypeError |
| 152 | 145 | */ |
| 153 | - public static function sk_to_pk($sk) |
|
| 154 | - { |
|
| 146 | + public static function sk_to_pk($sk) { |
|
| 155 | 147 | return self::ge_p3_tobytes( |
| 156 | 148 | self::ge_scalarmult_base( |
| 157 | 149 | self::substr($sk, 0, 32) |
@@ -168,8 +160,7 @@ discard block |
||
| 168 | 160 | * @throws SodiumException |
| 169 | 161 | * @throws TypeError |
| 170 | 162 | */ |
| 171 | - public static function sign($message, $sk) |
|
| 172 | - { |
|
| 163 | + public static function sign($message, $sk) { |
|
| 173 | 164 | /** @var string $signature */ |
| 174 | 165 | $signature = self::sign_detached($message, $sk); |
| 175 | 166 | return $signature . $message; |
@@ -184,8 +175,7 @@ discard block |
||
| 184 | 175 | * @throws SodiumException |
| 185 | 176 | * @throws TypeError |
| 186 | 177 | */ |
| 187 | - public static function sign_open($message, $pk) |
|
| 188 | - { |
|
| 178 | + public static function sign_open($message, $pk) { |
|
| 189 | 179 | /** @var string $signature */ |
| 190 | 180 | $signature = self::substr($message, 0, 64); |
| 191 | 181 | |
@@ -207,8 +197,7 @@ discard block |
||
| 207 | 197 | * @throws SodiumException |
| 208 | 198 | * @throws TypeError |
| 209 | 199 | */ |
| 210 | - public static function sign_detached($message, $sk) |
|
| 211 | - { |
|
| 200 | + public static function sign_detached($message, $sk) { |
|
| 212 | 201 | # crypto_hash_sha512(az, sk, 32); |
| 213 | 202 | $az = hash('sha512', self::substr($sk, 0, 32), true); |
| 214 | 203 | |
@@ -272,8 +261,7 @@ discard block |
||
| 272 | 261 | * @throws SodiumException |
| 273 | 262 | * @throws TypeError |
| 274 | 263 | */ |
| 275 | - public static function verify_detached($sig, $message, $pk) |
|
| 276 | - { |
|
| 264 | + public static function verify_detached($sig, $message, $pk) { |
|
| 277 | 265 | if (self::strlen($sig) < 64) { |
| 278 | 266 | throw new SodiumException('Signature is too short'); |
| 279 | 267 | } |
@@ -339,8 +327,7 @@ discard block |
||
| 339 | 327 | * @throws SodiumException |
| 340 | 328 | * @throws TypeError |
| 341 | 329 | */ |
| 342 | - public static function check_S_lt_L($S) |
|
| 343 | - { |
|
| 330 | + public static function check_S_lt_L($S) { |
|
| 344 | 331 | if (self::strlen($S) < 32) { |
| 345 | 332 | throw new SodiumException('Signature must be 32 bytes'); |
| 346 | 333 | } |
@@ -375,8 +362,7 @@ discard block |
||
| 375 | 362 | * @throws SodiumException |
| 376 | 363 | * @throws TypeError |
| 377 | 364 | */ |
| 378 | - public static function small_order($R) |
|
| 379 | - { |
|
| 365 | + public static function small_order($R) { |
|
| 380 | 366 | /** @var array<int, array<int, int>> $blocklist */ |
| 381 | 367 | $blocklist = array( |
| 382 | 368 | /* 0 (order 4) */ |
@@ -484,8 +470,7 @@ discard block |
||
| 484 | 470 | * @return string |
| 485 | 471 | * @throws SodiumException |
| 486 | 472 | */ |
| 487 | - public static function scalar_complement($s) |
|
| 488 | - { |
|
| 473 | + public static function scalar_complement($s) { |
|
| 489 | 474 | $t_ = self::L . str_repeat("\x00", 32); |
| 490 | 475 | sodium_increment($t_); |
| 491 | 476 | $s_ = $s . str_repeat("\x00", 32); |
@@ -497,8 +482,7 @@ discard block |
||
| 497 | 482 | * @return string |
| 498 | 483 | * @throws SodiumException |
| 499 | 484 | */ |
| 500 | - public static function scalar_random() |
|
| 501 | - { |
|
| 485 | + public static function scalar_random() { |
|
| 502 | 486 | do { |
| 503 | 487 | $r = ParagonIE_Sodium_Compat::randombytes_buf(self::SCALAR_BYTES); |
| 504 | 488 | $r[self::SCALAR_BYTES - 1] = self::intToChr( |
@@ -515,8 +499,7 @@ discard block |
||
| 515 | 499 | * @return string |
| 516 | 500 | * @throws SodiumException |
| 517 | 501 | */ |
| 518 | - public static function scalar_negate($s) |
|
| 519 | - { |
|
| 502 | + public static function scalar_negate($s) { |
|
| 520 | 503 | $t_ = self::L . str_repeat("\x00", 32) ; |
| 521 | 504 | $s_ = $s . str_repeat("\x00", 32) ; |
| 522 | 505 | ParagonIE_Sodium_Compat::sub($t_, $s_); |
@@ -529,8 +512,7 @@ discard block |
||
| 529 | 512 | * @return string |
| 530 | 513 | * @throws SodiumException |
| 531 | 514 | */ |
| 532 | - public static function scalar_add($a, $b) |
|
| 533 | - { |
|
| 515 | + public static function scalar_add($a, $b) { |
|
| 534 | 516 | $a_ = $a . str_repeat("\x00", 32); |
| 535 | 517 | $b_ = $b . str_repeat("\x00", 32); |
| 536 | 518 | ParagonIE_Sodium_Compat::add($a_, $b_); |
@@ -543,8 +525,7 @@ discard block |
||
| 543 | 525 | * @return string |
| 544 | 526 | * @throws SodiumException |
| 545 | 527 | */ |
| 546 | - public static function scalar_sub($x, $y) |
|
| 547 | - { |
|
| 528 | + public static function scalar_sub($x, $y) { |
|
| 548 | 529 | $yn = self::scalar_negate($y); |
| 549 | 530 | return self::scalar_add($x, $yn); |
| 550 | 531 | } |
@@ -1,10 +1,10 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if (class_exists('ParagonIE_Sodium_Core_Ed25519', false)) { |
| 4 | - return; |
|
| 4 | + return; |
|
| 5 | 5 | } |
| 6 | 6 | if (!class_exists('ParagonIE_Sodium_Core_Curve25519', false)) { |
| 7 | - require_once dirname(__FILE__) . '/Curve25519.php'; |
|
| 7 | + require_once dirname(__FILE__) . '/Curve25519.php'; |
|
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | /** |
@@ -12,543 +12,543 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | abstract class ParagonIE_Sodium_Core_Ed25519 extends ParagonIE_Sodium_Core_Curve25519 |
| 14 | 14 | { |
| 15 | - const KEYPAIR_BYTES = 96; |
|
| 16 | - const SEED_BYTES = 32; |
|
| 17 | - const SCALAR_BYTES = 32; |
|
| 18 | - |
|
| 19 | - /** |
|
| 20 | - * @internal You should not use this directly from another application |
|
| 21 | - * |
|
| 22 | - * @return string (96 bytes) |
|
| 23 | - * @throws Exception |
|
| 24 | - * @throws SodiumException |
|
| 25 | - * @throws TypeError |
|
| 26 | - */ |
|
| 27 | - public static function keypair() |
|
| 28 | - { |
|
| 29 | - $seed = random_bytes(self::SEED_BYTES); |
|
| 30 | - $pk = ''; |
|
| 31 | - $sk = ''; |
|
| 32 | - self::seed_keypair($pk, $sk, $seed); |
|
| 33 | - return $sk . $pk; |
|
| 34 | - } |
|
| 35 | - |
|
| 36 | - /** |
|
| 37 | - * @internal You should not use this directly from another application |
|
| 38 | - * |
|
| 39 | - * @param string $pk |
|
| 40 | - * @param string $sk |
|
| 41 | - * @param string $seed |
|
| 42 | - * @return string |
|
| 43 | - * @throws SodiumException |
|
| 44 | - * @throws TypeError |
|
| 45 | - */ |
|
| 46 | - public static function seed_keypair(&$pk, &$sk, $seed) |
|
| 47 | - { |
|
| 48 | - if (self::strlen($seed) !== self::SEED_BYTES) { |
|
| 49 | - throw new RangeException('crypto_sign keypair seed must be 32 bytes long'); |
|
| 50 | - } |
|
| 51 | - |
|
| 52 | - /** @var string $pk */ |
|
| 53 | - $pk = self::publickey_from_secretkey($seed); |
|
| 54 | - $sk = $seed . $pk; |
|
| 55 | - return $sk; |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * @internal You should not use this directly from another application |
|
| 60 | - * |
|
| 61 | - * @param string $keypair |
|
| 62 | - * @return string |
|
| 63 | - * @throws TypeError |
|
| 64 | - */ |
|
| 65 | - public static function secretkey($keypair) |
|
| 66 | - { |
|
| 67 | - if (self::strlen($keypair) !== self::KEYPAIR_BYTES) { |
|
| 68 | - throw new RangeException('crypto_sign keypair must be 96 bytes long'); |
|
| 69 | - } |
|
| 70 | - return self::substr($keypair, 0, 64); |
|
| 71 | - } |
|
| 72 | - |
|
| 73 | - /** |
|
| 74 | - * @internal You should not use this directly from another application |
|
| 75 | - * |
|
| 76 | - * @param string $keypair |
|
| 77 | - * @return string |
|
| 78 | - * @throws TypeError |
|
| 79 | - */ |
|
| 80 | - public static function publickey($keypair) |
|
| 81 | - { |
|
| 82 | - if (self::strlen($keypair) !== self::KEYPAIR_BYTES) { |
|
| 83 | - throw new RangeException('crypto_sign keypair must be 96 bytes long'); |
|
| 84 | - } |
|
| 85 | - return self::substr($keypair, 64, 32); |
|
| 86 | - } |
|
| 87 | - |
|
| 88 | - /** |
|
| 89 | - * @internal You should not use this directly from another application |
|
| 90 | - * |
|
| 91 | - * @param string $sk |
|
| 92 | - * @return string |
|
| 93 | - * @throws SodiumException |
|
| 94 | - * @throws TypeError |
|
| 95 | - */ |
|
| 96 | - public static function publickey_from_secretkey($sk) |
|
| 97 | - { |
|
| 98 | - /** @var string $sk */ |
|
| 99 | - $sk = hash('sha512', self::substr($sk, 0, 32), true); |
|
| 100 | - $sk[0] = self::intToChr( |
|
| 101 | - self::chrToInt($sk[0]) & 248 |
|
| 102 | - ); |
|
| 103 | - $sk[31] = self::intToChr( |
|
| 104 | - (self::chrToInt($sk[31]) & 63) | 64 |
|
| 105 | - ); |
|
| 106 | - return self::sk_to_pk($sk); |
|
| 107 | - } |
|
| 108 | - |
|
| 109 | - /** |
|
| 110 | - * @param string $pk |
|
| 111 | - * @return string |
|
| 112 | - * @throws SodiumException |
|
| 113 | - * @throws TypeError |
|
| 114 | - */ |
|
| 115 | - public static function pk_to_curve25519($pk) |
|
| 116 | - { |
|
| 117 | - if (self::small_order($pk)) { |
|
| 118 | - throw new SodiumException('Public key is on a small order'); |
|
| 119 | - } |
|
| 120 | - $A = self::ge_frombytes_negate_vartime(self::substr($pk, 0, 32)); |
|
| 121 | - $p1 = self::ge_mul_l($A); |
|
| 122 | - if (!self::fe_isnonzero($p1->X)) { |
|
| 123 | - throw new SodiumException('Unexpected zero result'); |
|
| 124 | - } |
|
| 125 | - |
|
| 126 | - # fe_1(one_minus_y); |
|
| 127 | - # fe_sub(one_minus_y, one_minus_y, A.Y); |
|
| 128 | - # fe_invert(one_minus_y, one_minus_y); |
|
| 129 | - $one_minux_y = self::fe_invert( |
|
| 130 | - self::fe_sub( |
|
| 131 | - self::fe_1(), |
|
| 132 | - $A->Y |
|
| 133 | - ) |
|
| 134 | - ); |
|
| 135 | - |
|
| 136 | - # fe_1(x); |
|
| 137 | - # fe_add(x, x, A.Y); |
|
| 138 | - # fe_mul(x, x, one_minus_y); |
|
| 139 | - $x = self::fe_mul( |
|
| 140 | - self::fe_add(self::fe_1(), $A->Y), |
|
| 141 | - $one_minux_y |
|
| 142 | - ); |
|
| 143 | - |
|
| 144 | - # fe_tobytes(curve25519_pk, x); |
|
| 145 | - return self::fe_tobytes($x); |
|
| 146 | - } |
|
| 147 | - |
|
| 148 | - /** |
|
| 149 | - * @internal You should not use this directly from another application |
|
| 150 | - * |
|
| 151 | - * @param string $sk |
|
| 152 | - * @return string |
|
| 153 | - * @throws SodiumException |
|
| 154 | - * @throws TypeError |
|
| 155 | - */ |
|
| 156 | - public static function sk_to_pk($sk) |
|
| 157 | - { |
|
| 158 | - return self::ge_p3_tobytes( |
|
| 159 | - self::ge_scalarmult_base( |
|
| 160 | - self::substr($sk, 0, 32) |
|
| 161 | - ) |
|
| 162 | - ); |
|
| 163 | - } |
|
| 164 | - |
|
| 165 | - /** |
|
| 166 | - * @internal You should not use this directly from another application |
|
| 167 | - * |
|
| 168 | - * @param string $message |
|
| 169 | - * @param string $sk |
|
| 170 | - * @return string |
|
| 171 | - * @throws SodiumException |
|
| 172 | - * @throws TypeError |
|
| 173 | - */ |
|
| 174 | - public static function sign($message, $sk) |
|
| 175 | - { |
|
| 176 | - /** @var string $signature */ |
|
| 177 | - $signature = self::sign_detached($message, $sk); |
|
| 178 | - return $signature . $message; |
|
| 179 | - } |
|
| 180 | - |
|
| 181 | - /** |
|
| 182 | - * @internal You should not use this directly from another application |
|
| 183 | - * |
|
| 184 | - * @param string $message A signed message |
|
| 185 | - * @param string $pk Public key |
|
| 186 | - * @return string Message (without signature) |
|
| 187 | - * @throws SodiumException |
|
| 188 | - * @throws TypeError |
|
| 189 | - */ |
|
| 190 | - public static function sign_open($message, $pk) |
|
| 191 | - { |
|
| 192 | - /** @var string $signature */ |
|
| 193 | - $signature = self::substr($message, 0, 64); |
|
| 194 | - |
|
| 195 | - /** @var string $message */ |
|
| 196 | - $message = self::substr($message, 64); |
|
| 197 | - |
|
| 198 | - if (self::verify_detached($signature, $message, $pk)) { |
|
| 199 | - return $message; |
|
| 200 | - } |
|
| 201 | - throw new SodiumException('Invalid signature'); |
|
| 202 | - } |
|
| 203 | - |
|
| 204 | - /** |
|
| 205 | - * @internal You should not use this directly from another application |
|
| 206 | - * |
|
| 207 | - * @param string $message |
|
| 208 | - * @param string $sk |
|
| 209 | - * @return string |
|
| 210 | - * @throws SodiumException |
|
| 211 | - * @throws TypeError |
|
| 212 | - */ |
|
| 213 | - public static function sign_detached($message, $sk) |
|
| 214 | - { |
|
| 215 | - # crypto_hash_sha512(az, sk, 32); |
|
| 216 | - $az = hash('sha512', self::substr($sk, 0, 32), true); |
|
| 217 | - |
|
| 218 | - # az[0] &= 248; |
|
| 219 | - # az[31] &= 63; |
|
| 220 | - # az[31] |= 64; |
|
| 221 | - $az[0] = self::intToChr(self::chrToInt($az[0]) & 248); |
|
| 222 | - $az[31] = self::intToChr((self::chrToInt($az[31]) & 63) | 64); |
|
| 223 | - |
|
| 224 | - # crypto_hash_sha512_init(&hs); |
|
| 225 | - # crypto_hash_sha512_update(&hs, az + 32, 32); |
|
| 226 | - # crypto_hash_sha512_update(&hs, m, mlen); |
|
| 227 | - # crypto_hash_sha512_final(&hs, nonce); |
|
| 228 | - $hs = hash_init('sha512'); |
|
| 229 | - hash_update($hs, self::substr($az, 32, 32)); |
|
| 230 | - hash_update($hs, $message); |
|
| 231 | - $nonceHash = hash_final($hs, true); |
|
| 232 | - |
|
| 233 | - # memmove(sig + 32, sk + 32, 32); |
|
| 234 | - $pk = self::substr($sk, 32, 32); |
|
| 235 | - |
|
| 236 | - # sc_reduce(nonce); |
|
| 237 | - # ge_scalarmult_base(&R, nonce); |
|
| 238 | - # ge_p3_tobytes(sig, &R); |
|
| 239 | - $nonce = self::sc_reduce($nonceHash) . self::substr($nonceHash, 32); |
|
| 240 | - $sig = self::ge_p3_tobytes( |
|
| 241 | - self::ge_scalarmult_base($nonce) |
|
| 242 | - ); |
|
| 243 | - |
|
| 244 | - # crypto_hash_sha512_init(&hs); |
|
| 245 | - # crypto_hash_sha512_update(&hs, sig, 64); |
|
| 246 | - # crypto_hash_sha512_update(&hs, m, mlen); |
|
| 247 | - # crypto_hash_sha512_final(&hs, hram); |
|
| 248 | - $hs = hash_init('sha512'); |
|
| 249 | - hash_update($hs, self::substr($sig, 0, 32)); |
|
| 250 | - hash_update($hs, self::substr($pk, 0, 32)); |
|
| 251 | - hash_update($hs, $message); |
|
| 252 | - $hramHash = hash_final($hs, true); |
|
| 253 | - |
|
| 254 | - # sc_reduce(hram); |
|
| 255 | - # sc_muladd(sig + 32, hram, az, nonce); |
|
| 256 | - $hram = self::sc_reduce($hramHash); |
|
| 257 | - $sigAfter = self::sc_muladd($hram, $az, $nonce); |
|
| 258 | - $sig = self::substr($sig, 0, 32) . self::substr($sigAfter, 0, 32); |
|
| 259 | - |
|
| 260 | - try { |
|
| 261 | - ParagonIE_Sodium_Compat::memzero($az); |
|
| 262 | - } catch (SodiumException $ex) { |
|
| 263 | - $az = null; |
|
| 264 | - } |
|
| 265 | - return $sig; |
|
| 266 | - } |
|
| 267 | - |
|
| 268 | - /** |
|
| 269 | - * @internal You should not use this directly from another application |
|
| 270 | - * |
|
| 271 | - * @param string $sig |
|
| 272 | - * @param string $message |
|
| 273 | - * @param string $pk |
|
| 274 | - * @return bool |
|
| 275 | - * @throws SodiumException |
|
| 276 | - * @throws TypeError |
|
| 277 | - */ |
|
| 278 | - public static function verify_detached($sig, $message, $pk) |
|
| 279 | - { |
|
| 280 | - if (self::strlen($sig) < 64) { |
|
| 281 | - throw new SodiumException('Signature is too short'); |
|
| 282 | - } |
|
| 283 | - if ((self::chrToInt($sig[63]) & 240) && self::check_S_lt_L(self::substr($sig, 32, 32))) { |
|
| 284 | - throw new SodiumException('S < L - Invalid signature'); |
|
| 285 | - } |
|
| 286 | - if (self::small_order($sig)) { |
|
| 287 | - throw new SodiumException('Signature is on too small of an order'); |
|
| 288 | - } |
|
| 289 | - if ((self::chrToInt($sig[63]) & 224) !== 0) { |
|
| 290 | - throw new SodiumException('Invalid signature'); |
|
| 291 | - } |
|
| 292 | - $d = 0; |
|
| 293 | - for ($i = 0; $i < 32; ++$i) { |
|
| 294 | - $d |= self::chrToInt($pk[$i]); |
|
| 295 | - } |
|
| 296 | - if ($d === 0) { |
|
| 297 | - throw new SodiumException('All zero public key'); |
|
| 298 | - } |
|
| 299 | - |
|
| 300 | - /** @var bool The original value of ParagonIE_Sodium_Compat::$fastMult */ |
|
| 301 | - $orig = ParagonIE_Sodium_Compat::$fastMult; |
|
| 302 | - |
|
| 303 | - // Set ParagonIE_Sodium_Compat::$fastMult to true to speed up verification. |
|
| 304 | - ParagonIE_Sodium_Compat::$fastMult = true; |
|
| 305 | - |
|
| 306 | - /** @var ParagonIE_Sodium_Core_Curve25519_Ge_P3 $A */ |
|
| 307 | - $A = self::ge_frombytes_negate_vartime($pk); |
|
| 308 | - |
|
| 309 | - /** @var string $hDigest */ |
|
| 310 | - $hDigest = hash( |
|
| 311 | - 'sha512', |
|
| 312 | - self::substr($sig, 0, 32) . |
|
| 313 | - self::substr($pk, 0, 32) . |
|
| 314 | - $message, |
|
| 315 | - true |
|
| 316 | - ); |
|
| 317 | - |
|
| 318 | - /** @var string $h */ |
|
| 319 | - $h = self::sc_reduce($hDigest) . self::substr($hDigest, 32); |
|
| 320 | - |
|
| 321 | - /** @var ParagonIE_Sodium_Core_Curve25519_Ge_P2 $R */ |
|
| 322 | - $R = self::ge_double_scalarmult_vartime( |
|
| 323 | - $h, |
|
| 324 | - $A, |
|
| 325 | - self::substr($sig, 32) |
|
| 326 | - ); |
|
| 327 | - |
|
| 328 | - /** @var string $rcheck */ |
|
| 329 | - $rcheck = self::ge_tobytes($R); |
|
| 330 | - |
|
| 331 | - // Reset ParagonIE_Sodium_Compat::$fastMult to what it was before. |
|
| 332 | - ParagonIE_Sodium_Compat::$fastMult = $orig; |
|
| 333 | - |
|
| 334 | - return self::verify_32($rcheck, self::substr($sig, 0, 32)); |
|
| 335 | - } |
|
| 336 | - |
|
| 337 | - /** |
|
| 338 | - * @internal You should not use this directly from another application |
|
| 339 | - * |
|
| 340 | - * @param string $S |
|
| 341 | - * @return bool |
|
| 342 | - * @throws SodiumException |
|
| 343 | - * @throws TypeError |
|
| 344 | - */ |
|
| 345 | - public static function check_S_lt_L($S) |
|
| 346 | - { |
|
| 347 | - if (self::strlen($S) < 32) { |
|
| 348 | - throw new SodiumException('Signature must be 32 bytes'); |
|
| 349 | - } |
|
| 350 | - $L = array( |
|
| 351 | - 0xed, 0xd3, 0xf5, 0x5c, 0x1a, 0x63, 0x12, 0x58, |
|
| 352 | - 0xd6, 0x9c, 0xf7, 0xa2, 0xde, 0xf9, 0xde, 0x14, |
|
| 353 | - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 354 | - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10 |
|
| 355 | - ); |
|
| 356 | - $c = 0; |
|
| 357 | - $n = 1; |
|
| 358 | - $i = 32; |
|
| 359 | - |
|
| 360 | - /** @var array<int, int> $L */ |
|
| 361 | - do { |
|
| 362 | - --$i; |
|
| 363 | - $x = self::chrToInt($S[$i]); |
|
| 364 | - $c |= ( |
|
| 365 | - (($x - $L[$i]) >> 8) & $n |
|
| 366 | - ); |
|
| 367 | - $n &= ( |
|
| 368 | - (($x ^ $L[$i]) - 1) >> 8 |
|
| 369 | - ); |
|
| 370 | - } while ($i !== 0); |
|
| 371 | - |
|
| 372 | - return $c === 0; |
|
| 373 | - } |
|
| 374 | - |
|
| 375 | - /** |
|
| 376 | - * @param string $R |
|
| 377 | - * @return bool |
|
| 378 | - * @throws SodiumException |
|
| 379 | - * @throws TypeError |
|
| 380 | - */ |
|
| 381 | - public static function small_order($R) |
|
| 382 | - { |
|
| 383 | - /** @var array<int, array<int, int>> $blocklist */ |
|
| 384 | - $blocklist = array( |
|
| 385 | - /* 0 (order 4) */ |
|
| 386 | - array( |
|
| 387 | - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 388 | - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 389 | - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 390 | - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
|
| 391 | - ), |
|
| 392 | - /* 1 (order 1) */ |
|
| 393 | - array( |
|
| 394 | - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 395 | - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 396 | - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 397 | - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
|
| 398 | - ), |
|
| 399 | - /* 2707385501144840649318225287225658788936804267575313519463743609750303402022 (order 8) */ |
|
| 400 | - array( |
|
| 401 | - 0x26, 0xe8, 0x95, 0x8f, 0xc2, 0xb2, 0x27, 0xb0, |
|
| 402 | - 0x45, 0xc3, 0xf4, 0x89, 0xf2, 0xef, 0x98, 0xf0, |
|
| 403 | - 0xd5, 0xdf, 0xac, 0x05, 0xd3, 0xc6, 0x33, 0x39, |
|
| 404 | - 0xb1, 0x38, 0x02, 0x88, 0x6d, 0x53, 0xfc, 0x05 |
|
| 405 | - ), |
|
| 406 | - /* 55188659117513257062467267217118295137698188065244968500265048394206261417927 (order 8) */ |
|
| 407 | - array( |
|
| 408 | - 0xc7, 0x17, 0x6a, 0x70, 0x3d, 0x4d, 0xd8, 0x4f, |
|
| 409 | - 0xba, 0x3c, 0x0b, 0x76, 0x0d, 0x10, 0x67, 0x0f, |
|
| 410 | - 0x2a, 0x20, 0x53, 0xfa, 0x2c, 0x39, 0xcc, 0xc6, |
|
| 411 | - 0x4e, 0xc7, 0xfd, 0x77, 0x92, 0xac, 0x03, 0x7a |
|
| 412 | - ), |
|
| 413 | - /* p-1 (order 2) */ |
|
| 414 | - array( |
|
| 415 | - 0x13, 0xe8, 0x95, 0x8f, 0xc2, 0xb2, 0x27, 0xb0, |
|
| 416 | - 0x45, 0xc3, 0xf4, 0x89, 0xf2, 0xef, 0x98, 0xf0, |
|
| 417 | - 0xd5, 0xdf, 0xac, 0x05, 0xd3, 0xc6, 0x33, 0x39, |
|
| 418 | - 0xb1, 0x38, 0x02, 0x88, 0x6d, 0x53, 0xfc, 0x85 |
|
| 419 | - ), |
|
| 420 | - /* p (order 4) */ |
|
| 421 | - array( |
|
| 422 | - 0xb4, 0x17, 0x6a, 0x70, 0x3d, 0x4d, 0xd8, 0x4f, |
|
| 423 | - 0xba, 0x3c, 0x0b, 0x76, 0x0d, 0x10, 0x67, 0x0f, |
|
| 424 | - 0x2a, 0x20, 0x53, 0xfa, 0x2c, 0x39, 0xcc, 0xc6, |
|
| 425 | - 0x4e, 0xc7, 0xfd, 0x77, 0x92, 0xac, 0x03, 0xfa |
|
| 426 | - ), |
|
| 427 | - /* p+1 (order 1) */ |
|
| 428 | - array( |
|
| 429 | - 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 430 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 431 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 432 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f |
|
| 433 | - ), |
|
| 434 | - /* p+2707385501144840649318225287225658788936804267575313519463743609750303402022 (order 8) */ |
|
| 435 | - array( |
|
| 436 | - 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 437 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 438 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 439 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f |
|
| 440 | - ), |
|
| 441 | - /* p+55188659117513257062467267217118295137698188065244968500265048394206261417927 (order 8) */ |
|
| 442 | - array( |
|
| 443 | - 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 444 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 445 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 446 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f |
|
| 447 | - ), |
|
| 448 | - /* 2p-1 (order 2) */ |
|
| 449 | - array( |
|
| 450 | - 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 451 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 452 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 453 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff |
|
| 454 | - ), |
|
| 455 | - /* 2p (order 4) */ |
|
| 456 | - array( |
|
| 457 | - 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 458 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 459 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 460 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff |
|
| 461 | - ), |
|
| 462 | - /* 2p+1 (order 1) */ |
|
| 463 | - array( |
|
| 464 | - 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 465 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 466 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 467 | - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff |
|
| 468 | - ) |
|
| 469 | - ); |
|
| 470 | - /** @var int $countBlocklist */ |
|
| 471 | - $countBlocklist = count($blocklist); |
|
| 472 | - |
|
| 473 | - for ($i = 0; $i < $countBlocklist; ++$i) { |
|
| 474 | - $c = 0; |
|
| 475 | - for ($j = 0; $j < 32; ++$j) { |
|
| 476 | - $c |= self::chrToInt($R[$j]) ^ (int) $blocklist[$i][$j]; |
|
| 477 | - } |
|
| 478 | - if ($c === 0) { |
|
| 479 | - return true; |
|
| 480 | - } |
|
| 481 | - } |
|
| 482 | - return false; |
|
| 483 | - } |
|
| 484 | - |
|
| 485 | - /** |
|
| 486 | - * @param string $s |
|
| 487 | - * @return string |
|
| 488 | - * @throws SodiumException |
|
| 489 | - */ |
|
| 490 | - public static function scalar_complement($s) |
|
| 491 | - { |
|
| 492 | - $t_ = self::L . str_repeat("\x00", 32); |
|
| 493 | - sodium_increment($t_); |
|
| 494 | - $s_ = $s . str_repeat("\x00", 32); |
|
| 495 | - ParagonIE_Sodium_Compat::sub($t_, $s_); |
|
| 496 | - return self::sc_reduce($t_); |
|
| 497 | - } |
|
| 498 | - |
|
| 499 | - /** |
|
| 500 | - * @return string |
|
| 501 | - * @throws SodiumException |
|
| 502 | - */ |
|
| 503 | - public static function scalar_random() |
|
| 504 | - { |
|
| 505 | - do { |
|
| 506 | - $r = ParagonIE_Sodium_Compat::randombytes_buf(self::SCALAR_BYTES); |
|
| 507 | - $r[self::SCALAR_BYTES - 1] = self::intToChr( |
|
| 508 | - self::chrToInt($r[self::SCALAR_BYTES - 1]) & 0x1f |
|
| 509 | - ); |
|
| 510 | - } while ( |
|
| 511 | - !self::check_S_lt_L($r) || ParagonIE_Sodium_Compat::is_zero($r) |
|
| 512 | - ); |
|
| 513 | - return $r; |
|
| 514 | - } |
|
| 515 | - |
|
| 516 | - /** |
|
| 517 | - * @param string $s |
|
| 518 | - * @return string |
|
| 519 | - * @throws SodiumException |
|
| 520 | - */ |
|
| 521 | - public static function scalar_negate($s) |
|
| 522 | - { |
|
| 523 | - $t_ = self::L . str_repeat("\x00", 32) ; |
|
| 524 | - $s_ = $s . str_repeat("\x00", 32) ; |
|
| 525 | - ParagonIE_Sodium_Compat::sub($t_, $s_); |
|
| 526 | - return self::sc_reduce($t_); |
|
| 527 | - } |
|
| 528 | - |
|
| 529 | - /** |
|
| 530 | - * @param string $a |
|
| 531 | - * @param string $b |
|
| 532 | - * @return string |
|
| 533 | - * @throws SodiumException |
|
| 534 | - */ |
|
| 535 | - public static function scalar_add($a, $b) |
|
| 536 | - { |
|
| 537 | - $a_ = $a . str_repeat("\x00", 32); |
|
| 538 | - $b_ = $b . str_repeat("\x00", 32); |
|
| 539 | - ParagonIE_Sodium_Compat::add($a_, $b_); |
|
| 540 | - return self::sc_reduce($a_); |
|
| 541 | - } |
|
| 542 | - |
|
| 543 | - /** |
|
| 544 | - * @param string $x |
|
| 545 | - * @param string $y |
|
| 546 | - * @return string |
|
| 547 | - * @throws SodiumException |
|
| 548 | - */ |
|
| 549 | - public static function scalar_sub($x, $y) |
|
| 550 | - { |
|
| 551 | - $yn = self::scalar_negate($y); |
|
| 552 | - return self::scalar_add($x, $yn); |
|
| 553 | - } |
|
| 15 | + const KEYPAIR_BYTES = 96; |
|
| 16 | + const SEED_BYTES = 32; |
|
| 17 | + const SCALAR_BYTES = 32; |
|
| 18 | + |
|
| 19 | + /** |
|
| 20 | + * @internal You should not use this directly from another application |
|
| 21 | + * |
|
| 22 | + * @return string (96 bytes) |
|
| 23 | + * @throws Exception |
|
| 24 | + * @throws SodiumException |
|
| 25 | + * @throws TypeError |
|
| 26 | + */ |
|
| 27 | + public static function keypair() |
|
| 28 | + { |
|
| 29 | + $seed = random_bytes(self::SEED_BYTES); |
|
| 30 | + $pk = ''; |
|
| 31 | + $sk = ''; |
|
| 32 | + self::seed_keypair($pk, $sk, $seed); |
|
| 33 | + return $sk . $pk; |
|
| 34 | + } |
|
| 35 | + |
|
| 36 | + /** |
|
| 37 | + * @internal You should not use this directly from another application |
|
| 38 | + * |
|
| 39 | + * @param string $pk |
|
| 40 | + * @param string $sk |
|
| 41 | + * @param string $seed |
|
| 42 | + * @return string |
|
| 43 | + * @throws SodiumException |
|
| 44 | + * @throws TypeError |
|
| 45 | + */ |
|
| 46 | + public static function seed_keypair(&$pk, &$sk, $seed) |
|
| 47 | + { |
|
| 48 | + if (self::strlen($seed) !== self::SEED_BYTES) { |
|
| 49 | + throw new RangeException('crypto_sign keypair seed must be 32 bytes long'); |
|
| 50 | + } |
|
| 51 | + |
|
| 52 | + /** @var string $pk */ |
|
| 53 | + $pk = self::publickey_from_secretkey($seed); |
|
| 54 | + $sk = $seed . $pk; |
|
| 55 | + return $sk; |
|
| 56 | + } |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * @internal You should not use this directly from another application |
|
| 60 | + * |
|
| 61 | + * @param string $keypair |
|
| 62 | + * @return string |
|
| 63 | + * @throws TypeError |
|
| 64 | + */ |
|
| 65 | + public static function secretkey($keypair) |
|
| 66 | + { |
|
| 67 | + if (self::strlen($keypair) !== self::KEYPAIR_BYTES) { |
|
| 68 | + throw new RangeException('crypto_sign keypair must be 96 bytes long'); |
|
| 69 | + } |
|
| 70 | + return self::substr($keypair, 0, 64); |
|
| 71 | + } |
|
| 72 | + |
|
| 73 | + /** |
|
| 74 | + * @internal You should not use this directly from another application |
|
| 75 | + * |
|
| 76 | + * @param string $keypair |
|
| 77 | + * @return string |
|
| 78 | + * @throws TypeError |
|
| 79 | + */ |
|
| 80 | + public static function publickey($keypair) |
|
| 81 | + { |
|
| 82 | + if (self::strlen($keypair) !== self::KEYPAIR_BYTES) { |
|
| 83 | + throw new RangeException('crypto_sign keypair must be 96 bytes long'); |
|
| 84 | + } |
|
| 85 | + return self::substr($keypair, 64, 32); |
|
| 86 | + } |
|
| 87 | + |
|
| 88 | + /** |
|
| 89 | + * @internal You should not use this directly from another application |
|
| 90 | + * |
|
| 91 | + * @param string $sk |
|
| 92 | + * @return string |
|
| 93 | + * @throws SodiumException |
|
| 94 | + * @throws TypeError |
|
| 95 | + */ |
|
| 96 | + public static function publickey_from_secretkey($sk) |
|
| 97 | + { |
|
| 98 | + /** @var string $sk */ |
|
| 99 | + $sk = hash('sha512', self::substr($sk, 0, 32), true); |
|
| 100 | + $sk[0] = self::intToChr( |
|
| 101 | + self::chrToInt($sk[0]) & 248 |
|
| 102 | + ); |
|
| 103 | + $sk[31] = self::intToChr( |
|
| 104 | + (self::chrToInt($sk[31]) & 63) | 64 |
|
| 105 | + ); |
|
| 106 | + return self::sk_to_pk($sk); |
|
| 107 | + } |
|
| 108 | + |
|
| 109 | + /** |
|
| 110 | + * @param string $pk |
|
| 111 | + * @return string |
|
| 112 | + * @throws SodiumException |
|
| 113 | + * @throws TypeError |
|
| 114 | + */ |
|
| 115 | + public static function pk_to_curve25519($pk) |
|
| 116 | + { |
|
| 117 | + if (self::small_order($pk)) { |
|
| 118 | + throw new SodiumException('Public key is on a small order'); |
|
| 119 | + } |
|
| 120 | + $A = self::ge_frombytes_negate_vartime(self::substr($pk, 0, 32)); |
|
| 121 | + $p1 = self::ge_mul_l($A); |
|
| 122 | + if (!self::fe_isnonzero($p1->X)) { |
|
| 123 | + throw new SodiumException('Unexpected zero result'); |
|
| 124 | + } |
|
| 125 | + |
|
| 126 | + # fe_1(one_minus_y); |
|
| 127 | + # fe_sub(one_minus_y, one_minus_y, A.Y); |
|
| 128 | + # fe_invert(one_minus_y, one_minus_y); |
|
| 129 | + $one_minux_y = self::fe_invert( |
|
| 130 | + self::fe_sub( |
|
| 131 | + self::fe_1(), |
|
| 132 | + $A->Y |
|
| 133 | + ) |
|
| 134 | + ); |
|
| 135 | + |
|
| 136 | + # fe_1(x); |
|
| 137 | + # fe_add(x, x, A.Y); |
|
| 138 | + # fe_mul(x, x, one_minus_y); |
|
| 139 | + $x = self::fe_mul( |
|
| 140 | + self::fe_add(self::fe_1(), $A->Y), |
|
| 141 | + $one_minux_y |
|
| 142 | + ); |
|
| 143 | + |
|
| 144 | + # fe_tobytes(curve25519_pk, x); |
|
| 145 | + return self::fe_tobytes($x); |
|
| 146 | + } |
|
| 147 | + |
|
| 148 | + /** |
|
| 149 | + * @internal You should not use this directly from another application |
|
| 150 | + * |
|
| 151 | + * @param string $sk |
|
| 152 | + * @return string |
|
| 153 | + * @throws SodiumException |
|
| 154 | + * @throws TypeError |
|
| 155 | + */ |
|
| 156 | + public static function sk_to_pk($sk) |
|
| 157 | + { |
|
| 158 | + return self::ge_p3_tobytes( |
|
| 159 | + self::ge_scalarmult_base( |
|
| 160 | + self::substr($sk, 0, 32) |
|
| 161 | + ) |
|
| 162 | + ); |
|
| 163 | + } |
|
| 164 | + |
|
| 165 | + /** |
|
| 166 | + * @internal You should not use this directly from another application |
|
| 167 | + * |
|
| 168 | + * @param string $message |
|
| 169 | + * @param string $sk |
|
| 170 | + * @return string |
|
| 171 | + * @throws SodiumException |
|
| 172 | + * @throws TypeError |
|
| 173 | + */ |
|
| 174 | + public static function sign($message, $sk) |
|
| 175 | + { |
|
| 176 | + /** @var string $signature */ |
|
| 177 | + $signature = self::sign_detached($message, $sk); |
|
| 178 | + return $signature . $message; |
|
| 179 | + } |
|
| 180 | + |
|
| 181 | + /** |
|
| 182 | + * @internal You should not use this directly from another application |
|
| 183 | + * |
|
| 184 | + * @param string $message A signed message |
|
| 185 | + * @param string $pk Public key |
|
| 186 | + * @return string Message (without signature) |
|
| 187 | + * @throws SodiumException |
|
| 188 | + * @throws TypeError |
|
| 189 | + */ |
|
| 190 | + public static function sign_open($message, $pk) |
|
| 191 | + { |
|
| 192 | + /** @var string $signature */ |
|
| 193 | + $signature = self::substr($message, 0, 64); |
|
| 194 | + |
|
| 195 | + /** @var string $message */ |
|
| 196 | + $message = self::substr($message, 64); |
|
| 197 | + |
|
| 198 | + if (self::verify_detached($signature, $message, $pk)) { |
|
| 199 | + return $message; |
|
| 200 | + } |
|
| 201 | + throw new SodiumException('Invalid signature'); |
|
| 202 | + } |
|
| 203 | + |
|
| 204 | + /** |
|
| 205 | + * @internal You should not use this directly from another application |
|
| 206 | + * |
|
| 207 | + * @param string $message |
|
| 208 | + * @param string $sk |
|
| 209 | + * @return string |
|
| 210 | + * @throws SodiumException |
|
| 211 | + * @throws TypeError |
|
| 212 | + */ |
|
| 213 | + public static function sign_detached($message, $sk) |
|
| 214 | + { |
|
| 215 | + # crypto_hash_sha512(az, sk, 32); |
|
| 216 | + $az = hash('sha512', self::substr($sk, 0, 32), true); |
|
| 217 | + |
|
| 218 | + # az[0] &= 248; |
|
| 219 | + # az[31] &= 63; |
|
| 220 | + # az[31] |= 64; |
|
| 221 | + $az[0] = self::intToChr(self::chrToInt($az[0]) & 248); |
|
| 222 | + $az[31] = self::intToChr((self::chrToInt($az[31]) & 63) | 64); |
|
| 223 | + |
|
| 224 | + # crypto_hash_sha512_init(&hs); |
|
| 225 | + # crypto_hash_sha512_update(&hs, az + 32, 32); |
|
| 226 | + # crypto_hash_sha512_update(&hs, m, mlen); |
|
| 227 | + # crypto_hash_sha512_final(&hs, nonce); |
|
| 228 | + $hs = hash_init('sha512'); |
|
| 229 | + hash_update($hs, self::substr($az, 32, 32)); |
|
| 230 | + hash_update($hs, $message); |
|
| 231 | + $nonceHash = hash_final($hs, true); |
|
| 232 | + |
|
| 233 | + # memmove(sig + 32, sk + 32, 32); |
|
| 234 | + $pk = self::substr($sk, 32, 32); |
|
| 235 | + |
|
| 236 | + # sc_reduce(nonce); |
|
| 237 | + # ge_scalarmult_base(&R, nonce); |
|
| 238 | + # ge_p3_tobytes(sig, &R); |
|
| 239 | + $nonce = self::sc_reduce($nonceHash) . self::substr($nonceHash, 32); |
|
| 240 | + $sig = self::ge_p3_tobytes( |
|
| 241 | + self::ge_scalarmult_base($nonce) |
|
| 242 | + ); |
|
| 243 | + |
|
| 244 | + # crypto_hash_sha512_init(&hs); |
|
| 245 | + # crypto_hash_sha512_update(&hs, sig, 64); |
|
| 246 | + # crypto_hash_sha512_update(&hs, m, mlen); |
|
| 247 | + # crypto_hash_sha512_final(&hs, hram); |
|
| 248 | + $hs = hash_init('sha512'); |
|
| 249 | + hash_update($hs, self::substr($sig, 0, 32)); |
|
| 250 | + hash_update($hs, self::substr($pk, 0, 32)); |
|
| 251 | + hash_update($hs, $message); |
|
| 252 | + $hramHash = hash_final($hs, true); |
|
| 253 | + |
|
| 254 | + # sc_reduce(hram); |
|
| 255 | + # sc_muladd(sig + 32, hram, az, nonce); |
|
| 256 | + $hram = self::sc_reduce($hramHash); |
|
| 257 | + $sigAfter = self::sc_muladd($hram, $az, $nonce); |
|
| 258 | + $sig = self::substr($sig, 0, 32) . self::substr($sigAfter, 0, 32); |
|
| 259 | + |
|
| 260 | + try { |
|
| 261 | + ParagonIE_Sodium_Compat::memzero($az); |
|
| 262 | + } catch (SodiumException $ex) { |
|
| 263 | + $az = null; |
|
| 264 | + } |
|
| 265 | + return $sig; |
|
| 266 | + } |
|
| 267 | + |
|
| 268 | + /** |
|
| 269 | + * @internal You should not use this directly from another application |
|
| 270 | + * |
|
| 271 | + * @param string $sig |
|
| 272 | + * @param string $message |
|
| 273 | + * @param string $pk |
|
| 274 | + * @return bool |
|
| 275 | + * @throws SodiumException |
|
| 276 | + * @throws TypeError |
|
| 277 | + */ |
|
| 278 | + public static function verify_detached($sig, $message, $pk) |
|
| 279 | + { |
|
| 280 | + if (self::strlen($sig) < 64) { |
|
| 281 | + throw new SodiumException('Signature is too short'); |
|
| 282 | + } |
|
| 283 | + if ((self::chrToInt($sig[63]) & 240) && self::check_S_lt_L(self::substr($sig, 32, 32))) { |
|
| 284 | + throw new SodiumException('S < L - Invalid signature'); |
|
| 285 | + } |
|
| 286 | + if (self::small_order($sig)) { |
|
| 287 | + throw new SodiumException('Signature is on too small of an order'); |
|
| 288 | + } |
|
| 289 | + if ((self::chrToInt($sig[63]) & 224) !== 0) { |
|
| 290 | + throw new SodiumException('Invalid signature'); |
|
| 291 | + } |
|
| 292 | + $d = 0; |
|
| 293 | + for ($i = 0; $i < 32; ++$i) { |
|
| 294 | + $d |= self::chrToInt($pk[$i]); |
|
| 295 | + } |
|
| 296 | + if ($d === 0) { |
|
| 297 | + throw new SodiumException('All zero public key'); |
|
| 298 | + } |
|
| 299 | + |
|
| 300 | + /** @var bool The original value of ParagonIE_Sodium_Compat::$fastMult */ |
|
| 301 | + $orig = ParagonIE_Sodium_Compat::$fastMult; |
|
| 302 | + |
|
| 303 | + // Set ParagonIE_Sodium_Compat::$fastMult to true to speed up verification. |
|
| 304 | + ParagonIE_Sodium_Compat::$fastMult = true; |
|
| 305 | + |
|
| 306 | + /** @var ParagonIE_Sodium_Core_Curve25519_Ge_P3 $A */ |
|
| 307 | + $A = self::ge_frombytes_negate_vartime($pk); |
|
| 308 | + |
|
| 309 | + /** @var string $hDigest */ |
|
| 310 | + $hDigest = hash( |
|
| 311 | + 'sha512', |
|
| 312 | + self::substr($sig, 0, 32) . |
|
| 313 | + self::substr($pk, 0, 32) . |
|
| 314 | + $message, |
|
| 315 | + true |
|
| 316 | + ); |
|
| 317 | + |
|
| 318 | + /** @var string $h */ |
|
| 319 | + $h = self::sc_reduce($hDigest) . self::substr($hDigest, 32); |
|
| 320 | + |
|
| 321 | + /** @var ParagonIE_Sodium_Core_Curve25519_Ge_P2 $R */ |
|
| 322 | + $R = self::ge_double_scalarmult_vartime( |
|
| 323 | + $h, |
|
| 324 | + $A, |
|
| 325 | + self::substr($sig, 32) |
|
| 326 | + ); |
|
| 327 | + |
|
| 328 | + /** @var string $rcheck */ |
|
| 329 | + $rcheck = self::ge_tobytes($R); |
|
| 330 | + |
|
| 331 | + // Reset ParagonIE_Sodium_Compat::$fastMult to what it was before. |
|
| 332 | + ParagonIE_Sodium_Compat::$fastMult = $orig; |
|
| 333 | + |
|
| 334 | + return self::verify_32($rcheck, self::substr($sig, 0, 32)); |
|
| 335 | + } |
|
| 336 | + |
|
| 337 | + /** |
|
| 338 | + * @internal You should not use this directly from another application |
|
| 339 | + * |
|
| 340 | + * @param string $S |
|
| 341 | + * @return bool |
|
| 342 | + * @throws SodiumException |
|
| 343 | + * @throws TypeError |
|
| 344 | + */ |
|
| 345 | + public static function check_S_lt_L($S) |
|
| 346 | + { |
|
| 347 | + if (self::strlen($S) < 32) { |
|
| 348 | + throw new SodiumException('Signature must be 32 bytes'); |
|
| 349 | + } |
|
| 350 | + $L = array( |
|
| 351 | + 0xed, 0xd3, 0xf5, 0x5c, 0x1a, 0x63, 0x12, 0x58, |
|
| 352 | + 0xd6, 0x9c, 0xf7, 0xa2, 0xde, 0xf9, 0xde, 0x14, |
|
| 353 | + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 354 | + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10 |
|
| 355 | + ); |
|
| 356 | + $c = 0; |
|
| 357 | + $n = 1; |
|
| 358 | + $i = 32; |
|
| 359 | + |
|
| 360 | + /** @var array<int, int> $L */ |
|
| 361 | + do { |
|
| 362 | + --$i; |
|
| 363 | + $x = self::chrToInt($S[$i]); |
|
| 364 | + $c |= ( |
|
| 365 | + (($x - $L[$i]) >> 8) & $n |
|
| 366 | + ); |
|
| 367 | + $n &= ( |
|
| 368 | + (($x ^ $L[$i]) - 1) >> 8 |
|
| 369 | + ); |
|
| 370 | + } while ($i !== 0); |
|
| 371 | + |
|
| 372 | + return $c === 0; |
|
| 373 | + } |
|
| 374 | + |
|
| 375 | + /** |
|
| 376 | + * @param string $R |
|
| 377 | + * @return bool |
|
| 378 | + * @throws SodiumException |
|
| 379 | + * @throws TypeError |
|
| 380 | + */ |
|
| 381 | + public static function small_order($R) |
|
| 382 | + { |
|
| 383 | + /** @var array<int, array<int, int>> $blocklist */ |
|
| 384 | + $blocklist = array( |
|
| 385 | + /* 0 (order 4) */ |
|
| 386 | + array( |
|
| 387 | + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 388 | + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 389 | + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 390 | + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
|
| 391 | + ), |
|
| 392 | + /* 1 (order 1) */ |
|
| 393 | + array( |
|
| 394 | + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 395 | + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 396 | + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|
| 397 | + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
|
| 398 | + ), |
|
| 399 | + /* 2707385501144840649318225287225658788936804267575313519463743609750303402022 (order 8) */ |
|
| 400 | + array( |
|
| 401 | + 0x26, 0xe8, 0x95, 0x8f, 0xc2, 0xb2, 0x27, 0xb0, |
|
| 402 | + 0x45, 0xc3, 0xf4, 0x89, 0xf2, 0xef, 0x98, 0xf0, |
|
| 403 | + 0xd5, 0xdf, 0xac, 0x05, 0xd3, 0xc6, 0x33, 0x39, |
|
| 404 | + 0xb1, 0x38, 0x02, 0x88, 0x6d, 0x53, 0xfc, 0x05 |
|
| 405 | + ), |
|
| 406 | + /* 55188659117513257062467267217118295137698188065244968500265048394206261417927 (order 8) */ |
|
| 407 | + array( |
|
| 408 | + 0xc7, 0x17, 0x6a, 0x70, 0x3d, 0x4d, 0xd8, 0x4f, |
|
| 409 | + 0xba, 0x3c, 0x0b, 0x76, 0x0d, 0x10, 0x67, 0x0f, |
|
| 410 | + 0x2a, 0x20, 0x53, 0xfa, 0x2c, 0x39, 0xcc, 0xc6, |
|
| 411 | + 0x4e, 0xc7, 0xfd, 0x77, 0x92, 0xac, 0x03, 0x7a |
|
| 412 | + ), |
|
| 413 | + /* p-1 (order 2) */ |
|
| 414 | + array( |
|
| 415 | + 0x13, 0xe8, 0x95, 0x8f, 0xc2, 0xb2, 0x27, 0xb0, |
|
| 416 | + 0x45, 0xc3, 0xf4, 0x89, 0xf2, 0xef, 0x98, 0xf0, |
|
| 417 | + 0xd5, 0xdf, 0xac, 0x05, 0xd3, 0xc6, 0x33, 0x39, |
|
| 418 | + 0xb1, 0x38, 0x02, 0x88, 0x6d, 0x53, 0xfc, 0x85 |
|
| 419 | + ), |
|
| 420 | + /* p (order 4) */ |
|
| 421 | + array( |
|
| 422 | + 0xb4, 0x17, 0x6a, 0x70, 0x3d, 0x4d, 0xd8, 0x4f, |
|
| 423 | + 0xba, 0x3c, 0x0b, 0x76, 0x0d, 0x10, 0x67, 0x0f, |
|
| 424 | + 0x2a, 0x20, 0x53, 0xfa, 0x2c, 0x39, 0xcc, 0xc6, |
|
| 425 | + 0x4e, 0xc7, 0xfd, 0x77, 0x92, 0xac, 0x03, 0xfa |
|
| 426 | + ), |
|
| 427 | + /* p+1 (order 1) */ |
|
| 428 | + array( |
|
| 429 | + 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 430 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 431 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 432 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f |
|
| 433 | + ), |
|
| 434 | + /* p+2707385501144840649318225287225658788936804267575313519463743609750303402022 (order 8) */ |
|
| 435 | + array( |
|
| 436 | + 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 437 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 438 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 439 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f |
|
| 440 | + ), |
|
| 441 | + /* p+55188659117513257062467267217118295137698188065244968500265048394206261417927 (order 8) */ |
|
| 442 | + array( |
|
| 443 | + 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 444 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 445 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 446 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f |
|
| 447 | + ), |
|
| 448 | + /* 2p-1 (order 2) */ |
|
| 449 | + array( |
|
| 450 | + 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 451 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 452 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 453 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff |
|
| 454 | + ), |
|
| 455 | + /* 2p (order 4) */ |
|
| 456 | + array( |
|
| 457 | + 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 458 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 459 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 460 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff |
|
| 461 | + ), |
|
| 462 | + /* 2p+1 (order 1) */ |
|
| 463 | + array( |
|
| 464 | + 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 465 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 466 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
|
| 467 | + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff |
|
| 468 | + ) |
|
| 469 | + ); |
|
| 470 | + /** @var int $countBlocklist */ |
|
| 471 | + $countBlocklist = count($blocklist); |
|
| 472 | + |
|
| 473 | + for ($i = 0; $i < $countBlocklist; ++$i) { |
|
| 474 | + $c = 0; |
|
| 475 | + for ($j = 0; $j < 32; ++$j) { |
|
| 476 | + $c |= self::chrToInt($R[$j]) ^ (int) $blocklist[$i][$j]; |
|
| 477 | + } |
|
| 478 | + if ($c === 0) { |
|
| 479 | + return true; |
|
| 480 | + } |
|
| 481 | + } |
|
| 482 | + return false; |
|
| 483 | + } |
|
| 484 | + |
|
| 485 | + /** |
|
| 486 | + * @param string $s |
|
| 487 | + * @return string |
|
| 488 | + * @throws SodiumException |
|
| 489 | + */ |
|
| 490 | + public static function scalar_complement($s) |
|
| 491 | + { |
|
| 492 | + $t_ = self::L . str_repeat("\x00", 32); |
|
| 493 | + sodium_increment($t_); |
|
| 494 | + $s_ = $s . str_repeat("\x00", 32); |
|
| 495 | + ParagonIE_Sodium_Compat::sub($t_, $s_); |
|
| 496 | + return self::sc_reduce($t_); |
|
| 497 | + } |
|
| 498 | + |
|
| 499 | + /** |
|
| 500 | + * @return string |
|
| 501 | + * @throws SodiumException |
|
| 502 | + */ |
|
| 503 | + public static function scalar_random() |
|
| 504 | + { |
|
| 505 | + do { |
|
| 506 | + $r = ParagonIE_Sodium_Compat::randombytes_buf(self::SCALAR_BYTES); |
|
| 507 | + $r[self::SCALAR_BYTES - 1] = self::intToChr( |
|
| 508 | + self::chrToInt($r[self::SCALAR_BYTES - 1]) & 0x1f |
|
| 509 | + ); |
|
| 510 | + } while ( |
|
| 511 | + !self::check_S_lt_L($r) || ParagonIE_Sodium_Compat::is_zero($r) |
|
| 512 | + ); |
|
| 513 | + return $r; |
|
| 514 | + } |
|
| 515 | + |
|
| 516 | + /** |
|
| 517 | + * @param string $s |
|
| 518 | + * @return string |
|
| 519 | + * @throws SodiumException |
|
| 520 | + */ |
|
| 521 | + public static function scalar_negate($s) |
|
| 522 | + { |
|
| 523 | + $t_ = self::L . str_repeat("\x00", 32) ; |
|
| 524 | + $s_ = $s . str_repeat("\x00", 32) ; |
|
| 525 | + ParagonIE_Sodium_Compat::sub($t_, $s_); |
|
| 526 | + return self::sc_reduce($t_); |
|
| 527 | + } |
|
| 528 | + |
|
| 529 | + /** |
|
| 530 | + * @param string $a |
|
| 531 | + * @param string $b |
|
| 532 | + * @return string |
|
| 533 | + * @throws SodiumException |
|
| 534 | + */ |
|
| 535 | + public static function scalar_add($a, $b) |
|
| 536 | + { |
|
| 537 | + $a_ = $a . str_repeat("\x00", 32); |
|
| 538 | + $b_ = $b . str_repeat("\x00", 32); |
|
| 539 | + ParagonIE_Sodium_Compat::add($a_, $b_); |
|
| 540 | + return self::sc_reduce($a_); |
|
| 541 | + } |
|
| 542 | + |
|
| 543 | + /** |
|
| 544 | + * @param string $x |
|
| 545 | + * @param string $y |
|
| 546 | + * @return string |
|
| 547 | + * @throws SodiumException |
|
| 548 | + */ |
|
| 549 | + public static function scalar_sub($x, $y) |
|
| 550 | + { |
|
| 551 | + $yn = self::scalar_negate($y); |
|
| 552 | + return self::scalar_add($x, $yn); |
|
| 553 | + } |
|
| 554 | 554 | } |
@@ -1,10 +1,10 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if (class_exists('ParagonIE_Sodium_Core_Ed25519', false)) { |
|
| 3 | +if ( class_exists( 'ParagonIE_Sodium_Core_Ed25519', false ) ) { |
|
| 4 | 4 | return; |
| 5 | 5 | } |
| 6 | -if (!class_exists('ParagonIE_Sodium_Core_Curve25519', false)) { |
|
| 7 | - require_once dirname(__FILE__) . '/Curve25519.php'; |
|
| 6 | +if ( ! class_exists( 'ParagonIE_Sodium_Core_Curve25519', false ) ) { |
|
| 7 | + require_once dirname( __FILE__ ) . '/Curve25519.php'; |
|
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | /** |
@@ -26,10 +26,10 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | public static function keypair() |
| 28 | 28 | { |
| 29 | - $seed = random_bytes(self::SEED_BYTES); |
|
| 29 | + $seed = random_bytes( self::SEED_BYTES ); |
|
| 30 | 30 | $pk = ''; |
| 31 | 31 | $sk = ''; |
| 32 | - self::seed_keypair($pk, $sk, $seed); |
|
| 32 | + self::seed_keypair( $pk, $sk, $seed ); |
|
| 33 | 33 | return $sk . $pk; |
| 34 | 34 | } |
| 35 | 35 | |
@@ -43,14 +43,14 @@ discard block |
||
| 43 | 43 | * @throws SodiumException |
| 44 | 44 | * @throws TypeError |
| 45 | 45 | */ |
| 46 | - public static function seed_keypair(&$pk, &$sk, $seed) |
|
| 46 | + public static function seed_keypair( &$pk, &$sk, $seed ) |
|
| 47 | 47 | { |
| 48 | - if (self::strlen($seed) !== self::SEED_BYTES) { |
|
| 49 | - throw new RangeException('crypto_sign keypair seed must be 32 bytes long'); |
|
| 48 | + if ( self::strlen( $seed ) !== self::SEED_BYTES ) { |
|
| 49 | + throw new RangeException( 'crypto_sign keypair seed must be 32 bytes long' ); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** @var string $pk */ |
| 53 | - $pk = self::publickey_from_secretkey($seed); |
|
| 53 | + $pk = self::publickey_from_secretkey( $seed ); |
|
| 54 | 54 | $sk = $seed . $pk; |
| 55 | 55 | return $sk; |
| 56 | 56 | } |
@@ -62,12 +62,12 @@ discard block |
||
| 62 | 62 | * @return string |
| 63 | 63 | * @throws TypeError |
| 64 | 64 | */ |
| 65 | - public static function secretkey($keypair) |
|
| 65 | + public static function secretkey( $keypair ) |
|
| 66 | 66 | { |
| 67 | - if (self::strlen($keypair) !== self::KEYPAIR_BYTES) { |
|
| 68 | - throw new RangeException('crypto_sign keypair must be 96 bytes long'); |
|
| 67 | + if ( self::strlen( $keypair ) !== self::KEYPAIR_BYTES ) { |
|
| 68 | + throw new RangeException( 'crypto_sign keypair must be 96 bytes long' ); |
|
| 69 | 69 | } |
| 70 | - return self::substr($keypair, 0, 64); |
|
| 70 | + return self::substr( $keypair, 0, 64 ); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -77,12 +77,12 @@ discard block |
||
| 77 | 77 | * @return string |
| 78 | 78 | * @throws TypeError |
| 79 | 79 | */ |
| 80 | - public static function publickey($keypair) |
|
| 80 | + public static function publickey( $keypair ) |
|
| 81 | 81 | { |
| 82 | - if (self::strlen($keypair) !== self::KEYPAIR_BYTES) { |
|
| 83 | - throw new RangeException('crypto_sign keypair must be 96 bytes long'); |
|
| 82 | + if ( self::strlen( $keypair ) !== self::KEYPAIR_BYTES ) { |
|
| 83 | + throw new RangeException( 'crypto_sign keypair must be 96 bytes long' ); |
|
| 84 | 84 | } |
| 85 | - return self::substr($keypair, 64, 32); |
|
| 85 | + return self::substr( $keypair, 64, 32 ); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | /** |
@@ -93,17 +93,17 @@ discard block |
||
| 93 | 93 | * @throws SodiumException |
| 94 | 94 | * @throws TypeError |
| 95 | 95 | */ |
| 96 | - public static function publickey_from_secretkey($sk) |
|
| 96 | + public static function publickey_from_secretkey( $sk ) |
|
| 97 | 97 | { |
| 98 | 98 | /** @var string $sk */ |
| 99 | - $sk = hash('sha512', self::substr($sk, 0, 32), true); |
|
| 100 | - $sk[0] = self::intToChr( |
|
| 101 | - self::chrToInt($sk[0]) & 248 |
|
| 99 | + $sk = hash( 'sha512', self::substr( $sk, 0, 32 ), true ); |
|
| 100 | + $sk[ 0 ] = self::intToChr( |
|
| 101 | + self::chrToInt( $sk[ 0 ] ) & 248 |
|
| 102 | 102 | ); |
| 103 | - $sk[31] = self::intToChr( |
|
| 104 | - (self::chrToInt($sk[31]) & 63) | 64 |
|
| 103 | + $sk[ 31 ] = self::intToChr( |
|
| 104 | + ( self::chrToInt( $sk[ 31 ] ) & 63 ) | 64 |
|
| 105 | 105 | ); |
| 106 | - return self::sk_to_pk($sk); |
|
| 106 | + return self::sk_to_pk( $sk ); |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | /** |
@@ -112,15 +112,15 @@ discard block |
||
| 112 | 112 | * @throws SodiumException |
| 113 | 113 | * @throws TypeError |
| 114 | 114 | */ |
| 115 | - public static function pk_to_curve25519($pk) |
|
| 115 | + public static function pk_to_curve25519( $pk ) |
|
| 116 | 116 | { |
| 117 | - if (self::small_order($pk)) { |
|
| 118 | - throw new SodiumException('Public key is on a small order'); |
|
| 117 | + if ( self::small_order( $pk ) ) { |
|
| 118 | + throw new SodiumException( 'Public key is on a small order' ); |
|
| 119 | 119 | } |
| 120 | - $A = self::ge_frombytes_negate_vartime(self::substr($pk, 0, 32)); |
|
| 121 | - $p1 = self::ge_mul_l($A); |
|
| 122 | - if (!self::fe_isnonzero($p1->X)) { |
|
| 123 | - throw new SodiumException('Unexpected zero result'); |
|
| 120 | + $A = self::ge_frombytes_negate_vartime( self::substr( $pk, 0, 32 ) ); |
|
| 121 | + $p1 = self::ge_mul_l( $A ); |
|
| 122 | + if ( ! self::fe_isnonzero( $p1->X ) ) { |
|
| 123 | + throw new SodiumException( 'Unexpected zero result' ); |
|
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | # fe_1(one_minus_y); |
@@ -137,12 +137,12 @@ discard block |
||
| 137 | 137 | # fe_add(x, x, A.Y); |
| 138 | 138 | # fe_mul(x, x, one_minus_y); |
| 139 | 139 | $x = self::fe_mul( |
| 140 | - self::fe_add(self::fe_1(), $A->Y), |
|
| 140 | + self::fe_add( self::fe_1(), $A->Y ), |
|
| 141 | 141 | $one_minux_y |
| 142 | 142 | ); |
| 143 | 143 | |
| 144 | 144 | # fe_tobytes(curve25519_pk, x); |
| 145 | - return self::fe_tobytes($x); |
|
| 145 | + return self::fe_tobytes( $x ); |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | /** |
@@ -153,11 +153,11 @@ discard block |
||
| 153 | 153 | * @throws SodiumException |
| 154 | 154 | * @throws TypeError |
| 155 | 155 | */ |
| 156 | - public static function sk_to_pk($sk) |
|
| 156 | + public static function sk_to_pk( $sk ) |
|
| 157 | 157 | { |
| 158 | 158 | return self::ge_p3_tobytes( |
| 159 | 159 | self::ge_scalarmult_base( |
| 160 | - self::substr($sk, 0, 32) |
|
| 160 | + self::substr( $sk, 0, 32 ) |
|
| 161 | 161 | ) |
| 162 | 162 | ); |
| 163 | 163 | } |
@@ -171,10 +171,10 @@ discard block |
||
| 171 | 171 | * @throws SodiumException |
| 172 | 172 | * @throws TypeError |
| 173 | 173 | */ |
| 174 | - public static function sign($message, $sk) |
|
| 174 | + public static function sign( $message, $sk ) |
|
| 175 | 175 | { |
| 176 | 176 | /** @var string $signature */ |
| 177 | - $signature = self::sign_detached($message, $sk); |
|
| 177 | + $signature = self::sign_detached( $message, $sk ); |
|
| 178 | 178 | return $signature . $message; |
| 179 | 179 | } |
| 180 | 180 | |
@@ -187,18 +187,18 @@ discard block |
||
| 187 | 187 | * @throws SodiumException |
| 188 | 188 | * @throws TypeError |
| 189 | 189 | */ |
| 190 | - public static function sign_open($message, $pk) |
|
| 190 | + public static function sign_open( $message, $pk ) |
|
| 191 | 191 | { |
| 192 | 192 | /** @var string $signature */ |
| 193 | - $signature = self::substr($message, 0, 64); |
|
| 193 | + $signature = self::substr( $message, 0, 64 ); |
|
| 194 | 194 | |
| 195 | 195 | /** @var string $message */ |
| 196 | - $message = self::substr($message, 64); |
|
| 196 | + $message = self::substr( $message, 64 ); |
|
| 197 | 197 | |
| 198 | - if (self::verify_detached($signature, $message, $pk)) { |
|
| 198 | + if ( self::verify_detached( $signature, $message, $pk ) ) { |
|
| 199 | 199 | return $message; |
| 200 | 200 | } |
| 201 | - throw new SodiumException('Invalid signature'); |
|
| 201 | + throw new SodiumException( 'Invalid signature' ); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | /** |
@@ -210,56 +210,56 @@ discard block |
||
| 210 | 210 | * @throws SodiumException |
| 211 | 211 | * @throws TypeError |
| 212 | 212 | */ |
| 213 | - public static function sign_detached($message, $sk) |
|
| 213 | + public static function sign_detached( $message, $sk ) |
|
| 214 | 214 | { |
| 215 | 215 | # crypto_hash_sha512(az, sk, 32); |
| 216 | - $az = hash('sha512', self::substr($sk, 0, 32), true); |
|
| 216 | + $az = hash( 'sha512', self::substr( $sk, 0, 32 ), true ); |
|
| 217 | 217 | |
| 218 | 218 | # az[0] &= 248; |
| 219 | 219 | # az[31] &= 63; |
| 220 | 220 | # az[31] |= 64; |
| 221 | - $az[0] = self::intToChr(self::chrToInt($az[0]) & 248); |
|
| 222 | - $az[31] = self::intToChr((self::chrToInt($az[31]) & 63) | 64); |
|
| 221 | + $az[ 0 ] = self::intToChr( self::chrToInt( $az[ 0 ] ) & 248 ); |
|
| 222 | + $az[ 31 ] = self::intToChr( ( self::chrToInt( $az[ 31 ] ) & 63 ) | 64 ); |
|
| 223 | 223 | |
| 224 | 224 | # crypto_hash_sha512_init(&hs); |
| 225 | 225 | # crypto_hash_sha512_update(&hs, az + 32, 32); |
| 226 | 226 | # crypto_hash_sha512_update(&hs, m, mlen); |
| 227 | 227 | # crypto_hash_sha512_final(&hs, nonce); |
| 228 | - $hs = hash_init('sha512'); |
|
| 229 | - hash_update($hs, self::substr($az, 32, 32)); |
|
| 230 | - hash_update($hs, $message); |
|
| 231 | - $nonceHash = hash_final($hs, true); |
|
| 228 | + $hs = hash_init( 'sha512' ); |
|
| 229 | + hash_update( $hs, self::substr( $az, 32, 32 ) ); |
|
| 230 | + hash_update( $hs, $message ); |
|
| 231 | + $nonceHash = hash_final( $hs, true ); |
|
| 232 | 232 | |
| 233 | 233 | # memmove(sig + 32, sk + 32, 32); |
| 234 | - $pk = self::substr($sk, 32, 32); |
|
| 234 | + $pk = self::substr( $sk, 32, 32 ); |
|
| 235 | 235 | |
| 236 | 236 | # sc_reduce(nonce); |
| 237 | 237 | # ge_scalarmult_base(&R, nonce); |
| 238 | 238 | # ge_p3_tobytes(sig, &R); |
| 239 | - $nonce = self::sc_reduce($nonceHash) . self::substr($nonceHash, 32); |
|
| 239 | + $nonce = self::sc_reduce( $nonceHash ) . self::substr( $nonceHash, 32 ); |
|
| 240 | 240 | $sig = self::ge_p3_tobytes( |
| 241 | - self::ge_scalarmult_base($nonce) |
|
| 241 | + self::ge_scalarmult_base( $nonce ) |
|
| 242 | 242 | ); |
| 243 | 243 | |
| 244 | 244 | # crypto_hash_sha512_init(&hs); |
| 245 | 245 | # crypto_hash_sha512_update(&hs, sig, 64); |
| 246 | 246 | # crypto_hash_sha512_update(&hs, m, mlen); |
| 247 | 247 | # crypto_hash_sha512_final(&hs, hram); |
| 248 | - $hs = hash_init('sha512'); |
|
| 249 | - hash_update($hs, self::substr($sig, 0, 32)); |
|
| 250 | - hash_update($hs, self::substr($pk, 0, 32)); |
|
| 251 | - hash_update($hs, $message); |
|
| 252 | - $hramHash = hash_final($hs, true); |
|
| 248 | + $hs = hash_init( 'sha512' ); |
|
| 249 | + hash_update( $hs, self::substr( $sig, 0, 32 ) ); |
|
| 250 | + hash_update( $hs, self::substr( $pk, 0, 32 ) ); |
|
| 251 | + hash_update( $hs, $message ); |
|
| 252 | + $hramHash = hash_final( $hs, true ); |
|
| 253 | 253 | |
| 254 | 254 | # sc_reduce(hram); |
| 255 | 255 | # sc_muladd(sig + 32, hram, az, nonce); |
| 256 | - $hram = self::sc_reduce($hramHash); |
|
| 257 | - $sigAfter = self::sc_muladd($hram, $az, $nonce); |
|
| 258 | - $sig = self::substr($sig, 0, 32) . self::substr($sigAfter, 0, 32); |
|
| 256 | + $hram = self::sc_reduce( $hramHash ); |
|
| 257 | + $sigAfter = self::sc_muladd( $hram, $az, $nonce ); |
|
| 258 | + $sig = self::substr( $sig, 0, 32 ) . self::substr( $sigAfter, 0, 32 ); |
|
| 259 | 259 | |
| 260 | 260 | try { |
| 261 | - ParagonIE_Sodium_Compat::memzero($az); |
|
| 262 | - } catch (SodiumException $ex) { |
|
| 261 | + ParagonIE_Sodium_Compat::memzero( $az ); |
|
| 262 | + } catch ( SodiumException $ex ) { |
|
| 263 | 263 | $az = null; |
| 264 | 264 | } |
| 265 | 265 | return $sig; |
@@ -275,26 +275,26 @@ discard block |
||
| 275 | 275 | * @throws SodiumException |
| 276 | 276 | * @throws TypeError |
| 277 | 277 | */ |
| 278 | - public static function verify_detached($sig, $message, $pk) |
|
| 278 | + public static function verify_detached( $sig, $message, $pk ) |
|
| 279 | 279 | { |
| 280 | - if (self::strlen($sig) < 64) { |
|
| 281 | - throw new SodiumException('Signature is too short'); |
|
| 280 | + if ( self::strlen( $sig ) < 64 ) { |
|
| 281 | + throw new SodiumException( 'Signature is too short' ); |
|
| 282 | 282 | } |
| 283 | - if ((self::chrToInt($sig[63]) & 240) && self::check_S_lt_L(self::substr($sig, 32, 32))) { |
|
| 284 | - throw new SodiumException('S < L - Invalid signature'); |
|
| 283 | + if ( ( self::chrToInt( $sig[ 63 ] ) & 240 ) && self::check_S_lt_L( self::substr( $sig, 32, 32 ) ) ) { |
|
| 284 | + throw new SodiumException( 'S < L - Invalid signature' ); |
|
| 285 | 285 | } |
| 286 | - if (self::small_order($sig)) { |
|
| 287 | - throw new SodiumException('Signature is on too small of an order'); |
|
| 286 | + if ( self::small_order( $sig ) ) { |
|
| 287 | + throw new SodiumException( 'Signature is on too small of an order' ); |
|
| 288 | 288 | } |
| 289 | - if ((self::chrToInt($sig[63]) & 224) !== 0) { |
|
| 290 | - throw new SodiumException('Invalid signature'); |
|
| 289 | + if ( ( self::chrToInt( $sig[ 63 ] ) & 224 ) !== 0 ) { |
|
| 290 | + throw new SodiumException( 'Invalid signature' ); |
|
| 291 | 291 | } |
| 292 | 292 | $d = 0; |
| 293 | - for ($i = 0; $i < 32; ++$i) { |
|
| 294 | - $d |= self::chrToInt($pk[$i]); |
|
| 293 | + for ( $i = 0; $i < 32; ++$i ) { |
|
| 294 | + $d |= self::chrToInt( $pk[ $i ] ); |
|
| 295 | 295 | } |
| 296 | - if ($d === 0) { |
|
| 297 | - throw new SodiumException('All zero public key'); |
|
| 296 | + if ( $d === 0 ) { |
|
| 297 | + throw new SodiumException( 'All zero public key' ); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | /** @var bool The original value of ParagonIE_Sodium_Compat::$fastMult */ |
@@ -304,34 +304,34 @@ discard block |
||
| 304 | 304 | ParagonIE_Sodium_Compat::$fastMult = true; |
| 305 | 305 | |
| 306 | 306 | /** @var ParagonIE_Sodium_Core_Curve25519_Ge_P3 $A */ |
| 307 | - $A = self::ge_frombytes_negate_vartime($pk); |
|
| 307 | + $A = self::ge_frombytes_negate_vartime( $pk ); |
|
| 308 | 308 | |
| 309 | 309 | /** @var string $hDigest */ |
| 310 | 310 | $hDigest = hash( |
| 311 | 311 | 'sha512', |
| 312 | - self::substr($sig, 0, 32) . |
|
| 313 | - self::substr($pk, 0, 32) . |
|
| 312 | + self::substr( $sig, 0, 32 ) . |
|
| 313 | + self::substr( $pk, 0, 32 ) . |
|
| 314 | 314 | $message, |
| 315 | 315 | true |
| 316 | 316 | ); |
| 317 | 317 | |
| 318 | 318 | /** @var string $h */ |
| 319 | - $h = self::sc_reduce($hDigest) . self::substr($hDigest, 32); |
|
| 319 | + $h = self::sc_reduce( $hDigest ) . self::substr( $hDigest, 32 ); |
|
| 320 | 320 | |
| 321 | 321 | /** @var ParagonIE_Sodium_Core_Curve25519_Ge_P2 $R */ |
| 322 | 322 | $R = self::ge_double_scalarmult_vartime( |
| 323 | 323 | $h, |
| 324 | 324 | $A, |
| 325 | - self::substr($sig, 32) |
|
| 325 | + self::substr( $sig, 32 ) |
|
| 326 | 326 | ); |
| 327 | 327 | |
| 328 | 328 | /** @var string $rcheck */ |
| 329 | - $rcheck = self::ge_tobytes($R); |
|
| 329 | + $rcheck = self::ge_tobytes( $R ); |
|
| 330 | 330 | |
| 331 | 331 | // Reset ParagonIE_Sodium_Compat::$fastMult to what it was before. |
| 332 | 332 | ParagonIE_Sodium_Compat::$fastMult = $orig; |
| 333 | 333 | |
| 334 | - return self::verify_32($rcheck, self::substr($sig, 0, 32)); |
|
| 334 | + return self::verify_32( $rcheck, self::substr( $sig, 0, 32 ) ); |
|
| 335 | 335 | } |
| 336 | 336 | |
| 337 | 337 | /** |
@@ -342,10 +342,10 @@ discard block |
||
| 342 | 342 | * @throws SodiumException |
| 343 | 343 | * @throws TypeError |
| 344 | 344 | */ |
| 345 | - public static function check_S_lt_L($S) |
|
| 345 | + public static function check_S_lt_L( $S ) |
|
| 346 | 346 | { |
| 347 | - if (self::strlen($S) < 32) { |
|
| 348 | - throw new SodiumException('Signature must be 32 bytes'); |
|
| 347 | + if ( self::strlen( $S ) < 32 ) { |
|
| 348 | + throw new SodiumException( 'Signature must be 32 bytes' ); |
|
| 349 | 349 | } |
| 350 | 350 | $L = array( |
| 351 | 351 | 0xed, 0xd3, 0xf5, 0x5c, 0x1a, 0x63, 0x12, 0x58, |
@@ -360,14 +360,14 @@ discard block |
||
| 360 | 360 | /** @var array<int, int> $L */ |
| 361 | 361 | do { |
| 362 | 362 | --$i; |
| 363 | - $x = self::chrToInt($S[$i]); |
|
| 363 | + $x = self::chrToInt( $S[ $i ] ); |
|
| 364 | 364 | $c |= ( |
| 365 | - (($x - $L[$i]) >> 8) & $n |
|
| 365 | + ( ( $x - $L[ $i ] ) >> 8 ) & $n |
|
| 366 | 366 | ); |
| 367 | 367 | $n &= ( |
| 368 | - (($x ^ $L[$i]) - 1) >> 8 |
|
| 368 | + ( ( $x ^ $L[ $i ] ) - 1 ) >> 8 |
|
| 369 | 369 | ); |
| 370 | - } while ($i !== 0); |
|
| 370 | + } while ( $i !== 0 ); |
|
| 371 | 371 | |
| 372 | 372 | return $c === 0; |
| 373 | 373 | } |
@@ -378,7 +378,7 @@ discard block |
||
| 378 | 378 | * @throws SodiumException |
| 379 | 379 | * @throws TypeError |
| 380 | 380 | */ |
| 381 | - public static function small_order($R) |
|
| 381 | + public static function small_order( $R ) |
|
| 382 | 382 | { |
| 383 | 383 | /** @var array<int, array<int, int>> $blocklist */ |
| 384 | 384 | $blocklist = array( |
@@ -468,14 +468,14 @@ discard block |
||
| 468 | 468 | ) |
| 469 | 469 | ); |
| 470 | 470 | /** @var int $countBlocklist */ |
| 471 | - $countBlocklist = count($blocklist); |
|
| 471 | + $countBlocklist = count( $blocklist ); |
|
| 472 | 472 | |
| 473 | - for ($i = 0; $i < $countBlocklist; ++$i) { |
|
| 473 | + for ( $i = 0; $i < $countBlocklist; ++$i ) { |
|
| 474 | 474 | $c = 0; |
| 475 | - for ($j = 0; $j < 32; ++$j) { |
|
| 476 | - $c |= self::chrToInt($R[$j]) ^ (int) $blocklist[$i][$j]; |
|
| 475 | + for ( $j = 0; $j < 32; ++$j ) { |
|
| 476 | + $c |= self::chrToInt( $R[ $j ] ) ^ (int)$blocklist[ $i ][ $j ]; |
|
| 477 | 477 | } |
| 478 | - if ($c === 0) { |
|
| 478 | + if ( $c === 0 ) { |
|
| 479 | 479 | return true; |
| 480 | 480 | } |
| 481 | 481 | } |
@@ -487,13 +487,13 @@ discard block |
||
| 487 | 487 | * @return string |
| 488 | 488 | * @throws SodiumException |
| 489 | 489 | */ |
| 490 | - public static function scalar_complement($s) |
|
| 490 | + public static function scalar_complement( $s ) |
|
| 491 | 491 | { |
| 492 | - $t_ = self::L . str_repeat("\x00", 32); |
|
| 493 | - sodium_increment($t_); |
|
| 494 | - $s_ = $s . str_repeat("\x00", 32); |
|
| 495 | - ParagonIE_Sodium_Compat::sub($t_, $s_); |
|
| 496 | - return self::sc_reduce($t_); |
|
| 492 | + $t_ = self::L . str_repeat( "\x00", 32 ); |
|
| 493 | + sodium_increment( $t_ ); |
|
| 494 | + $s_ = $s . str_repeat( "\x00", 32 ); |
|
| 495 | + ParagonIE_Sodium_Compat::sub( $t_, $s_ ); |
|
| 496 | + return self::sc_reduce( $t_ ); |
|
| 497 | 497 | } |
| 498 | 498 | |
| 499 | 499 | /** |
@@ -503,12 +503,12 @@ discard block |
||
| 503 | 503 | public static function scalar_random() |
| 504 | 504 | { |
| 505 | 505 | do { |
| 506 | - $r = ParagonIE_Sodium_Compat::randombytes_buf(self::SCALAR_BYTES); |
|
| 507 | - $r[self::SCALAR_BYTES - 1] = self::intToChr( |
|
| 508 | - self::chrToInt($r[self::SCALAR_BYTES - 1]) & 0x1f |
|
| 506 | + $r = ParagonIE_Sodium_Compat::randombytes_buf( self::SCALAR_BYTES ); |
|
| 507 | + $r[ self::SCALAR_BYTES - 1 ] = self::intToChr( |
|
| 508 | + self::chrToInt( $r[ self::SCALAR_BYTES - 1 ] ) & 0x1f |
|
| 509 | 509 | ); |
| 510 | 510 | } while ( |
| 511 | - !self::check_S_lt_L($r) || ParagonIE_Sodium_Compat::is_zero($r) |
|
| 511 | + ! self::check_S_lt_L( $r ) || ParagonIE_Sodium_Compat::is_zero( $r ) |
|
| 512 | 512 | ); |
| 513 | 513 | return $r; |
| 514 | 514 | } |
@@ -518,12 +518,12 @@ discard block |
||
| 518 | 518 | * @return string |
| 519 | 519 | * @throws SodiumException |
| 520 | 520 | */ |
| 521 | - public static function scalar_negate($s) |
|
| 521 | + public static function scalar_negate( $s ) |
|
| 522 | 522 | { |
| 523 | - $t_ = self::L . str_repeat("\x00", 32) ; |
|
| 524 | - $s_ = $s . str_repeat("\x00", 32) ; |
|
| 525 | - ParagonIE_Sodium_Compat::sub($t_, $s_); |
|
| 526 | - return self::sc_reduce($t_); |
|
| 523 | + $t_ = self::L . str_repeat( "\x00", 32 ); |
|
| 524 | + $s_ = $s . str_repeat( "\x00", 32 ); |
|
| 525 | + ParagonIE_Sodium_Compat::sub( $t_, $s_ ); |
|
| 526 | + return self::sc_reduce( $t_ ); |
|
| 527 | 527 | } |
| 528 | 528 | |
| 529 | 529 | /** |
@@ -532,12 +532,12 @@ discard block |
||
| 532 | 532 | * @return string |
| 533 | 533 | * @throws SodiumException |
| 534 | 534 | */ |
| 535 | - public static function scalar_add($a, $b) |
|
| 535 | + public static function scalar_add( $a, $b ) |
|
| 536 | 536 | { |
| 537 | - $a_ = $a . str_repeat("\x00", 32); |
|
| 538 | - $b_ = $b . str_repeat("\x00", 32); |
|
| 539 | - ParagonIE_Sodium_Compat::add($a_, $b_); |
|
| 540 | - return self::sc_reduce($a_); |
|
| 537 | + $a_ = $a . str_repeat( "\x00", 32 ); |
|
| 538 | + $b_ = $b . str_repeat( "\x00", 32 ); |
|
| 539 | + ParagonIE_Sodium_Compat::add( $a_, $b_ ); |
|
| 540 | + return self::sc_reduce( $a_ ); |
|
| 541 | 541 | } |
| 542 | 542 | |
| 543 | 543 | /** |
@@ -546,9 +546,9 @@ discard block |
||
| 546 | 546 | * @return string |
| 547 | 547 | * @throws SodiumException |
| 548 | 548 | */ |
| 549 | - public static function scalar_sub($x, $y) |
|
| 549 | + public static function scalar_sub( $x, $y ) |
|
| 550 | 550 | { |
| 551 | - $yn = self::scalar_negate($y); |
|
| 552 | - return self::scalar_add($x, $yn); |
|
| 551 | + $yn = self::scalar_negate( $y ); |
|
| 552 | + return self::scalar_add( $x, $yn ); |
|
| 553 | 553 | } |
| 554 | 554 | } |