Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1459 → Rev 1460

/trunk/changelog.json.php
3,6 → 3,14
"dummy": "<?php die('For security reasons, this file can only be accessed locally (without PHP).'.base64_decode('IgogICAgfQpdCg==')); /* @phpstan-ignore-line */ ?>"
},
{
"version": "2.0.1.15",
"date": "2024-01-25 22:15:00 +0100",
"author": "Daniel Marschall (ViaThinkSoft)",
"changes": [
"New definition of VTS-F3 AID (Device Vendor/Product ID)"
]
},
{
"version": "2.0.1.14",
"date": "2024-01-21 23:55:00 +0100",
"author": "Daniel Marschall (ViaThinkSoft)",
/trunk/plugins/viathinksoft/adminPages/902_systemfile_check/checksums.json
Cannot display: file marked as a binary type.
svn:mime-type = application/json
/trunk/plugins/viathinksoft/language/dede/messages.xml
5446,6 → 5446,22
</message>
<message>
<source><![CDATA[
PCI-SIG (pcisig.com) VendorID
]]></source>
<target><![CDATA[
PCI-SIG (pcisig.com) Hersteller-Kennung
]]></target>
</message>
<message>
<source><![CDATA[
PCI-SIG (pcisig.com)VendorID/ProductID
]]></source>
<target><![CDATA[
PCI-SIG (pcisig.com) Hersteller/Produkt-Kennung
]]></target>
</message>
<message>
<source><![CDATA[
PDO Password
]]></source>
<target><![CDATA[
8401,11 → 8417,19
USB-IF (usb.org) VendorID
]]></source>
<target><![CDATA[
USB-IF (usb.org) VendorID
USB-IF (usb.org) Hersteller-Kennung
]]></target>
</message>
<message>
<source><![CDATA[
USB-IF (usb.org) VendorID/ProductID
]]></source>
<target><![CDATA[
USB-IF (usb.org) Hersteller/Produkt-Kennung
]]></target>
</message>
<message>
<source><![CDATA[
UUID
]]></source>
<target><![CDATA[
/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') {