Changeset 2882747
- Timestamp:
- 03/18/2023 11:10:16 PM (3 years ago)
- Location:
- rainbowkit-login-web3-integration-for-sign-in-with-ethereum
- Files:
-
- 40 edited
- 1 copied
-
tags/0.3.4 (copied) (copied from rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk)
-
tags/0.3.4/readme.txt (modified) (2 diffs)
-
tags/0.3.4/vendor/autoload.php (modified) (1 diff)
-
tags/0.3.4/vendor/composer/ClassLoader.php (modified) (3 diffs)
-
tags/0.3.4/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/0.3.4/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/0.3.4/vendor/composer/installed.json (modified) (10 diffs)
-
tags/0.3.4/vendor/composer/installed.php (modified) (4 diffs)
-
tags/0.3.4/vendor/guzzlehttp/psr7/CHANGELOG.md (modified) (1 diff)
-
tags/0.3.4/vendor/guzzlehttp/psr7/README.md (modified) (2 diffs)
-
tags/0.3.4/vendor/guzzlehttp/psr7/src/LazyOpenStream.php (modified) (3 diffs)
-
tags/0.3.4/vendor/phpseclib/phpseclib/BACKERS.md (modified) (1 diff)
-
tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php (modified) (3 diffs)
-
tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php (modified) (1 diff)
-
tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php (modified) (1 diff)
-
tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php (modified) (1 diff)
-
tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php (modified) (3 diffs)
-
tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php (modified) (1 diff)
-
tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php (modified) (2 diffs)
-
tags/0.3.4/vendor/web3p/web3.php/src/Formatters/IntegerFormatter.php (modified) (1 diff)
-
tags/0.3.4/wp-rainbow.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/ClassLoader.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.json (modified) (10 diffs)
-
trunk/vendor/composer/installed.php (modified) (4 diffs)
-
trunk/vendor/guzzlehttp/psr7/CHANGELOG.md (modified) (1 diff)
-
trunk/vendor/guzzlehttp/psr7/README.md (modified) (2 diffs)
-
trunk/vendor/guzzlehttp/psr7/src/LazyOpenStream.php (modified) (3 diffs)
-
trunk/vendor/phpseclib/phpseclib/BACKERS.md (modified) (1 diff)
-
trunk/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php (modified) (3 diffs)
-
trunk/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php (modified) (1 diff)
-
trunk/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php (modified) (1 diff)
-
trunk/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php (modified) (1 diff)
-
trunk/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php (modified) (3 diffs)
-
trunk/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php (modified) (1 diff)
-
trunk/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php (modified) (2 diffs)
-
trunk/vendor/web3p/web3.php/src/Formatters/IntegerFormatter.php (modified) (1 diff)
-
trunk/wp-rainbow.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/readme.txt
r2856385 r2882747 2 2 Contributors: davisshaver 3 3 Tags: WordPress, web3, SIWE, Ethereum, RainbowKit, Sign-In With Ethereum 4 Tested up to: 6. 14 Tested up to: 6.2 5 5 Requires at least: 5.9 6 6 Requires PHP: 7.0 7 Stable tag: 0.3. 37 Stable tag: 0.3.4 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 69 = 0.3.4 = 70 * Use patched version of web3 library to fix BigNumber issue 68 71 69 72 = 0.3.3 = -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/autoload.php
r2856385 r2882747 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 9c5994e05eae724619b5b2f6ec91bd7d::getLoader();25 return ComposerAutoloaderInit0a1ff236068128beb889d84970ce8b73::getLoader(); -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/composer/ClassLoader.php
r2852940 r2882747 430 430 { 431 431 if ($file = $this->findFile($class)) { 432 (self::$includeFile)($file); 432 $includeFile = self::$includeFile; 433 $includeFile($file); 433 434 434 435 return true; … … 561 562 } 562 563 563 private static function initializeIncludeClosure(): void 564 /** 565 * @return void 566 */ 567 private static function initializeIncludeClosure() 564 568 { 565 569 if (self::$includeFile !== null) { … … 575 579 * @return void 576 580 */ 577 self::$includeFile = static function($file) {581 self::$includeFile = \Closure::bind(static function($file) { 578 582 include $file; 579 } ;583 }, null, null); 580 584 } 581 585 } -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/composer/autoload_real.php
r2856385 r2882747 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 9c5994e05eae724619b5b2f6ec91bd7d5 class ComposerAutoloaderInit0a1ff236068128beb889d84970ce8b73 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 9c5994e05eae724619b5b2f6ec91bd7d', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit0a1ff236068128beb889d84970ce8b73', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 9c5994e05eae724619b5b2f6ec91bd7d', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit0a1ff236068128beb889d84970ce8b73', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit0a1ff236068128beb889d84970ce8b73::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $filesToLoad = \Composer\Autoload\ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::$files;37 $requireFile = static function ($fileIdentifier, $file) {36 $filesToLoad = \Composer\Autoload\ComposerStaticInit0a1ff236068128beb889d84970ce8b73::$files; 37 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 38 38 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { 39 39 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; … … 41 41 require $file; 42 42 } 43 } ;43 }, null, null); 44 44 foreach ($filesToLoad as $fileIdentifier => $file) { 45 ($requireFile)($fileIdentifier, $file);45 $requireFile($fileIdentifier, $file); 46 46 } 47 47 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/composer/autoload_static.php
r2856385 r2882747 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d7 class ComposerStaticInit0a1ff236068128beb889d84970ce8b73 8 8 { 9 9 public static $files = array ( … … 381 381 { 382 382 return \Closure::bind(function () use ($loader) { 383 $loader->prefixLengthsPsr4 = ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::$prefixLengthsPsr4;384 $loader->prefixDirsPsr4 = ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::$prefixDirsPsr4;385 $loader->classMap = ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::$classMap;383 $loader->prefixLengthsPsr4 = ComposerStaticInit0a1ff236068128beb889d84970ce8b73::$prefixLengthsPsr4; 384 $loader->prefixDirsPsr4 = ComposerStaticInit0a1ff236068128beb889d84970ce8b73::$prefixDirsPsr4; 385 $loader->classMap = ComposerStaticInit0a1ff236068128beb889d84970ce8b73::$classMap; 386 386 387 387 }, null, ClassLoader::class); -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/composer/installed.json
r2839828 r2882747 221 221 { 222 222 "name": "guzzlehttp/psr7", 223 "version": "2.4. 3",224 "version_normalized": "2.4. 3.0",223 "version": "2.4.4", 224 "version_normalized": "2.4.4.0", 225 225 "source": { 226 226 "type": "git", 227 227 "url": "https://github.com/guzzle/psr7.git", 228 "reference": " 67c26b443f348a51926030c83481b85718457d3d"229 }, 230 "dist": { 231 "type": "zip", 232 "url": "https://api.github.com/repos/guzzle/psr7/zipball/ 67c26b443f348a51926030c83481b85718457d3d",233 "reference": " 67c26b443f348a51926030c83481b85718457d3d",228 "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf" 229 }, 230 "dist": { 231 "type": "zip", 232 "url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf", 233 "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf", 234 234 "shasum": "" 235 235 }, … … 252 252 "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" 253 253 }, 254 "time": "202 2-10-26T14:07:24+00:00",254 "time": "2023-03-09T13:19:02+00:00", 255 255 "type": "library", 256 256 "extra": { … … 323 323 "support": { 324 324 "issues": "https://github.com/guzzle/psr7/issues", 325 "source": "https://github.com/guzzle/psr7/tree/2.4. 3"325 "source": "https://github.com/guzzle/psr7/tree/2.4.4" 326 326 }, 327 327 "funding": [ … … 395 395 { 396 396 "name": "phpseclib/phpseclib", 397 "version": "2.0.4 1",398 "version_normalized": "2.0.4 1.0",397 "version": "2.0.42", 398 "version_normalized": "2.0.42.0", 399 399 "source": { 400 400 "type": "git", 401 401 "url": "https://github.com/phpseclib/phpseclib.git", 402 "reference": " 7e763c6f97ec1fcb37c46aa8ecfc20a2c71d9c1b"403 }, 404 "dist": { 405 "type": "zip", 406 "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/ 7e763c6f97ec1fcb37c46aa8ecfc20a2c71d9c1b",407 "reference": " 7e763c6f97ec1fcb37c46aa8ecfc20a2c71d9c1b",402 "reference": "665d289f59e646a259ebf13f29be7f6f54cab24b" 403 }, 404 "dist": { 405 "type": "zip", 406 "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/665d289f59e646a259ebf13f29be7f6f54cab24b", 407 "reference": "665d289f59e646a259ebf13f29be7f6f54cab24b", 408 408 "shasum": "" 409 409 }, … … 423 423 "ext-xml": "Install the XML extension to load XML formatted public keys." 424 424 }, 425 "time": "202 2-12-23T16:44:18+00:00",425 "time": "2023-03-06T12:45:53+00:00", 426 426 "type": "library", 427 427 "installation-source": "dist", … … 488 488 "support": { 489 489 "issues": "https://github.com/phpseclib/phpseclib/issues", 490 "source": "https://github.com/phpseclib/phpseclib/tree/2.0.4 1"490 "source": "https://github.com/phpseclib/phpseclib/tree/2.0.42" 491 491 }, 492 492 "funding": [ … … 1036 1036 { 1037 1037 "name": "web3p/web3.php", 1038 "version": " 0.1.6",1039 "version_normalized": " 0.1.6.0",1040 "source": { 1041 "type": "git", 1042 "url": "https://github.com/ web3p/web3.php.git",1043 "reference": " 2eafffbbe50b79b819088c6a72baf3780d672e11"1044 }, 1045 "dist": { 1046 "type": "zip", 1047 "url": "https://api.github.com/repos/ web3p/web3.php/zipball/2eafffbbe50b79b819088c6a72baf3780d672e11",1048 "reference": " 2eafffbbe50b79b819088c6a72baf3780d672e11",1038 "version": "dev-master", 1039 "version_normalized": "dev-master", 1040 "source": { 1041 "type": "git", 1042 "url": "https://github.com/davisshaver/web3.php.git", 1043 "reference": "6ba5dff088920d3e4eac6ee93764362870384bbd" 1044 }, 1045 "dist": { 1046 "type": "zip", 1047 "url": "https://api.github.com/repos/davisshaver/web3.php/zipball/6ba5dff088920d3e4eac6ee93764362870384bbd", 1048 "reference": "6ba5dff088920d3e4eac6ee93764362870384bbd", 1049 1049 "shasum": "" 1050 1050 }, … … 1059 1059 "phpunit/phpunit": "~8.0|~9.0" 1060 1060 }, 1061 "time": "2022-03-07T03:26:51+00:00", 1061 "time": "2023-02-27T15:46:35+00:00", 1062 "default-branch": true, 1062 1063 "type": "library", 1063 1064 "installation-source": "dist", … … 1067 1068 } 1068 1069 }, 1069 "notification-url": "https://packagist.org/downloads/", 1070 "autoload-dev": { 1071 "psr-4": { 1072 "Test\\": "test/" 1073 } 1074 }, 1070 1075 "license": [ 1071 1076 "MIT" … … 1079 1084 "description": "Ethereum web3 interface.", 1080 1085 "support": { 1081 "issues": "https://github.com/web3p/web3.php/issues", 1082 "source": "https://github.com/web3p/web3.php/tree/0.1.6" 1086 "source": "https://github.com/davisshaver/web3.php/tree/master" 1083 1087 }, 1084 1088 "install-path": "../web3p/web3.php" -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/composer/installed.php
r2856385 r2882747 2 2 'root' => array( 3 3 'name' => 'wp-rainbow/wp-rainbow', 4 'pretty_version' => 'v0.3. 3',5 'version' => '0.3. 3.0',6 'reference' => ' 50bcb3e957fd4eaeec402834405b2f2de065d4d3',4 'pretty_version' => 'v0.3.4', 5 'version' => '0.3.4.0', 6 'reference' => '05aa2fe26a27f273131ff42862c63f1b16b4de89', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 30 30 ), 31 31 'guzzlehttp/psr7' => array( 32 'pretty_version' => '2.4. 3',33 'version' => '2.4. 3.0',34 'reference' => ' 67c26b443f348a51926030c83481b85718457d3d',32 'pretty_version' => '2.4.4', 33 'version' => '2.4.4.0', 34 'reference' => '3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf', 35 35 'type' => 'library', 36 36 'install_path' => __DIR__ . '/../guzzlehttp/psr7', … … 48 48 ), 49 49 'phpseclib/phpseclib' => array( 50 'pretty_version' => '2.0.4 1',51 'version' => '2.0.4 1.0',52 'reference' => ' 7e763c6f97ec1fcb37c46aa8ecfc20a2c71d9c1b',50 'pretty_version' => '2.0.42', 51 'version' => '2.0.42.0', 52 'reference' => '665d289f59e646a259ebf13f29be7f6f54cab24b', 53 53 'type' => 'library', 54 54 'install_path' => __DIR__ . '/../phpseclib/phpseclib', … … 156 156 ), 157 157 'web3p/web3.php' => array( 158 'pretty_version' => ' 0.1.6',159 'version' => ' 0.1.6.0',160 'reference' => ' 2eafffbbe50b79b819088c6a72baf3780d672e11',158 'pretty_version' => 'dev-master', 159 'version' => 'dev-master', 160 'reference' => '6ba5dff088920d3e4eac6ee93764362870384bbd', 161 161 'type' => 'library', 162 162 'install_path' => __DIR__ . '/../web3p/web3.php', 163 'aliases' => array(), 163 'aliases' => array( 164 0 => '9999999-dev', 165 ), 164 166 'dev_requirement' => false, 165 167 ), 166 168 'wp-rainbow/wp-rainbow' => array( 167 'pretty_version' => 'v0.3. 3',168 'version' => '0.3. 3.0',169 'reference' => ' 50bcb3e957fd4eaeec402834405b2f2de065d4d3',169 'pretty_version' => 'v0.3.4', 170 'version' => '0.3.4.0', 171 'reference' => '05aa2fe26a27f273131ff42862c63f1b16b4de89', 170 172 'type' => 'project', 171 173 'install_path' => __DIR__ . '/../../', -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/guzzlehttp/psr7/CHANGELOG.md
r2839828 r2882747 7 7 8 8 ## Unreleased 9 10 ## 2.4.4 - 2023-03-09 11 12 ### Changed 13 14 - Removed the need for `AllowDynamicProperties` in `LazyOpenStream` 9 15 10 16 ## 2.4.3 - 2022-10-26 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/guzzlehttp/psr7/README.md
r2839828 r2882747 8 8  9 9 10 11 # Installation 12 13 ```shell 14 composer require guzzlehttp/psr7 15 ``` 10 16 11 17 # Stream implementation … … 245 251 246 252 private $callback; 253 254 private $stream; 247 255 248 256 public function __construct(StreamInterface $stream, callable $cb) -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/guzzlehttp/psr7/src/LazyOpenStream.php
r2807981 r2882747 11 11 * take place on the stream. 12 12 */ 13 #[\AllowDynamicProperties]14 13 final class LazyOpenStream implements StreamInterface 15 14 { … … 23 22 24 23 /** 24 * @var StreamInterface 25 */ 26 private $stream; 27 28 /** 25 29 * @param string $filename File to lazily open 26 30 * @param string $mode fopen mode to use when opening the stream … … 30 34 $this->filename = $filename; 31 35 $this->mode = $mode; 36 37 // unsetting the property forces the first access to go through 38 // __get(). 39 unset($this->stream); 32 40 } 33 41 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/phpseclib/phpseclib/BACKERS.md
r2807981 r2882747 13 13 - [Rachel Fish](https://github.com/itsrachelfish) 14 14 - Tharyrok 15 - [cjhaas](https://github.com/cjhaas) -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php
r2839828 r2882747 446 446 // "Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2, RC4, RC5, and DES to the legacy provider" 447 447 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not 448 if ( version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) {448 if (defined('OPENSSL_VERSION_TEXT') && version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) { 449 449 return false; 450 450 } … … 763 763 $r = $in[2]; 764 764 765 list($r, $l) = CRYPT_BASE_USE_REG_INTVAL?765 list($r, $l) = PHP_INT_SIZE === 8 ? 766 766 $this->_encryptBlockHelperFast($l, $r, $sb_0, $sb_1, $sb_2, $sb_3, $p) : 767 767 $this->_encryptBlockHelperSlow($l, $r, $sb_0, $sb_1, $sb_2, $sb_3, $p); … … 821 821 function _encryptBlockHelperSlow($x0, $x1, $sbox0, $sbox1, $sbox2, $sbox3, $p) 822 822 { 823 // -16777216 == intval(0xFF000000) on 32-bit PHP installs 823 824 $x0^= $p[0]; 824 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[1];825 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[2];826 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[3];827 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[4];828 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[5];829 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[6];830 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[7];831 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[8];832 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[9];833 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[10];834 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[11];835 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[12];836 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[13];837 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[14];838 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[15];839 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[16];840 841 return array($x1 & 0xFFFFFFFF ^ $p[17], $x0 & 0xFFFFFFFF);825 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[1]; 826 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[2]; 827 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[3]; 828 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[4]; 829 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[5]; 830 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[6]; 831 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[7]; 832 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[8]; 833 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[9]; 834 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[10]; 835 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[11]; 836 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[12]; 837 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[13]; 838 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[14]; 839 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[15]; 840 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[16]; 841 842 return array($x1 ^ $p[17], $x0); 842 843 } 843 844 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php
r2839828 r2882747 596 596 // "Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2, RC4, RC5, and DES to the legacy provider" 597 597 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not 598 if ( version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) {598 if (defined('OPENSSL_VERSION_TEXT') && version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) { 599 599 return false; 600 600 } -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php
r2839828 r2882747 277 277 // "Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2, RC4, RC5, and DES to the legacy provider" 278 278 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not 279 if ( version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) {279 if (defined('OPENSSL_VERSION_TEXT') && version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) { 280 280 return false; 281 281 } -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php
r2839828 r2882747 149 149 // "Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2, RC4, RC5, and DES to the legacy provider" 150 150 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not 151 if ( version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) {151 if (defined('OPENSSL_VERSION_TEXT') && version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) { 152 152 return false; 153 153 } -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php
r2839828 r2882747 409 409 } 410 410 411 $x = preg_replace('#^(?:0x)?([A-Fa-f0-9]*).*# ', '$1', $x);411 $x = preg_replace('#^(?:0x)?([A-Fa-f0-9]*).*#s', '$1', $x); 412 412 413 413 $is_negative = false; … … 445 445 // (?<=^|-)0*: find any 0's that are preceded by the start of the string or by a - (ie. octals) 446 446 // [^-0-9].*: find any non-numeric characters and then any characters that follow that 447 $x = preg_replace('#(?<!^)(?:-).*|(?<=^|-)0*|[^-0-9].*# ', '', $x);447 $x = preg_replace('#(?<!^)(?:-).*|(?<=^|-)0*|[^-0-9].*#s', '', $x); 448 448 if (!strlen($x) || $x == '-') { 449 449 $x = '0'; … … 487 487 } 488 488 489 $x = preg_replace('#^([01]*).*# ', '$1', $x);489 $x = preg_replace('#^([01]*).*#s', '$1', $x); 490 490 $x = str_pad($x, strlen($x) + (3 * strlen($x)) % 4, 0, STR_PAD_LEFT); 491 491 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php
r2839828 r2882747 924 924 925 925 $parts = explode('/', $path); 926 $afterPWD = $beforePWD = [];926 $afterPWD = $beforePWD = array(); 927 927 foreach ($parts as $part) { 928 928 switch ($part) { -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php
r2839828 r2882747 2746 2746 ); 2747 2747 2748 $algos = ['rsa-sha2-256', 'rsa-sha2-512', 'ssh-rsa'];2748 $algos = array('rsa-sha2-256', 'rsa-sha2-512', 'ssh-rsa'); 2749 2749 if (isset($this->preferred['hostkey'])) { 2750 2750 $algos = array_intersect($this->preferred['hostkey'], $algos); … … 2859 2859 user_error('Unexpected response to publickey authentication pt 2'); 2860 2860 return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); 2861 } 2862 2863 /** 2864 * Return the currently configured timeout 2865 * 2866 * @return int 2867 */ 2868 function getTimeout() 2869 { 2870 return $this->timeout; 2861 2871 } 2862 2872 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/vendor/web3p/web3.php/src/Formatters/IntegerFormatter.php
r2721600 r2882747 34 34 } 35 35 $bn = Utils::toBn($value); 36 $bnHex = $bn->toHex( true);36 $bnHex = $bn->toHex(Utils::isNegative($value)); 37 37 $padded = mb_substr($bnHex, 0, 1); 38 38 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/tags/0.3.4/wp-rainbow.php
r2856385 r2882747 11 11 * Plugin URI: https://wp-rainbow.davisshaver.com/ 12 12 * Description: RainbowKit Login allows WordPress users to log in with Ethereum using the Sign-In With Ethereum standard, powered by RainbowKit. 13 * Version: 0.3. 313 * Version: 0.3.4 14 14 * Author: Davis Shaver 15 15 * Author URI: https://davisshaver.com/ … … 28 28 * WP Rainbow version number 29 29 */ 30 define( 'WP_RAINBOW_ASSETS_VERSION', '0.3. 3' );30 define( 'WP_RAINBOW_ASSETS_VERSION', '0.3.4' ); 31 31 32 32 // Include the autoloader. -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/readme.txt
r2856385 r2882747 2 2 Contributors: davisshaver 3 3 Tags: WordPress, web3, SIWE, Ethereum, RainbowKit, Sign-In With Ethereum 4 Tested up to: 6. 14 Tested up to: 6.2 5 5 Requires at least: 5.9 6 6 Requires PHP: 7.0 7 Stable tag: 0.3. 37 Stable tag: 0.3.4 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 69 = 0.3.4 = 70 * Use patched version of web3 library to fix BigNumber issue 68 71 69 72 = 0.3.3 = -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/autoload.php
r2856385 r2882747 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 9c5994e05eae724619b5b2f6ec91bd7d::getLoader();25 return ComposerAutoloaderInit0a1ff236068128beb889d84970ce8b73::getLoader(); -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/composer/ClassLoader.php
r2852940 r2882747 430 430 { 431 431 if ($file = $this->findFile($class)) { 432 (self::$includeFile)($file); 432 $includeFile = self::$includeFile; 433 $includeFile($file); 433 434 434 435 return true; … … 561 562 } 562 563 563 private static function initializeIncludeClosure(): void 564 /** 565 * @return void 566 */ 567 private static function initializeIncludeClosure() 564 568 { 565 569 if (self::$includeFile !== null) { … … 575 579 * @return void 576 580 */ 577 self::$includeFile = static function($file) {581 self::$includeFile = \Closure::bind(static function($file) { 578 582 include $file; 579 } ;583 }, null, null); 580 584 } 581 585 } -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/composer/autoload_real.php
r2856385 r2882747 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 9c5994e05eae724619b5b2f6ec91bd7d5 class ComposerAutoloaderInit0a1ff236068128beb889d84970ce8b73 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 9c5994e05eae724619b5b2f6ec91bd7d', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit0a1ff236068128beb889d84970ce8b73', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 9c5994e05eae724619b5b2f6ec91bd7d', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit0a1ff236068128beb889d84970ce8b73', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit0a1ff236068128beb889d84970ce8b73::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $filesToLoad = \Composer\Autoload\ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::$files;37 $requireFile = static function ($fileIdentifier, $file) {36 $filesToLoad = \Composer\Autoload\ComposerStaticInit0a1ff236068128beb889d84970ce8b73::$files; 37 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 38 38 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { 39 39 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; … … 41 41 require $file; 42 42 } 43 } ;43 }, null, null); 44 44 foreach ($filesToLoad as $fileIdentifier => $file) { 45 ($requireFile)($fileIdentifier, $file);45 $requireFile($fileIdentifier, $file); 46 46 } 47 47 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/composer/autoload_static.php
r2856385 r2882747 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d7 class ComposerStaticInit0a1ff236068128beb889d84970ce8b73 8 8 { 9 9 public static $files = array ( … … 381 381 { 382 382 return \Closure::bind(function () use ($loader) { 383 $loader->prefixLengthsPsr4 = ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::$prefixLengthsPsr4;384 $loader->prefixDirsPsr4 = ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::$prefixDirsPsr4;385 $loader->classMap = ComposerStaticInit 9c5994e05eae724619b5b2f6ec91bd7d::$classMap;383 $loader->prefixLengthsPsr4 = ComposerStaticInit0a1ff236068128beb889d84970ce8b73::$prefixLengthsPsr4; 384 $loader->prefixDirsPsr4 = ComposerStaticInit0a1ff236068128beb889d84970ce8b73::$prefixDirsPsr4; 385 $loader->classMap = ComposerStaticInit0a1ff236068128beb889d84970ce8b73::$classMap; 386 386 387 387 }, null, ClassLoader::class); -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/composer/installed.json
r2839828 r2882747 221 221 { 222 222 "name": "guzzlehttp/psr7", 223 "version": "2.4. 3",224 "version_normalized": "2.4. 3.0",223 "version": "2.4.4", 224 "version_normalized": "2.4.4.0", 225 225 "source": { 226 226 "type": "git", 227 227 "url": "https://github.com/guzzle/psr7.git", 228 "reference": " 67c26b443f348a51926030c83481b85718457d3d"229 }, 230 "dist": { 231 "type": "zip", 232 "url": "https://api.github.com/repos/guzzle/psr7/zipball/ 67c26b443f348a51926030c83481b85718457d3d",233 "reference": " 67c26b443f348a51926030c83481b85718457d3d",228 "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf" 229 }, 230 "dist": { 231 "type": "zip", 232 "url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf", 233 "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf", 234 234 "shasum": "" 235 235 }, … … 252 252 "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" 253 253 }, 254 "time": "202 2-10-26T14:07:24+00:00",254 "time": "2023-03-09T13:19:02+00:00", 255 255 "type": "library", 256 256 "extra": { … … 323 323 "support": { 324 324 "issues": "https://github.com/guzzle/psr7/issues", 325 "source": "https://github.com/guzzle/psr7/tree/2.4. 3"325 "source": "https://github.com/guzzle/psr7/tree/2.4.4" 326 326 }, 327 327 "funding": [ … … 395 395 { 396 396 "name": "phpseclib/phpseclib", 397 "version": "2.0.4 1",398 "version_normalized": "2.0.4 1.0",397 "version": "2.0.42", 398 "version_normalized": "2.0.42.0", 399 399 "source": { 400 400 "type": "git", 401 401 "url": "https://github.com/phpseclib/phpseclib.git", 402 "reference": " 7e763c6f97ec1fcb37c46aa8ecfc20a2c71d9c1b"403 }, 404 "dist": { 405 "type": "zip", 406 "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/ 7e763c6f97ec1fcb37c46aa8ecfc20a2c71d9c1b",407 "reference": " 7e763c6f97ec1fcb37c46aa8ecfc20a2c71d9c1b",402 "reference": "665d289f59e646a259ebf13f29be7f6f54cab24b" 403 }, 404 "dist": { 405 "type": "zip", 406 "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/665d289f59e646a259ebf13f29be7f6f54cab24b", 407 "reference": "665d289f59e646a259ebf13f29be7f6f54cab24b", 408 408 "shasum": "" 409 409 }, … … 423 423 "ext-xml": "Install the XML extension to load XML formatted public keys." 424 424 }, 425 "time": "202 2-12-23T16:44:18+00:00",425 "time": "2023-03-06T12:45:53+00:00", 426 426 "type": "library", 427 427 "installation-source": "dist", … … 488 488 "support": { 489 489 "issues": "https://github.com/phpseclib/phpseclib/issues", 490 "source": "https://github.com/phpseclib/phpseclib/tree/2.0.4 1"490 "source": "https://github.com/phpseclib/phpseclib/tree/2.0.42" 491 491 }, 492 492 "funding": [ … … 1036 1036 { 1037 1037 "name": "web3p/web3.php", 1038 "version": " 0.1.6",1039 "version_normalized": " 0.1.6.0",1040 "source": { 1041 "type": "git", 1042 "url": "https://github.com/ web3p/web3.php.git",1043 "reference": " 2eafffbbe50b79b819088c6a72baf3780d672e11"1044 }, 1045 "dist": { 1046 "type": "zip", 1047 "url": "https://api.github.com/repos/ web3p/web3.php/zipball/2eafffbbe50b79b819088c6a72baf3780d672e11",1048 "reference": " 2eafffbbe50b79b819088c6a72baf3780d672e11",1038 "version": "dev-master", 1039 "version_normalized": "dev-master", 1040 "source": { 1041 "type": "git", 1042 "url": "https://github.com/davisshaver/web3.php.git", 1043 "reference": "6ba5dff088920d3e4eac6ee93764362870384bbd" 1044 }, 1045 "dist": { 1046 "type": "zip", 1047 "url": "https://api.github.com/repos/davisshaver/web3.php/zipball/6ba5dff088920d3e4eac6ee93764362870384bbd", 1048 "reference": "6ba5dff088920d3e4eac6ee93764362870384bbd", 1049 1049 "shasum": "" 1050 1050 }, … … 1059 1059 "phpunit/phpunit": "~8.0|~9.0" 1060 1060 }, 1061 "time": "2022-03-07T03:26:51+00:00", 1061 "time": "2023-02-27T15:46:35+00:00", 1062 "default-branch": true, 1062 1063 "type": "library", 1063 1064 "installation-source": "dist", … … 1067 1068 } 1068 1069 }, 1069 "notification-url": "https://packagist.org/downloads/", 1070 "autoload-dev": { 1071 "psr-4": { 1072 "Test\\": "test/" 1073 } 1074 }, 1070 1075 "license": [ 1071 1076 "MIT" … … 1079 1084 "description": "Ethereum web3 interface.", 1080 1085 "support": { 1081 "issues": "https://github.com/web3p/web3.php/issues", 1082 "source": "https://github.com/web3p/web3.php/tree/0.1.6" 1086 "source": "https://github.com/davisshaver/web3.php/tree/master" 1083 1087 }, 1084 1088 "install-path": "../web3p/web3.php" -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/composer/installed.php
r2856385 r2882747 2 2 'root' => array( 3 3 'name' => 'wp-rainbow/wp-rainbow', 4 'pretty_version' => 'v0.3. 3',5 'version' => '0.3. 3.0',6 'reference' => ' 50bcb3e957fd4eaeec402834405b2f2de065d4d3',4 'pretty_version' => 'v0.3.4', 5 'version' => '0.3.4.0', 6 'reference' => '05aa2fe26a27f273131ff42862c63f1b16b4de89', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 30 30 ), 31 31 'guzzlehttp/psr7' => array( 32 'pretty_version' => '2.4. 3',33 'version' => '2.4. 3.0',34 'reference' => ' 67c26b443f348a51926030c83481b85718457d3d',32 'pretty_version' => '2.4.4', 33 'version' => '2.4.4.0', 34 'reference' => '3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf', 35 35 'type' => 'library', 36 36 'install_path' => __DIR__ . '/../guzzlehttp/psr7', … … 48 48 ), 49 49 'phpseclib/phpseclib' => array( 50 'pretty_version' => '2.0.4 1',51 'version' => '2.0.4 1.0',52 'reference' => ' 7e763c6f97ec1fcb37c46aa8ecfc20a2c71d9c1b',50 'pretty_version' => '2.0.42', 51 'version' => '2.0.42.0', 52 'reference' => '665d289f59e646a259ebf13f29be7f6f54cab24b', 53 53 'type' => 'library', 54 54 'install_path' => __DIR__ . '/../phpseclib/phpseclib', … … 156 156 ), 157 157 'web3p/web3.php' => array( 158 'pretty_version' => ' 0.1.6',159 'version' => ' 0.1.6.0',160 'reference' => ' 2eafffbbe50b79b819088c6a72baf3780d672e11',158 'pretty_version' => 'dev-master', 159 'version' => 'dev-master', 160 'reference' => '6ba5dff088920d3e4eac6ee93764362870384bbd', 161 161 'type' => 'library', 162 162 'install_path' => __DIR__ . '/../web3p/web3.php', 163 'aliases' => array(), 163 'aliases' => array( 164 0 => '9999999-dev', 165 ), 164 166 'dev_requirement' => false, 165 167 ), 166 168 'wp-rainbow/wp-rainbow' => array( 167 'pretty_version' => 'v0.3. 3',168 'version' => '0.3. 3.0',169 'reference' => ' 50bcb3e957fd4eaeec402834405b2f2de065d4d3',169 'pretty_version' => 'v0.3.4', 170 'version' => '0.3.4.0', 171 'reference' => '05aa2fe26a27f273131ff42862c63f1b16b4de89', 170 172 'type' => 'project', 171 173 'install_path' => __DIR__ . '/../../', -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/guzzlehttp/psr7/CHANGELOG.md
r2839828 r2882747 7 7 8 8 ## Unreleased 9 10 ## 2.4.4 - 2023-03-09 11 12 ### Changed 13 14 - Removed the need for `AllowDynamicProperties` in `LazyOpenStream` 9 15 10 16 ## 2.4.3 - 2022-10-26 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/guzzlehttp/psr7/README.md
r2839828 r2882747 8 8  9 9 10 11 # Installation 12 13 ```shell 14 composer require guzzlehttp/psr7 15 ``` 10 16 11 17 # Stream implementation … … 245 251 246 252 private $callback; 253 254 private $stream; 247 255 248 256 public function __construct(StreamInterface $stream, callable $cb) -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/guzzlehttp/psr7/src/LazyOpenStream.php
r2807981 r2882747 11 11 * take place on the stream. 12 12 */ 13 #[\AllowDynamicProperties]14 13 final class LazyOpenStream implements StreamInterface 15 14 { … … 23 22 24 23 /** 24 * @var StreamInterface 25 */ 26 private $stream; 27 28 /** 25 29 * @param string $filename File to lazily open 26 30 * @param string $mode fopen mode to use when opening the stream … … 30 34 $this->filename = $filename; 31 35 $this->mode = $mode; 36 37 // unsetting the property forces the first access to go through 38 // __get(). 39 unset($this->stream); 32 40 } 33 41 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/phpseclib/phpseclib/BACKERS.md
r2807981 r2882747 13 13 - [Rachel Fish](https://github.com/itsrachelfish) 14 14 - Tharyrok 15 - [cjhaas](https://github.com/cjhaas) -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php
r2839828 r2882747 446 446 // "Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2, RC4, RC5, and DES to the legacy provider" 447 447 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not 448 if ( version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) {448 if (defined('OPENSSL_VERSION_TEXT') && version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) { 449 449 return false; 450 450 } … … 763 763 $r = $in[2]; 764 764 765 list($r, $l) = CRYPT_BASE_USE_REG_INTVAL?765 list($r, $l) = PHP_INT_SIZE === 8 ? 766 766 $this->_encryptBlockHelperFast($l, $r, $sb_0, $sb_1, $sb_2, $sb_3, $p) : 767 767 $this->_encryptBlockHelperSlow($l, $r, $sb_0, $sb_1, $sb_2, $sb_3, $p); … … 821 821 function _encryptBlockHelperSlow($x0, $x1, $sbox0, $sbox1, $sbox2, $sbox3, $p) 822 822 { 823 // -16777216 == intval(0xFF000000) on 32-bit PHP installs 823 824 $x0^= $p[0]; 824 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[1];825 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[2];826 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[3];827 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[4];828 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[5];829 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[6];830 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[7];831 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[8];832 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[9];833 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[10];834 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[11];835 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[12];836 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[13];837 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[14];838 $x1^= $this->safe_intval(($this->safe_intval($sbox0[( $x0 & 0xFF000000) >> 24] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[15];839 $x0^= $this->safe_intval(($this->safe_intval($sbox0[( $x1 & 0xFF000000) >> 24] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[16];840 841 return array($x1 & 0xFFFFFFFF ^ $p[17], $x0 & 0xFFFFFFFF);825 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[1]; 826 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[2]; 827 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[3]; 828 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[4]; 829 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[5]; 830 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[6]; 831 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[7]; 832 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[8]; 833 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[9]; 834 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[10]; 835 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[11]; 836 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[12]; 837 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[13]; 838 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[14]; 839 $x1^= $this->safe_intval(($this->safe_intval($sbox0[(($x0 & -16777216) >> 24) & 0xFF] + $sbox1[($x0 & 0xFF0000) >> 16]) ^ $sbox2[($x0 & 0xFF00) >> 8]) + $sbox3[$x0 & 0xFF]) ^ $p[15]; 840 $x0^= $this->safe_intval(($this->safe_intval($sbox0[(($x1 & -16777216) >> 24) & 0xFF] + $sbox1[($x1 & 0xFF0000) >> 16]) ^ $sbox2[($x1 & 0xFF00) >> 8]) + $sbox3[$x1 & 0xFF]) ^ $p[16]; 841 842 return array($x1 ^ $p[17], $x0); 842 843 } 843 844 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php
r2839828 r2882747 596 596 // "Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2, RC4, RC5, and DES to the legacy provider" 597 597 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not 598 if ( version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) {598 if (defined('OPENSSL_VERSION_TEXT') && version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) { 599 599 return false; 600 600 } -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php
r2839828 r2882747 277 277 // "Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2, RC4, RC5, and DES to the legacy provider" 278 278 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not 279 if ( version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) {279 if (defined('OPENSSL_VERSION_TEXT') && version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) { 280 280 return false; 281 281 } -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php
r2839828 r2882747 149 149 // "Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2, RC4, RC5, and DES to the legacy provider" 150 150 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not 151 if ( version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) {151 if (defined('OPENSSL_VERSION_TEXT') && version_compare(preg_replace('#OpenSSL (\d+\.\d+\.\d+) .*#', '$1', OPENSSL_VERSION_TEXT), '3.0.1', '>=')) { 152 152 return false; 153 153 } -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php
r2839828 r2882747 409 409 } 410 410 411 $x = preg_replace('#^(?:0x)?([A-Fa-f0-9]*).*# ', '$1', $x);411 $x = preg_replace('#^(?:0x)?([A-Fa-f0-9]*).*#s', '$1', $x); 412 412 413 413 $is_negative = false; … … 445 445 // (?<=^|-)0*: find any 0's that are preceded by the start of the string or by a - (ie. octals) 446 446 // [^-0-9].*: find any non-numeric characters and then any characters that follow that 447 $x = preg_replace('#(?<!^)(?:-).*|(?<=^|-)0*|[^-0-9].*# ', '', $x);447 $x = preg_replace('#(?<!^)(?:-).*|(?<=^|-)0*|[^-0-9].*#s', '', $x); 448 448 if (!strlen($x) || $x == '-') { 449 449 $x = '0'; … … 487 487 } 488 488 489 $x = preg_replace('#^([01]*).*# ', '$1', $x);489 $x = preg_replace('#^([01]*).*#s', '$1', $x); 490 490 $x = str_pad($x, strlen($x) + (3 * strlen($x)) % 4, 0, STR_PAD_LEFT); 491 491 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php
r2839828 r2882747 924 924 925 925 $parts = explode('/', $path); 926 $afterPWD = $beforePWD = [];926 $afterPWD = $beforePWD = array(); 927 927 foreach ($parts as $part) { 928 928 switch ($part) { -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php
r2839828 r2882747 2746 2746 ); 2747 2747 2748 $algos = ['rsa-sha2-256', 'rsa-sha2-512', 'ssh-rsa'];2748 $algos = array('rsa-sha2-256', 'rsa-sha2-512', 'ssh-rsa'); 2749 2749 if (isset($this->preferred['hostkey'])) { 2750 2750 $algos = array_intersect($this->preferred['hostkey'], $algos); … … 2859 2859 user_error('Unexpected response to publickey authentication pt 2'); 2860 2860 return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); 2861 } 2862 2863 /** 2864 * Return the currently configured timeout 2865 * 2866 * @return int 2867 */ 2868 function getTimeout() 2869 { 2870 return $this->timeout; 2861 2871 } 2862 2872 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/vendor/web3p/web3.php/src/Formatters/IntegerFormatter.php
r2721600 r2882747 34 34 } 35 35 $bn = Utils::toBn($value); 36 $bnHex = $bn->toHex( true);36 $bnHex = $bn->toHex(Utils::isNegative($value)); 37 37 $padded = mb_substr($bnHex, 0, 1); 38 38 -
rainbowkit-login-web3-integration-for-sign-in-with-ethereum/trunk/wp-rainbow.php
r2856385 r2882747 11 11 * Plugin URI: https://wp-rainbow.davisshaver.com/ 12 12 * Description: RainbowKit Login allows WordPress users to log in with Ethereum using the Sign-In With Ethereum standard, powered by RainbowKit. 13 * Version: 0.3. 313 * Version: 0.3.4 14 14 * Author: Davis Shaver 15 15 * Author URI: https://davisshaver.com/ … … 28 28 * WP Rainbow version number 29 29 */ 30 define( 'WP_RAINBOW_ASSETS_VERSION', '0.3. 3' );30 define( 'WP_RAINBOW_ASSETS_VERSION', '0.3.4' ); 31 31 32 32 // Include the autoloader.
Note: See TracChangeset
for help on using the changeset viewer.