- Timestamp:
- 09/14/2022 12:11:11 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/sodium_compat/lib/stream-xchacha20.php
r51002 r54150 42 42 } 43 43 } 44 if (!is_callable('sodium_crypto_stream_xchacha20_xor_ic')) { 45 /** 46 * @see ParagonIE_Sodium_Compat::crypto_stream_xchacha20_xor_ic() 47 * @param string $message 48 * @param string $nonce 49 * @param int $counter 50 * @param string $key 51 * @return string 52 * @throws SodiumException 53 * @throws TypeError 54 */ 55 function sodium_crypto_stream_xchacha20_xor_ic($message, $nonce, $counter, $key) 56 { 57 return ParagonIE_Sodium_Compat::crypto_stream_xchacha20_xor_ic($message, $nonce, $counter, $key, true); 58 } 59 }
Note: See TracChangeset
for help on using the changeset viewer.