Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1459 → Rev 1460

/trunk/vendor/composer/installed.json
837,12 → 837,12
"source": {
"type": "git",
"url": "https://github.com/phpseclib/phpseclib.git",
"reference": "6b34da463cba176825c7d834bd013a7540bd703c"
"reference": "6a6c22234a5b1502b1c0bb90917d31478a2b7f3e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/6b34da463cba176825c7d834bd013a7540bd703c",
"reference": "6b34da463cba176825c7d834bd013a7540bd703c",
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/6a6c22234a5b1502b1c0bb90917d31478a2b7f3e",
"reference": "6a6c22234a5b1502b1c0bb90917d31478a2b7f3e",
"shasum": ""
},
"require": {
860,7 → 860,7
"ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
"ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
},
"time": "2024-01-12T21:44:58+00:00",
"time": "2024-01-24T13:42:28+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
/trunk/vendor/composer/installed.php
189,7 → 189,7
'phpseclib/phpseclib' => array(
'pretty_version' => '3.0.x-dev',
'version' => '3.0.9999999.9999999-dev',
'reference' => '6b34da463cba176825c7d834bd013a7540bd703c',
'reference' => '6a6c22234a5b1502b1c0bb90917d31478a2b7f3e',
'type' => 'library',
'install_path' => __DIR__ . '/../phpseclib/phpseclib',
'aliases' => array(),
/trunk/vendor/licenses
28,7 → 28,7
matthiasmullie/path-converter 1.1.3 MIT
paragonie/constant_time_encoding v2.6.3 MIT
paragonie/random_compat v9.99.100 MIT
phpseclib/phpseclib 3.0.x-dev 6b34da4 MIT
phpseclib/phpseclib 3.0.x-dev 6a6c222 MIT
script47/bs5-utils master master MIT
spamspan/spamspan master GPL-2.0-only
spomky-labs/php-punycode 9999999-dev d12fe5c MIT
/trunk/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/PrivateKey.php
150,7 → 150,7
// we use specified curves to avoid issues with OpenSSL possibly not supporting a given named curve;
// doing this may mean some curve-specific optimizations can't be used but idk if OpenSSL even
// has curve-specific optimizations
$result = openssl_sign($message, $signature, $this->toString('PKCS8', ['namedCurve' => false]), $this->hash->getHash());
$result = openssl_sign($message, $signature, $this->withPassword()->toString('PKCS8', ['namedCurve' => false]), $this->hash->getHash());
 
if ($result) {
if ($shortFormat == 'ASN1') {