- Timestamp:
- 12/09/2019 04:44:58 PM (5 years ago)
- Location:
- branches/5.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.3
-
branches/5.3/src/wp-includes/sodium_compat/src/Core/Ed25519.php
r44953 r46859 277 277 throw new SodiumException('Signature is too short'); 278 278 } 279 if ( self::check_S_lt_L(self::substr($sig, 32, 32))) {279 if ((self::chrToInt($sig[63]) & 240) && self::check_S_lt_L(self::substr($sig, 32, 32))) { 280 280 throw new SodiumException('S < L - Invalid signature'); 281 281 }
Note: See TracChangeset
for help on using the changeset viewer.