Changeset 3465047
- Timestamp:
- 02/19/2026 11:46:49 AM (5 weeks ago)
- Location:
- stitch-express
- Files:
-
- 3 edited
- 4 copied
-
tags/1.3.5 (copied) (copied from stitch-express/trunk)
-
tags/1.3.5/includes/stitch-express-client.php (copied) (copied from stitch-express/trunk/includes/stitch-express-client.php) (1 diff)
-
tags/1.3.5/readme.txt (copied) (copied from stitch-express/trunk/readme.txt) (3 diffs)
-
tags/1.3.5/stitch-express.php (copied) (copied from stitch-express/trunk/stitch-express.php) (2 diffs)
-
trunk/includes/stitch-express-client.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/stitch-express.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
stitch-express/tags/1.3.5/includes/stitch-express-client.php
r3463217 r3465047 38 38 39 39 class Stitch_Express_Client { 40 private const PLUGIN_VERSION = '1.3. 4';40 private const PLUGIN_VERSION = '1.3.5'; 41 41 private string $baseUrl = 'https://express.stitch.money'; 42 42 private string $client_id; -
stitch-express/tags/1.3.5/readme.txt
r3463217 r3465047 3 3 Tags: woocommerce, card, payments, south africa, apple pay, google pay, stitch, express, stitch express 4 4 Tested up to: 6.7 5 Stable tag: 1.3. 45 Stable tag: 1.3.5 6 6 License: GPLv3 7 7 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 83 83 84 84 == Changelog == 85 = 1.3.5 = 86 * Further webhook improvements 87 85 88 = 1.3.4 = 86 89 * Webhook improvements … … 164 167 165 168 == Upgrade Notice == 169 = 1.3.5 = 170 * Webhook improvements 171 166 172 = 1.3.4 = 167 173 * Improved webhook performance and reliability -
stitch-express/tags/1.3.5/stitch-express.php
r3463217 r3465047 9 9 * Description: Use Stitch Express to easily and securely accept Card payment on your WooCommerce store. 10 10 * Plugin URI: https://wordpress.org/plugins/stitchexpress/ 11 * Version: 1.3. 411 * Version: 1.3.5 12 12 * Requires at least: 6.5 13 13 * Requires PHP: 8.0 … … 166 166 } 167 167 168 $expected_signature = hash_hmac('sha256', $raw_body, $client_secret); 168 $hashed_secret = base64_encode(hash('sha256', $client_secret, true)); 169 $expected_signature = hash_hmac('sha256', $raw_body, $hashed_secret); 169 170 170 171 if (!hash_equals($expected_signature, $signature)) { -
stitch-express/trunk/includes/stitch-express-client.php
r3463217 r3465047 38 38 39 39 class Stitch_Express_Client { 40 private const PLUGIN_VERSION = '1.3. 4';40 private const PLUGIN_VERSION = '1.3.5'; 41 41 private string $baseUrl = 'https://express.stitch.money'; 42 42 private string $client_id; -
stitch-express/trunk/readme.txt
r3463217 r3465047 3 3 Tags: woocommerce, card, payments, south africa, apple pay, google pay, stitch, express, stitch express 4 4 Tested up to: 6.7 5 Stable tag: 1.3. 45 Stable tag: 1.3.5 6 6 License: GPLv3 7 7 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 83 83 84 84 == Changelog == 85 = 1.3.5 = 86 * Further webhook improvements 87 85 88 = 1.3.4 = 86 89 * Webhook improvements … … 164 167 165 168 == Upgrade Notice == 169 = 1.3.5 = 170 * Webhook improvements 171 166 172 = 1.3.4 = 167 173 * Improved webhook performance and reliability -
stitch-express/trunk/stitch-express.php
r3463217 r3465047 9 9 * Description: Use Stitch Express to easily and securely accept Card payment on your WooCommerce store. 10 10 * Plugin URI: https://wordpress.org/plugins/stitchexpress/ 11 * Version: 1.3. 411 * Version: 1.3.5 12 12 * Requires at least: 6.5 13 13 * Requires PHP: 8.0 … … 166 166 } 167 167 168 $expected_signature = hash_hmac('sha256', $raw_body, $client_secret); 168 $hashed_secret = base64_encode(hash('sha256', $client_secret, true)); 169 $expected_signature = hash_hmac('sha256', $raw_body, $hashed_secret); 169 170 170 171 if (!hash_equals($expected_signature, $signature)) {
Note: See TracChangeset
for help on using the changeset viewer.