12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433 |
- <?php
- require_once dirname(dirname(__FILE__)) . '/autoload.php';
- /**
- * This file will monkey patch the pure-PHP implementation in place of the
- * PECL functions and constants, but only if they do not already exist.
- *
- * Thus, the functions or constants just proxy to the appropriate
- * ParagonIE_Sodium_Compat method or class constant, respectively.
- */
- foreach (array(
- 'BASE64_VARIANT_ORIGINAL',
- 'BASE64_VARIANT_ORIGINAL_NO_PADDING',
- 'BASE64_VARIANT_URLSAFE',
- 'BASE64_VARIANT_URLSAFE_NO_PADDING',
- 'CRYPTO_AEAD_CHACHA20POLY1305_KEYBYTES',
- 'CRYPTO_AEAD_CHACHA20POLY1305_NSECBYTES',
- 'CRYPTO_AEAD_CHACHA20POLY1305_NPUBBYTES',
- 'CRYPTO_AEAD_CHACHA20POLY1305_ABYTES',
- 'CRYPTO_AEAD_AES256GCM_KEYBYTES',
- 'CRYPTO_AEAD_AES256GCM_NSECBYTES',
- 'CRYPTO_AEAD_AES256GCM_NPUBBYTES',
- 'CRYPTO_AEAD_AES256GCM_ABYTES',
- 'CRYPTO_AEAD_CHACHA20POLY1305_IETF_KEYBYTES',
- 'CRYPTO_AEAD_CHACHA20POLY1305_IETF_NSECBYTES',
- 'CRYPTO_AEAD_CHACHA20POLY1305_IETF_NPUBBYTES',
- 'CRYPTO_AEAD_CHACHA20POLY1305_IETF_ABYTES',
- 'CRYPTO_AEAD_XCHACHA20POLY1305_IETF_KEYBYTES',
- 'CRYPTO_AEAD_XCHACHA20POLY1305_IETF_NSECBYTES',
- 'CRYPTO_AEAD_XCHACHA20POLY1305_IETF_NPUBBYTES',
- 'CRYPTO_AEAD_XCHACHA20POLY1305_IETF_ABYTES',
- 'CRYPTO_AUTH_BYTES',
- 'CRYPTO_AUTH_KEYBYTES',
- 'CRYPTO_BOX_SEALBYTES',
- 'CRYPTO_BOX_SECRETKEYBYTES',
- 'CRYPTO_BOX_PUBLICKEYBYTES',
- 'CRYPTO_BOX_KEYPAIRBYTES',
- 'CRYPTO_BOX_MACBYTES',
- 'CRYPTO_BOX_NONCEBYTES',
- 'CRYPTO_BOX_SEEDBYTES',
- 'CRYPTO_KDF_BYTES_MIN',
- 'CRYPTO_KDF_BYTES_MAX',
- 'CRYPTO_KDF_CONTEXTBYTES',
- 'CRYPTO_KDF_KEYBYTES',
- 'CRYPTO_KX_BYTES',
- 'CRYPTO_KX_KEYPAIRBYTES',
- 'CRYPTO_KX_PRIMITIVE',
- 'CRYPTO_KX_SEEDBYTES',
- 'CRYPTO_KX_PUBLICKEYBYTES',
- 'CRYPTO_KX_SECRETKEYBYTES',
- 'CRYPTO_KX_SESSIONKEYBYTES',
- 'CRYPTO_GENERICHASH_BYTES',
- 'CRYPTO_GENERICHASH_BYTES_MIN',
- 'CRYPTO_GENERICHASH_BYTES_MAX',
- 'CRYPTO_GENERICHASH_KEYBYTES',
- 'CRYPTO_GENERICHASH_KEYBYTES_MIN',
- 'CRYPTO_GENERICHASH_KEYBYTES_MAX',
- 'CRYPTO_PWHASH_SALTBYTES',
- 'CRYPTO_PWHASH_STRPREFIX',
- 'CRYPTO_PWHASH_ALG_ARGON2I13',
- 'CRYPTO_PWHASH_ALG_ARGON2ID13',
- 'CRYPTO_PWHASH_MEMLIMIT_INTERACTIVE',
- 'CRYPTO_PWHASH_OPSLIMIT_INTERACTIVE',
- 'CRYPTO_PWHASH_MEMLIMIT_MODERATE',
- 'CRYPTO_PWHASH_OPSLIMIT_MODERATE',
- 'CRYPTO_PWHASH_MEMLIMIT_SENSITIVE',
- 'CRYPTO_PWHASH_OPSLIMIT_SENSITIVE',
- 'CRYPTO_PWHASH_SCRYPTSALSA208SHA256_SALTBYTES',
- 'CRYPTO_PWHASH_SCRYPTSALSA208SHA256_STRPREFIX',
- 'CRYPTO_PWHASH_SCRYPTSALSA208SHA256_MEMLIMIT_INTERACTIVE',
- 'CRYPTO_PWHASH_SCRYPTSALSA208SHA256_OPSLIMIT_INTERACTIVE',
- 'CRYPTO_PWHASH_SCRYPTSALSA208SHA256_MEMLIMIT_SENSITIVE',
- 'CRYPTO_PWHASH_SCRYPTSALSA208SHA256_OPSLIMIT_SENSITIVE',
- 'CRYPTO_SCALARMULT_BYTES',
- 'CRYPTO_SCALARMULT_SCALARBYTES',
- 'CRYPTO_SHORTHASH_BYTES',
- 'CRYPTO_SHORTHASH_KEYBYTES',
- 'CRYPTO_SECRETBOX_KEYBYTES',
- 'CRYPTO_SECRETBOX_MACBYTES',
- 'CRYPTO_SECRETBOX_NONCEBYTES',
- 'CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_ABYTES',
- 'CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_HEADERBYTES',
- 'CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_KEYBYTES',
- 'CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_PUSH',
- 'CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_PULL',
- 'CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_REKEY',
- 'CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_FINAL',
- 'CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_MESSAGEBYTES_MAX',
- 'CRYPTO_SIGN_BYTES',
- 'CRYPTO_SIGN_SEEDBYTES',
- 'CRYPTO_SIGN_PUBLICKEYBYTES',
- 'CRYPTO_SIGN_SECRETKEYBYTES',
- 'CRYPTO_SIGN_KEYPAIRBYTES',
- 'CRYPTO_STREAM_KEYBYTES',
- 'CRYPTO_STREAM_NONCEBYTES',
- 'CRYPTO_STREAM_XCHACHA20_KEYBYTES',
- 'CRYPTO_STREAM_XCHACHA20_NONCEBYTES',
- 'LIBRARY_MAJOR_VERSION',
- 'LIBRARY_MINOR_VERSION',
- 'LIBRARY_VERSION_MAJOR',
- 'LIBRARY_VERSION_MINOR',
- 'VERSION_STRING'
- ) as $constant
- ) {
- if (!defined("SODIUM_$constant") && defined("ParagonIE_Sodium_Compat::$constant")) {
- define("SODIUM_$constant", constant("ParagonIE_Sodium_Compat::$constant"));
- }
- }
- if (!is_callable('sodium_add')) {
- /**
- * @see ParagonIE_Sodium_Compat::add()
- * @param string $string1
- * @param string $string2
- * @return void
- * @throws SodiumException
- */
- function sodium_add(&$string1, $string2)
- {
- ParagonIE_Sodium_Compat::add($string1, $string2);
- }
- }
- if (!is_callable('sodium_base642bin')) {
- /**
- * @see ParagonIE_Sodium_Compat::bin2base64()
- * @param string $string
- * @param int $variant
- * @param string $ignore
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_base642bin($string, $variant, $ignore ='')
- {
- return ParagonIE_Sodium_Compat::base642bin($string, $variant, $ignore);
- }
- }
- if (!is_callable('sodium_bin2base64')) {
- /**
- * @see ParagonIE_Sodium_Compat::bin2base64()
- * @param string $string
- * @param int $variant
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_bin2base64($string, $variant)
- {
- return ParagonIE_Sodium_Compat::bin2base64($string, $variant);
- }
- }
- if (!is_callable('sodium_bin2hex')) {
- /**
- * @see ParagonIE_Sodium_Compat::hex2bin()
- * @param string $string
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_bin2hex($string)
- {
- return ParagonIE_Sodium_Compat::bin2hex($string);
- }
- }
- if (!is_callable('sodium_compare')) {
- /**
- * @see ParagonIE_Sodium_Compat::compare()
- * @param string $string1
- * @param string $string2
- * @return int
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_compare($string1, $string2)
- {
- return ParagonIE_Sodium_Compat::compare($string1, $string2);
- }
- }
- if (!is_callable('sodium_crypto_aead_aes256gcm_decrypt')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_aes256gcm_decrypt()
- * @param string $ciphertext
- * @param string $additional_data
- * @param string $nonce
- * @param string $key
- * @return string|bool
- */
- function sodium_crypto_aead_aes256gcm_decrypt($ciphertext, $additional_data, $nonce, $key)
- {
- try {
- return ParagonIE_Sodium_Compat::crypto_aead_aes256gcm_decrypt(
- $ciphertext,
- $additional_data,
- $nonce,
- $key
- );
- } catch (Error $ex) {
- return false;
- } catch (Exception $ex) {
- if (($ex instanceof SodiumException) && ($ex->getMessage() === 'AES-256-GCM is not available')) {
- throw $ex;
- }
- return false;
- }
- }
- }
- if (!is_callable('sodium_crypto_aead_aes256gcm_encrypt')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_aes256gcm_encrypt()
- * @param string $message
- * @param string $additional_data
- * @param string $nonce
- * @param string $key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_aead_aes256gcm_encrypt($message, $additional_data, $nonce, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_aead_aes256gcm_encrypt($message, $additional_data, $nonce, $key);
- }
- }
- if (!is_callable('sodium_crypto_aead_aes256gcm_is_available')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_aes256gcm_is_available()
- * @return bool
- */
- function sodium_crypto_aead_aes256gcm_is_available()
- {
- return ParagonIE_Sodium_Compat::crypto_aead_aes256gcm_is_available();
- }
- }
- if (!is_callable('sodium_crypto_aead_chacha20poly1305_decrypt')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_decrypt()
- * @param string $ciphertext
- * @param string $additional_data
- * @param string $nonce
- * @param string $key
- * @return string|bool
- */
- function sodium_crypto_aead_chacha20poly1305_decrypt($ciphertext, $additional_data, $nonce, $key)
- {
- try {
- return ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_decrypt(
- $ciphertext,
- $additional_data,
- $nonce,
- $key
- );
- } catch (Error $ex) {
- return false;
- } catch (Exception $ex) {
- return false;
- }
- }
- }
- if (!is_callable('sodium_crypto_aead_chacha20poly1305_encrypt')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_encrypt()
- * @param string $message
- * @param string $additional_data
- * @param string $nonce
- * @param string $key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_aead_chacha20poly1305_encrypt($message, $additional_data, $nonce, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_encrypt(
- $message,
- $additional_data,
- $nonce,
- $key
- );
- }
- }
- if (!is_callable('sodium_crypto_aead_chacha20poly1305_keygen')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_keygen()
- * @return string
- * @throws Exception
- */
- function sodium_crypto_aead_chacha20poly1305_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_keygen();
- }
- }
- if (!is_callable('sodium_crypto_aead_chacha20poly1305_ietf_decrypt')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt()
- * @param string $message
- * @param string $additional_data
- * @param string $nonce
- * @param string $key
- * @return string|bool
- */
- function sodium_crypto_aead_chacha20poly1305_ietf_decrypt($message, $additional_data, $nonce, $key)
- {
- try {
- return ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt(
- $message,
- $additional_data,
- $nonce,
- $key
- );
- } catch (Error $ex) {
- return false;
- } catch (Exception $ex) {
- return false;
- }
- }
- }
- if (!is_callable('sodium_crypto_aead_chacha20poly1305_ietf_encrypt')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_encrypt()
- * @param string $message
- * @param string $additional_data
- * @param string $nonce
- * @param string $key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_aead_chacha20poly1305_ietf_encrypt($message, $additional_data, $nonce, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_encrypt(
- $message,
- $additional_data,
- $nonce,
- $key
- );
- }
- }
- if (!is_callable('sodium_crypto_aead_chacha20poly1305_ietf_keygen')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_keygen()
- * @return string
- * @throws Exception
- */
- function sodium_crypto_aead_chacha20poly1305_ietf_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_keygen();
- }
- }
- if (!is_callable('sodium_crypto_aead_xchacha20poly1305_ietf_decrypt')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_decrypt()
- * @param string $ciphertext
- * @param string $additional_data
- * @param string $nonce
- * @param string $key
- * @return string|bool
- */
- function sodium_crypto_aead_xchacha20poly1305_ietf_decrypt($ciphertext, $additional_data, $nonce, $key)
- {
- try {
- return ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_decrypt(
- $ciphertext,
- $additional_data,
- $nonce,
- $key,
- true
- );
- } catch (Error $ex) {
- return false;
- } catch (Exception $ex) {
- return false;
- }
- }
- }
- if (!is_callable('sodium_crypto_aead_xchacha20poly1305_ietf_encrypt')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_encrypt()
- * @param string $message
- * @param string $additional_data
- * @param string $nonce
- * @param string $key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_aead_xchacha20poly1305_ietf_encrypt(
- $message,
- $additional_data,
- $nonce,
- $key
- ) {
- return ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_encrypt(
- $message,
- $additional_data,
- $nonce,
- $key,
- true
- );
- }
- }
- if (!is_callable('sodium_crypto_aead_xchacha20poly1305_ietf_keygen')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_keygen()
- * @return string
- * @throws Exception
- */
- function sodium_crypto_aead_xchacha20poly1305_ietf_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_keygen();
- }
- }
- if (!is_callable('sodium_crypto_auth')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_auth()
- * @param string $message
- * @param string $key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_auth($message, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_auth($message, $key);
- }
- }
- if (!is_callable('sodium_crypto_auth_keygen')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_auth_keygen()
- * @return string
- * @throws Exception
- */
- function sodium_crypto_auth_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_auth_keygen();
- }
- }
- if (!is_callable('sodium_crypto_auth_verify')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_auth_verify()
- * @param string $mac
- * @param string $message
- * @param string $key
- * @return bool
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_auth_verify($mac, $message, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_auth_verify($mac, $message, $key);
- }
- }
- if (!is_callable('sodium_crypto_box')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box()
- * @param string $message
- * @param string $nonce
- * @param string $key_pair
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_box($message, $nonce, $key_pair)
- {
- return ParagonIE_Sodium_Compat::crypto_box($message, $nonce, $key_pair);
- }
- }
- if (!is_callable('sodium_crypto_box_keypair')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box_keypair()
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_box_keypair()
- {
- return ParagonIE_Sodium_Compat::crypto_box_keypair();
- }
- }
- if (!is_callable('sodium_crypto_box_keypair_from_secretkey_and_publickey')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box_keypair_from_secretkey_and_publickey()
- * @param string $secret_key
- * @param string $public_key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_box_keypair_from_secretkey_and_publickey($secret_key, $public_key)
- {
- return ParagonIE_Sodium_Compat::crypto_box_keypair_from_secretkey_and_publickey($secret_key, $public_key);
- }
- }
- if (!is_callable('sodium_crypto_box_open')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box_open()
- * @param string $ciphertext
- * @param string $nonce
- * @param string $key_pair
- * @return string|bool
- */
- function sodium_crypto_box_open($ciphertext, $nonce, $key_pair)
- {
- try {
- return ParagonIE_Sodium_Compat::crypto_box_open($ciphertext, $nonce, $key_pair);
- } catch (Error $ex) {
- return false;
- } catch (Exception $ex) {
- return false;
- }
- }
- }
- if (!is_callable('sodium_crypto_box_publickey')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box_publickey()
- * @param string $key_pair
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_box_publickey($key_pair)
- {
- return ParagonIE_Sodium_Compat::crypto_box_publickey($key_pair);
- }
- }
- if (!is_callable('sodium_crypto_box_publickey_from_secretkey')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box_publickey_from_secretkey()
- * @param string $secret_key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_box_publickey_from_secretkey($secret_key)
- {
- return ParagonIE_Sodium_Compat::crypto_box_publickey_from_secretkey($secret_key);
- }
- }
- if (!is_callable('sodium_crypto_box_seal')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box_seal()
- * @param string $message
- * @param string $public_key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_box_seal($message, $public_key)
- {
- return ParagonIE_Sodium_Compat::crypto_box_seal($message, $public_key);
- }
- }
- if (!is_callable('sodium_crypto_box_seal_open')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box_seal_open()
- * @param string $message
- * @param string $key_pair
- * @return string|bool
- * @throws SodiumException
- */
- function sodium_crypto_box_seal_open($message, $key_pair)
- {
- try {
- return ParagonIE_Sodium_Compat::crypto_box_seal_open($message, $key_pair);
- } catch (SodiumException $ex) {
- if ($ex->getMessage() === 'Argument 2 must be CRYPTO_BOX_KEYPAIRBYTES long.') {
- throw $ex;
- }
- return false;
- }
- }
- }
- if (!is_callable('sodium_crypto_box_secretkey')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box_secretkey()
- * @param string $key_pair
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_box_secretkey($key_pair)
- {
- return ParagonIE_Sodium_Compat::crypto_box_secretkey($key_pair);
- }
- }
- if (!is_callable('sodium_crypto_box_seed_keypair')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_box_seed_keypair()
- * @param string $seed
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_box_seed_keypair($seed)
- {
- return ParagonIE_Sodium_Compat::crypto_box_seed_keypair($seed);
- }
- }
- if (!is_callable('sodium_crypto_generichash')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_generichash()
- * @param string $message
- * @param string|null $key
- * @param int $length
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_generichash($message, $key = null, $length = 32)
- {
- return ParagonIE_Sodium_Compat::crypto_generichash($message, $key, $length);
- }
- }
- if (!is_callable('sodium_crypto_generichash_final')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_generichash_final()
- * @param string|null $state
- * @param int $outputLength
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_generichash_final(&$state, $outputLength = 32)
- {
- return ParagonIE_Sodium_Compat::crypto_generichash_final($state, $outputLength);
- }
- }
- if (!is_callable('sodium_crypto_generichash_init')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_generichash_init()
- * @param string|null $key
- * @param int $length
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_generichash_init($key = null, $length = 32)
- {
- return ParagonIE_Sodium_Compat::crypto_generichash_init($key, $length);
- }
- }
- if (!is_callable('sodium_crypto_generichash_keygen')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_generichash_keygen()
- * @return string
- * @throws Exception
- */
- function sodium_crypto_generichash_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_generichash_keygen();
- }
- }
- if (!is_callable('sodium_crypto_generichash_update')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_generichash_update()
- * @param string|null $state
- * @param string $message
- * @return void
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_generichash_update(&$state, $message = '')
- {
- ParagonIE_Sodium_Compat::crypto_generichash_update($state, $message);
- }
- }
- if (!is_callable('sodium_crypto_kdf_keygen')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_kdf_keygen()
- * @return string
- * @throws Exception
- */
- function sodium_crypto_kdf_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_kdf_keygen();
- }
- }
- if (!is_callable('sodium_crypto_kdf_derive_from_key')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_kdf_derive_from_key()
- * @param int $subkey_length
- * @param int $subkey_id
- * @param string $context
- * @param string $key
- * @return string
- * @throws Exception
- */
- function sodium_crypto_kdf_derive_from_key($subkey_length, $subkey_id, $context, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_kdf_derive_from_key(
- $subkey_length,
- $subkey_id,
- $context,
- $key
- );
- }
- }
- if (!is_callable('sodium_crypto_kx')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_kx()
- * @param string $my_secret
- * @param string $their_public
- * @param string $client_public
- * @param string $server_public
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_kx($my_secret, $their_public, $client_public, $server_public)
- {
- return ParagonIE_Sodium_Compat::crypto_kx(
- $my_secret,
- $their_public,
- $client_public,
- $server_public
- );
- }
- }
- if (!is_callable('sodium_crypto_kx_seed_keypair')) {
- /**
- * @param string $seed
- * @return string
- * @throws Exception
- */
- function sodium_crypto_kx_seed_keypair($seed)
- {
- return ParagonIE_Sodium_Compat::crypto_kx_seed_keypair($seed);
- }
- }
- if (!is_callable('sodium_crypto_kx_keypair')) {
- /**
- * @return string
- * @throws Exception
- */
- function sodium_crypto_kx_keypair()
- {
- return ParagonIE_Sodium_Compat::crypto_kx_keypair();
- }
- }
- if (!is_callable('sodium_crypto_kx_client_session_keys')) {
- /**
- * @param string $client_key_pair
- * @param string $server_key
- * @return array{0: string, 1: string}
- * @throws SodiumException
- */
- function sodium_crypto_kx_client_session_keys($client_key_pair, $server_key)
- {
- return ParagonIE_Sodium_Compat::crypto_kx_client_session_keys($client_key_pair, $server_key);
- }
- }
- if (!is_callable('sodium_crypto_kx_server_session_keys')) {
- /**
- * @param string $server_key_pair
- * @param string $client_key
- * @return array{0: string, 1: string}
- * @throws SodiumException
- */
- function sodium_crypto_kx_server_session_keys($server_key_pair, $client_key)
- {
- return ParagonIE_Sodium_Compat::crypto_kx_server_session_keys($server_key_pair, $client_key);
- }
- }
- if (!is_callable('sodium_crypto_kx_secretkey')) {
- /**
- * @param string $key_pair
- * @return string
- * @throws Exception
- */
- function sodium_crypto_kx_secretkey($key_pair)
- {
- return ParagonIE_Sodium_Compat::crypto_kx_secretkey($key_pair);
- }
- }
- if (!is_callable('sodium_crypto_kx_publickey')) {
- /**
- * @param string $key_pair
- * @return string
- * @throws Exception
- */
- function sodium_crypto_kx_publickey($key_pair)
- {
- return ParagonIE_Sodium_Compat::crypto_kx_publickey($key_pair);
- }
- }
- if (!is_callable('sodium_crypto_pwhash')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_pwhash()
- * @param int $length
- * @param string $passwd
- * @param string $salt
- * @param int $opslimit
- * @param int $memlimit
- * @param int|null $algo
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_pwhash($length, $passwd, $salt, $opslimit, $memlimit, $algo = null)
- {
- return ParagonIE_Sodium_Compat::crypto_pwhash($length, $passwd, $salt, $opslimit, $memlimit, $algo);
- }
- }
- if (!is_callable('sodium_crypto_pwhash_str')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_pwhash_str()
- * @param string $passwd
- * @param int $opslimit
- * @param int $memlimit
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_pwhash_str($passwd, $opslimit, $memlimit)
- {
- return ParagonIE_Sodium_Compat::crypto_pwhash_str($passwd, $opslimit, $memlimit);
- }
- }
- if (!is_callable('sodium_crypto_pwhash_str_needs_rehash')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_pwhash_str_needs_rehash()
- * @param string $hash
- * @param int $opslimit
- * @param int $memlimit
- * @return bool
- *
- * @throws SodiumException
- */
- function sodium_crypto_pwhash_str_needs_rehash($hash, $opslimit, $memlimit)
- {
- return ParagonIE_Sodium_Compat::crypto_pwhash_str_needs_rehash($hash, $opslimit, $memlimit);
- }
- }
- if (!is_callable('sodium_crypto_pwhash_str_verify')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_pwhash_str_verify()
- * @param string $passwd
- * @param string $hash
- * @return bool
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_pwhash_str_verify($passwd, $hash)
- {
- return ParagonIE_Sodium_Compat::crypto_pwhash_str_verify($passwd, $hash);
- }
- }
- if (!is_callable('sodium_crypto_pwhash_scryptsalsa208sha256')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_pwhash_scryptsalsa208sha256()
- * @param int $length
- * @param string $passwd
- * @param string $salt
- * @param int $opslimit
- * @param int $memlimit
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_pwhash_scryptsalsa208sha256($length, $passwd, $salt, $opslimit, $memlimit)
- {
- return ParagonIE_Sodium_Compat::crypto_pwhash_scryptsalsa208sha256(
- $length,
- $passwd,
- $salt,
- $opslimit,
- $memlimit
- );
- }
- }
- if (!is_callable('sodium_crypto_pwhash_scryptsalsa208sha256_str')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_pwhash_scryptsalsa208sha256_str()
- * @param string $passwd
- * @param int $opslimit
- * @param int $memlimit
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_pwhash_scryptsalsa208sha256_str($passwd, $opslimit, $memlimit)
- {
- return ParagonIE_Sodium_Compat::crypto_pwhash_scryptsalsa208sha256_str($passwd, $opslimit, $memlimit);
- }
- }
- if (!is_callable('sodium_crypto_pwhash_scryptsalsa208sha256_str_verify')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_pwhash_scryptsalsa208sha256_str_verify()
- * @param string $passwd
- * @param string $hash
- * @return bool
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_pwhash_scryptsalsa208sha256_str_verify($passwd, $hash)
- {
- return ParagonIE_Sodium_Compat::crypto_pwhash_scryptsalsa208sha256_str_verify($passwd, $hash);
- }
- }
- if (!is_callable('sodium_crypto_scalarmult')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_scalarmult()
- * @param string $n
- * @param string $p
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_scalarmult($n, $p)
- {
- return ParagonIE_Sodium_Compat::crypto_scalarmult($n, $p);
- }
- }
- if (!is_callable('sodium_crypto_scalarmult_base')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_scalarmult_base()
- * @param string $n
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_scalarmult_base($n)
- {
- return ParagonIE_Sodium_Compat::crypto_scalarmult_base($n);
- }
- }
- if (!is_callable('sodium_crypto_secretbox')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_secretbox()
- * @param string $message
- * @param string $nonce
- * @param string $key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_secretbox($message, $nonce, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_secretbox($message, $nonce, $key);
- }
- }
- if (!is_callable('sodium_crypto_secretbox_keygen')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_secretbox_keygen()
- * @return string
- * @throws Exception
- */
- function sodium_crypto_secretbox_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_secretbox_keygen();
- }
- }
- if (!is_callable('sodium_crypto_secretbox_open')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_secretbox_open()
- * @param string $ciphertext
- * @param string $nonce
- * @param string $key
- * @return string|bool
- */
- function sodium_crypto_secretbox_open($ciphertext, $nonce, $key)
- {
- try {
- return ParagonIE_Sodium_Compat::crypto_secretbox_open($ciphertext, $nonce, $key);
- } catch (Error $ex) {
- return false;
- } catch (Exception $ex) {
- return false;
- }
- }
- }
- if (!is_callable('sodium_crypto_secretstream_xchacha20poly1305_init_push')) {
- /**
- * @param string $key
- * @return array<int, string>
- * @throws SodiumException
- */
- function sodium_crypto_secretstream_xchacha20poly1305_init_push($key)
- {
- return ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_init_push($key);
- }
- }
- if (!is_callable('sodium_crypto_secretstream_xchacha20poly1305_push')) {
- /**
- * @param string $state
- * @param string $message
- * @param string $additional_data
- * @param int $tag
- * @return string
- * @throws SodiumException
- */
- function sodium_crypto_secretstream_xchacha20poly1305_push(
- &$state,
- $message,
- $additional_data = '',
- $tag = 0
- ) {
- return ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_push(
- $state,
- $message,
- $additional_data,
- $tag
- );
- }
- }
- if (!is_callable('sodium_crypto_secretstream_xchacha20poly1305_init_pull')) {
- /**
- * @param string $header
- * @param string $key
- * @return string
- * @throws Exception
- */
- function sodium_crypto_secretstream_xchacha20poly1305_init_pull($header, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_init_pull($header, $key);
- }
- }
- if (!is_callable('sodium_crypto_secretstream_xchacha20poly1305_pull')) {
- /**
- * @param string $state
- * @param string $ciphertext
- * @param string $additional_data
- * @return bool|array{0: string, 1: int}
- * @throws SodiumException
- */
- function sodium_crypto_secretstream_xchacha20poly1305_pull(&$state, $ciphertext, $additional_data = '')
- {
- return ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_pull(
- $state,
- $ciphertext,
- $additional_data
- );
- }
- }
- if (!is_callable('sodium_crypto_secretstream_xchacha20poly1305_rekey')) {
- /**
- * @param string $state
- * @return void
- * @throws SodiumException
- */
- function sodium_crypto_secretstream_xchacha20poly1305_rekey(&$state)
- {
- ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_rekey($state);
- }
- }
- if (!is_callable('sodium_crypto_secretstream_xchacha20poly1305_keygen')) {
- /**
- * @return string
- * @throws Exception
- */
- function sodium_crypto_secretstream_xchacha20poly1305_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_keygen();
- }
- }
- if (!is_callable('sodium_crypto_shorthash')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_shorthash()
- * @param string $message
- * @param string $key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_shorthash($message, $key = '')
- {
- return ParagonIE_Sodium_Compat::crypto_shorthash($message, $key);
- }
- }
- if (!is_callable('sodium_crypto_shorthash_keygen')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_shorthash_keygen()
- * @return string
- * @throws Exception
- */
- function sodium_crypto_shorthash_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_shorthash_keygen();
- }
- }
- if (!is_callable('sodium_crypto_sign')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign()
- * @param string $message
- * @param string $secret_key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign($message, $secret_key)
- {
- return ParagonIE_Sodium_Compat::crypto_sign($message, $secret_key);
- }
- }
- if (!is_callable('sodium_crypto_sign_detached')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_detached()
- * @param string $message
- * @param string $secret_key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_detached($message, $secret_key)
- {
- return ParagonIE_Sodium_Compat::crypto_sign_detached($message, $secret_key);
- }
- }
- if (!is_callable('sodium_crypto_sign_keypair_from_secretkey_and_publickey')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_keypair_from_secretkey_and_publickey()
- * @param string $secret_key
- * @param string $public_key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_keypair_from_secretkey_and_publickey($secret_key, $public_key)
- {
- return ParagonIE_Sodium_Compat::crypto_sign_keypair_from_secretkey_and_publickey($secret_key, $public_key);
- }
- }
- if (!is_callable('sodium_crypto_sign_keypair')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_keypair()
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_keypair()
- {
- return ParagonIE_Sodium_Compat::crypto_sign_keypair();
- }
- }
- if (!is_callable('sodium_crypto_sign_open')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_open()
- * @param string $signedMessage
- * @param string $public_key
- * @return string|bool
- */
- function sodium_crypto_sign_open($signedMessage, $public_key)
- {
- try {
- return ParagonIE_Sodium_Compat::crypto_sign_open($signedMessage, $public_key);
- } catch (Error $ex) {
- return false;
- } catch (Exception $ex) {
- return false;
- }
- }
- }
- if (!is_callable('sodium_crypto_sign_publickey')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_publickey()
- * @param string $key_pair
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_publickey($key_pair)
- {
- return ParagonIE_Sodium_Compat::crypto_sign_publickey($key_pair);
- }
- }
- if (!is_callable('sodium_crypto_sign_publickey_from_secretkey')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_publickey_from_secretkey()
- * @param string $secret_key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_publickey_from_secretkey($secret_key)
- {
- return ParagonIE_Sodium_Compat::crypto_sign_publickey_from_secretkey($secret_key);
- }
- }
- if (!is_callable('sodium_crypto_sign_secretkey')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_secretkey()
- * @param string $key_pair
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_secretkey($key_pair)
- {
- return ParagonIE_Sodium_Compat::crypto_sign_secretkey($key_pair);
- }
- }
- if (!is_callable('sodium_crypto_sign_seed_keypair')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_seed_keypair()
- * @param string $seed
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_seed_keypair($seed)
- {
- return ParagonIE_Sodium_Compat::crypto_sign_seed_keypair($seed);
- }
- }
- if (!is_callable('sodium_crypto_sign_verify_detached')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_verify_detached()
- * @param string $signature
- * @param string $message
- * @param string $public_key
- * @return bool
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_verify_detached($signature, $message, $public_key)
- {
- return ParagonIE_Sodium_Compat::crypto_sign_verify_detached($signature, $message, $public_key);
- }
- }
- if (!is_callable('sodium_crypto_sign_ed25519_pk_to_curve25519')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_ed25519_pk_to_curve25519()
- * @param string $public_key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_ed25519_pk_to_curve25519($public_key)
- {
- return ParagonIE_Sodium_Compat::crypto_sign_ed25519_pk_to_curve25519($public_key);
- }
- }
- if (!is_callable('sodium_crypto_sign_ed25519_sk_to_curve25519')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_sign_ed25519_sk_to_curve25519()
- * @param string $secret_key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_sign_ed25519_sk_to_curve25519($secret_key)
- {
- return ParagonIE_Sodium_Compat::crypto_sign_ed25519_sk_to_curve25519($secret_key);
- }
- }
- if (!is_callable('sodium_crypto_stream')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_stream()
- * @param int $length
- * @param string $nonce
- * @param string $key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_stream($length, $nonce, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_stream($length, $nonce, $key);
- }
- }
- if (!is_callable('sodium_crypto_stream_keygen')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_stream_keygen()
- * @return string
- * @throws Exception
- */
- function sodium_crypto_stream_keygen()
- {
- return ParagonIE_Sodium_Compat::crypto_stream_keygen();
- }
- }
- if (!is_callable('sodium_crypto_stream_xor')) {
- /**
- * @see ParagonIE_Sodium_Compat::crypto_stream_xor()
- * @param string $message
- * @param string $nonce
- * @param string $key
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_crypto_stream_xor($message, $nonce, $key)
- {
- return ParagonIE_Sodium_Compat::crypto_stream_xor($message, $nonce, $key);
- }
- }
- require_once dirname(__FILE__) . '/stream-xchacha20.php';
- if (!is_callable('sodium_hex2bin')) {
- /**
- * @see ParagonIE_Sodium_Compat::hex2bin()
- * @param string $string
- * @param string $ignore
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_hex2bin($string, $ignore = '')
- {
- return ParagonIE_Sodium_Compat::hex2bin($string, $ignore);
- }
- }
- if (!is_callable('sodium_increment')) {
- /**
- * @see ParagonIE_Sodium_Compat::increment()
- * @param string $string
- * @return void
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_increment(&$string)
- {
- ParagonIE_Sodium_Compat::increment($string);
- }
- }
- if (!is_callable('sodium_library_version_major')) {
- /**
- * @see ParagonIE_Sodium_Compat::library_version_major()
- * @return int
- */
- function sodium_library_version_major()
- {
- return ParagonIE_Sodium_Compat::library_version_major();
- }
- }
- if (!is_callable('sodium_library_version_minor')) {
- /**
- * @see ParagonIE_Sodium_Compat::library_version_minor()
- * @return int
- */
- function sodium_library_version_minor()
- {
- return ParagonIE_Sodium_Compat::library_version_minor();
- }
- }
- if (!is_callable('sodium_version_string')) {
- /**
- * @see ParagonIE_Sodium_Compat::version_string()
- * @return string
- */
- function sodium_version_string()
- {
- return ParagonIE_Sodium_Compat::version_string();
- }
- }
- if (!is_callable('sodium_memcmp')) {
- /**
- * @see ParagonIE_Sodium_Compat::memcmp()
- * @param string $string1
- * @param string $string2
- * @return int
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_memcmp($string1, $string2)
- {
- return ParagonIE_Sodium_Compat::memcmp($string1, $string2);
- }
- }
- if (!is_callable('sodium_memzero')) {
- /**
- * @see ParagonIE_Sodium_Compat::memzero()
- * @param string $string
- * @return void
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_memzero(&$string)
- {
- ParagonIE_Sodium_Compat::memzero($string);
- }
- }
- if (!is_callable('sodium_pad')) {
- /**
- * @see ParagonIE_Sodium_Compat::pad()
- * @param string $unpadded
- * @param int $block_size
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_pad($unpadded, $block_size)
- {
- return ParagonIE_Sodium_Compat::pad($unpadded, $block_size, true);
- }
- }
- if (!is_callable('sodium_unpad')) {
- /**
- * @see ParagonIE_Sodium_Compat::pad()
- * @param string $padded
- * @param int $block_size
- * @return string
- * @throws SodiumException
- * @throws TypeError
- */
- function sodium_unpad($padded, $block_size)
- {
- return ParagonIE_Sodium_Compat::unpad($padded, $block_size, true);
- }
- }
- if (!is_callable('sodium_randombytes_buf')) {
- /**
- * @see ParagonIE_Sodium_Compat::randombytes_buf()
- * @param int $amount
- * @return string
- * @throws Exception
- */
- function sodium_randombytes_buf($amount)
- {
- return ParagonIE_Sodium_Compat::randombytes_buf($amount);
- }
- }
- if (!is_callable('sodium_randombytes_uniform')) {
- /**
- * @see ParagonIE_Sodium_Compat::randombytes_uniform()
- * @param int $upperLimit
- * @return int
- * @throws Exception
- */
- function sodium_randombytes_uniform($upperLimit)
- {
- return ParagonIE_Sodium_Compat::randombytes_uniform($upperLimit);
- }
- }
- if (!is_callable('sodium_randombytes_random16')) {
- /**
- * @see ParagonIE_Sodium_Compat::randombytes_random16()
- * @return int
- * @throws Exception
- */
- function sodium_randombytes_random16()
- {
- return ParagonIE_Sodium_Compat::randombytes_random16();
- }
- }
|