Changeset 2409089
- Timestamp:
- 10/29/2020 01:39:03 PM (5 years ago)
- Location:
- passwordless-wp/trunk
- Files:
-
- 1 added
- 5 edited
- 1 moved
-
build/asset-manifest.json (modified) (1 diff)
-
build/login.67d5989c.css (moved) (moved from passwordless-wp/trunk/build/login.7f31c0fb.css)
-
includes/scripts-login.php (modified) (1 diff)
-
languages (added)
-
passwordless-wp.php (modified) (2 diffs)
-
readme.md (modified) (2 diffs)
-
vendor/web-auth/cose-lib/src/Key/RsaKey.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
passwordless-wp/trunk/build/asset-manifest.json
r2403019 r2409089 2 2 "login": { 3 3 "vendors.js": "vendors.5f2307b1.chunk.js", 4 "login.css": "login. 7f31c0fb.css",4 "login.css": "login.67d5989c.css", 5 5 "login.js": "login.17909b30.js" 6 6 }, -
passwordless-wp/trunk/includes/scripts-login.php
r2403019 r2409089 17 17 'errorNoCreds' => __('No credentials available or not confirmed. Please try more or re-attach using Username and Password.', 'passwordless-wp'), 18 18 'tokenAdded' => __('Your token was registered, now you can use it to login.', 'passwordless-wp'), 19 'loginDesc' => __("Use Face ID or Touch ID to log in inyour account.", 'passwordless-wp'),19 'loginDesc' => __("Use Face ID or Touch ID to log into your account.", 'passwordless-wp'), 20 20 'requiredSSL' => __("Secure context are required. You must have HTTPS and SSL enabled.", 'passwordless-wp'), 21 21 'anotherUser' => __("Choose user", 'passwordless-wp'), -
passwordless-wp/trunk/passwordless-wp.php
r2403566 r2409089 8 8 * Author URI: https://wpbusters.com/ 9 9 * Text Domain: passwordless-wp 10 * Version: 1.1. 410 * Version: 1.1.6 11 11 * Domain Path: /languages 12 12 * … … 22 22 23 23 define('PLWP_SLUG', 'passwordless-wp'); 24 define('PLWP_VERSION', '1.1. 4');24 define('PLWP_VERSION', '1.1.6'); 25 25 define('PLWP_FOLDER', plugin_dir_path(__FILE__)); 26 26 define('PLWP_URL', plugin_dir_url(__FILE__)); -
passwordless-wp/trunk/readme.md
r2403566 r2409089 44 44 45 45 Passwordless WP requires HTTPS and SSL secure connection or localhost/127.0.0.1 environment. It supports only platform authenticator like Touch ID, Face ID, Windows Hello, Fingerprint and etc. 46 47 = Help with ideas and testing = 48 49 If you want to discuss and suggest any new ideas, 50 Join to Early Access Team group here: https://www.facebook.com/groups/676882319616540/ 46 51 47 52 # Trademark notices … … 98 103 == Changelog == 99 104 105 v1.1.6 106 * RS support without gmp 107 100 108 v1.1.3 101 109 * PHP 7.2 fix in code trailing comma -
passwordless-wp/trunk/vendor/web-auth/cose-lib/src/Key/RsaKey.php
r2403019 r2409089 15 15 16 16 use Assert\Assertion; 17 use Base64Url\Base64Url; 18 use Brick\Math\BigInteger; 17 19 use FG\ASN1\Universal\BitString; 18 20 use FG\ASN1\Universal\Integer; … … 184 186 } 185 187 186 private function fromBase64ToInteger(string $value): string 187 { 188 return gmp_strval(gmp_init(current(unpack('H*', $value)), 16), 10); 189 } 188 private function fromBase64ToInteger($value) 189 { 190 $hex = current(unpack('H*', $value)); 191 return BigInteger::fromBase($hex, 16)->toBase(10); 192 } 193 194 195 // private function fromBase64ToInteger(string $value): string 196 // { 197 // return gmp_strval(gmp_init(current(unpack('H*', $value)), 16), 10); 198 // } 190 199 191 200 private function pem(string $type, string $der): string 192 201 { 193 return sprintf("-----BEGIN %s-----\n", mb_strtoupper($type)) .194 chunk_split(base64_encode($der), 64, "\n") .202 return sprintf("-----BEGIN %s-----\n", mb_strtoupper($type)) . 203 chunk_split(base64_encode($der), 64, "\n") . 195 204 sprintf("-----END %s-----\n", mb_strtoupper($type)); 196 205 }
Note: See TracChangeset
for help on using the changeset viewer.