Version Notes
- Backend redirector
Download this release
Release Info
Developer | Webinterpret |
Extension | Webinterpret_Connector |
Version | 1.3.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.3.0.1 to 1.3.1.0
- app/code/community/Webinterpret/Connector/Helper/Data.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/Webinterpret/InventoryManagerClient.php +117 -0
- app/code/community/Webinterpret/Connector/Lib/Webinterpret/InventoryManagerProductInfo.php +97 -0
- app/code/community/Webinterpret/Connector/Lib/Webinterpret/Toolkit/GeoIP.php +91 -0
- app/code/community/Webinterpret/Connector/Lib/autoload.php +7 -0
- app/code/community/Webinterpret/Connector/Lib/composer/ClassLoader.php +413 -0
- app/code/community/Webinterpret/Connector/Lib/composer/LICENSE +433 -0
- app/code/community/Webinterpret/Connector/Lib/composer/autoload_classmap.php +9 -0
- app/code/community/Webinterpret/Connector/Lib/composer/autoload_namespaces.php +11 -0
- app/code/community/Webinterpret/Connector/Lib/composer/autoload_psr4.php +12 -0
- app/code/community/Webinterpret/Connector/Lib/composer/autoload_real.php +45 -0
- app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/LICENSE +19 -0
- app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/README.md +70 -0
- app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/composer.json +51 -0
- app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/res/cacert.pem +3884 -0
- app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/src/CaBundle.php +291 -0
- app/code/community/Webinterpret/Connector/Lib/composer/installed.json +263 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/.gitmodules +3 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/CHANGELOG.md +224 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/LICENSE +202 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/README.md +383 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/composer.json +29 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Compat/JsonSerializable.php +27 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Database/Reader.php +246 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/AddressNotFoundException.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/AuthenticationException.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/GeoIp2Exception.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/HttpException.php +25 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/InvalidRequestException.php +26 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/OutOfQueriesException.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/AbstractModel.php +62 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/AnonymousIp.php +50 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/City.php +136 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/ConnectionType.php +31 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Country.php +73 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Domain.php +31 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Enterprise.php +56 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Insights.php +56 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Isp.php +47 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/ProviderInterface.php +20 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/AbstractPlaceRecord.php +57 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/AbstractRecord.php +60 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/City.php +32 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Continent.php +35 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Country.php +41 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Location.php +59 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/MaxMind.php +19 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Postal.php +27 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/RepresentedCountry.php +40 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Subdivision.php +45 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Traits.php +107 -0
- app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/WebService/Client.php +242 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/.gitignore +5 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/.travis.yml +25 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/CHANGELOG.md +10 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/LICENSE +19 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/README.md +28 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/composer.json +32 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/examples/CookieListener.php +37 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/examples/DigestAuthListener.php +40 -0
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Browser.php +11 -11
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/AbstractClient.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/AbstractCurl.php +6 -6
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/AbstractStream.php +2 -2
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/BatchClientInterface.php +2 -2
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/ClientInterface.php +4 -4
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/Curl.php +5 -5
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/FileGetContents.php +5 -5
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/MultiCurl.php +4 -4
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/ClientException.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/ExceptionInterface.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/InvalidArgumentException.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/LogicException.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/RequestException.php +2 -2
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/RuntimeException.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/BasicAuthListener.php +3 -3
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/CallbackListener.php +4 -4
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/CookieListener.php +5 -5
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/DigestAuthListener.php +3 -3
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/History/Entry.php +3 -3
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/History/Journal.php +3 -3
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/HistoryListener.php +4 -4
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/ListenerChain.php +3 -3
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/ListenerInterface.php +3 -3
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/LoggerListener.php +4 -4
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/AbstractMessage.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Factory/Factory.php +5 -5
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Factory/FactoryInterface.php +2 -2
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Form/FormRequest.php +3 -3
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Form/FormRequestInterface.php +2 -2
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Form/FormUpload.php +2 -2
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Form/FormUploadInterface.php +2 -2
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/MessageInterface.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Request.php +2 -2
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/RequestInterface.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Response.php +1 -1
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Util/Cookie.php +2 -2
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Util/CookieJar.php +3 -3
- app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Util/Url.php +3 -3
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/phpunit.xml.dist +20 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/BrowserTest.php +182 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Client/AbstractStreamTest.php +58 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Client/ClientTest.php +36 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Client/FunctionalTest.php +287 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/BasicAuthListenerTest.php +20 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/CallbackListenerTest.php +34 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/DigestAuthListenerTest.php +60 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/History/EntryTest.php +15 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/History/JournalTest.php +119 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/HistoryListenerTest.php +39 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/ListenerChainTest.php +36 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/LoggerListenerTest.php +31 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/AbstractMessageTest.php +129 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/FactoryTest.php +61 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/Fixtures/google.png +0 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/FormRequestTest.php +137 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/FormUploadTest.php +44 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/RequestTest.php +141 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/ResponseTest.php +114 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Util/CookieJarTest.php +73 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Util/CookieTest.php +151 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Util/UrlTest.php +57 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/etc/nginx.conf +49 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/etc/squid.conf +2 -0
- app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/server.php +18 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/CHANGELOG.md +87 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/LICENSE +202 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/README.md +140 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/composer.json +28 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/ext/config.m4 +19 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/ext/maxminddb.c +565 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/ext/php_maxminddb.h +24 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/ext/tests/001-load.phpt +10 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader.php +296 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php +309 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php +77 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php +28 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/CHANGELOG.md +69 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/LICENSE +202 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/README.md +26 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/composer.json +29 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/AuthenticationException.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/HttpException.php +40 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/InsufficientFundsException.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/InvalidInputException.php +12 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/InvalidRequestException.php +37 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php +7 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/PermissionRequiredException.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/WebServiceException.php +10 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/WebService/Client.php +457 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/WebService/Http/CurlRequest.php +109 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/WebService/Http/Request.php +28 -0
- app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/WebService/Http/RequestFactory.php +25 -0
- app/code/community/Webinterpret/Connector/Model/BackendRedirector.php +184 -0
- app/code/community/Webinterpret/Connector/Model/Observer.php +24 -0
- app/code/community/Webinterpret/Connector/Model/StoreExtender.php +10 -7
- app/code/community/Webinterpret/Connector/etc/config.xml +12 -1
- app/code/community/Webinterpret/Connector/resources/geoip/COPYRIGHT.txt +4 -0
- app/code/community/Webinterpret/Connector/resources/geoip/GeoIP2-Country.mmdb +0 -0
- app/code/community/Webinterpret/Connector/resources/geoip/LICENSE.txt +3 -0
- package.xml +6 -6
app/code/community/Webinterpret/Connector/Helper/Data.php
CHANGED
@@ -138,6 +138,11 @@ class Webinterpret_Connector_Helper_Data extends Mage_Core_Helper_Abstract
|
|
138 |
return (bool)Mage::getStoreConfig('webinterpret_connector/store_extender_enabled');
|
139 |
}
|
140 |
|
|
|
|
|
|
|
|
|
|
|
141 |
public function isFooterEnabled()
|
142 |
{
|
143 |
$module = $this->isEnabled();
|
@@ -505,4 +510,9 @@ class Webinterpret_Connector_Helper_Data extends Mage_Core_Helper_Abstract
|
|
505 |
|
506 |
throw new \Exception('Error checking signature');
|
507 |
}
|
|
|
|
|
|
|
|
|
|
|
508 |
}
|
138 |
return (bool)Mage::getStoreConfig('webinterpret_connector/store_extender_enabled');
|
139 |
}
|
140 |
|
141 |
+
public function isBackendRedirectorEnabled()
|
142 |
+
{
|
143 |
+
return (bool)Mage::getStoreConfig('webinterpret_connector/backend_redirector_enabled');
|
144 |
+
}
|
145 |
+
|
146 |
public function isFooterEnabled()
|
147 |
{
|
148 |
$module = $this->isEnabled();
|
510 |
|
511 |
throw new \Exception('Error checking signature');
|
512 |
}
|
513 |
+
|
514 |
+
public function getGeoip2DbPath()
|
515 |
+
{
|
516 |
+
return Mage::getModuleDir('', 'Webinterpret_Connector') . '/resources/geoip/GeoIP2-Country.mmdb';
|
517 |
+
}
|
518 |
}
|
app/code/community/Webinterpret/Connector/Lib/Webinterpret/InventoryManagerClient.php
ADDED
@@ -0,0 +1,117 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace WebinterpretConnector\Webinterpret;
|
4 |
+
|
5 |
+
use Buzz\Browser;
|
6 |
+
use Buzz\Message\Response;
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Class InventoryManagerClient
|
10 |
+
* @package WebinterpretConnector\Webinterpret
|
11 |
+
*/
|
12 |
+
class InventoryManagerClient
|
13 |
+
{
|
14 |
+
/**
|
15 |
+
* @var Browser
|
16 |
+
*/
|
17 |
+
private $browser;
|
18 |
+
|
19 |
+
/**
|
20 |
+
* @var string
|
21 |
+
*/
|
22 |
+
private $storeUrl;
|
23 |
+
|
24 |
+
/**
|
25 |
+
* @var string
|
26 |
+
*/
|
27 |
+
private $inventoryManagerUrl;
|
28 |
+
|
29 |
+
/**
|
30 |
+
* InventoryManagerClient constructor.
|
31 |
+
* @param Browser $browser
|
32 |
+
* @param $storeUrl
|
33 |
+
* @param $inventoryManagerUrl
|
34 |
+
*/
|
35 |
+
public function __construct(Browser $browser, $storeUrl, $inventoryManagerUrl)
|
36 |
+
{
|
37 |
+
$this->browser = $browser;
|
38 |
+
$this->storeUrl = $storeUrl;
|
39 |
+
$this->inventoryManagerUrl = $inventoryManagerUrl;
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* @param $productId
|
44 |
+
* @return InventoryManagerProductInfo|bool
|
45 |
+
*/
|
46 |
+
public function fetchProductInfo($productId, $clientIp, $clientCountryCode)
|
47 |
+
{
|
48 |
+
$productLookupUrl = $this->inventoryManagerUrl . '/product/' . $productId;
|
49 |
+
$productLookupUrl .= '?' . http_build_query(array(
|
50 |
+
'store_url' => $this->storeUrl,
|
51 |
+
));
|
52 |
+
|
53 |
+
$headers = array(
|
54 |
+
'Connection' => 'keep-alive',
|
55 |
+
'Cache-Control' => 'no-cache',
|
56 |
+
'Webinterpret-Visitor-Ip' => $clientIp,
|
57 |
+
'Webinterpret-Visitor-Country' => $clientCountryCode,
|
58 |
+
);
|
59 |
+
|
60 |
+
$response = $this->browser->call(
|
61 |
+
$productLookupUrl,
|
62 |
+
'GET',
|
63 |
+
$headers
|
64 |
+
);
|
65 |
+
|
66 |
+
if (!$this->isValidResponse($response)) {
|
67 |
+
return false;
|
68 |
+
}
|
69 |
+
|
70 |
+
$jsonObject = json_decode($response->getContent());
|
71 |
+
|
72 |
+
if (is_null($jsonObject)) {
|
73 |
+
return false;
|
74 |
+
}
|
75 |
+
|
76 |
+
if ($this->isInventoryManagerStatusError($jsonObject)) {
|
77 |
+
return false;
|
78 |
+
}
|
79 |
+
|
80 |
+
return new InventoryManagerProductInfo($jsonObject);
|
81 |
+
}
|
82 |
+
|
83 |
+
/**
|
84 |
+
* Checks if response from the Inventory Manager API call is valid
|
85 |
+
*
|
86 |
+
* @param mixed $response
|
87 |
+
*
|
88 |
+
* @return bool
|
89 |
+
*/
|
90 |
+
private function isValidResponse(Response $response)
|
91 |
+
{
|
92 |
+
if ($response->isEmpty()) {
|
93 |
+
return false;
|
94 |
+
};
|
95 |
+
|
96 |
+
if ($response->getStatusCode() !== 200) {
|
97 |
+
return false;
|
98 |
+
}
|
99 |
+
|
100 |
+
return true;
|
101 |
+
}
|
102 |
+
|
103 |
+
/**
|
104 |
+
* Checks if Inventory Manager returned a response with status => "error"
|
105 |
+
*
|
106 |
+
* @param \stdClass $jsonObject
|
107 |
+
*
|
108 |
+
* @return bool
|
109 |
+
*/
|
110 |
+
private function isInventoryManagerStatusError($jsonObject) {
|
111 |
+
if (property_exists($jsonObject, 'status') === true && $jsonObject->status === 'error') {
|
112 |
+
return true;
|
113 |
+
};
|
114 |
+
|
115 |
+
return false;
|
116 |
+
}
|
117 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/Webinterpret/InventoryManagerProductInfo.php
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace WebinterpretConnector\Webinterpret;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Product information fetched from Inventory Manager
|
7 |
+
*/
|
8 |
+
class InventoryManagerProductInfo {
|
9 |
+
|
10 |
+
/**
|
11 |
+
* @var \stdClass Response from Inventory Manager
|
12 |
+
*/
|
13 |
+
private $originalResponse;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* InventoryManagerProductInfo constructor.
|
17 |
+
*
|
18 |
+
* @param \stdClass $inventoryManagerResponse
|
19 |
+
*/
|
20 |
+
public function __construct(\stdClass $inventoryManagerResponse) {
|
21 |
+
$this->originalResponse = $inventoryManagerResponse;
|
22 |
+
}
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Checks whether product is available (based on response from Inventory Manager)
|
26 |
+
*
|
27 |
+
* @return bool
|
28 |
+
*/
|
29 |
+
public function isProductAvailable() {
|
30 |
+
if ($this->propertyExists('available') && $this->get('available') === true) {
|
31 |
+
return true;
|
32 |
+
}
|
33 |
+
|
34 |
+
return false;
|
35 |
+
}
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Checks whether automatic redirection is enabled on Inventory Manager's side
|
39 |
+
*
|
40 |
+
* @return bool
|
41 |
+
*/
|
42 |
+
public function isAutoRedirectEnabled() {
|
43 |
+
if ($this->propertyExists('auto_redirect') && $this->get('auto_redirect') === true) {
|
44 |
+
return true;
|
45 |
+
}
|
46 |
+
|
47 |
+
return false;
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Returns locale code
|
52 |
+
*
|
53 |
+
* @return null|string
|
54 |
+
*/
|
55 |
+
public function getLocaleCode() {
|
56 |
+
if ($this->propertyExists('locale_code')) {
|
57 |
+
return $this->get('locale_code');
|
58 |
+
}
|
59 |
+
|
60 |
+
return null;
|
61 |
+
}
|
62 |
+
|
63 |
+
/**
|
64 |
+
* Returns product international URL
|
65 |
+
*
|
66 |
+
* @return null|string
|
67 |
+
*/
|
68 |
+
public function getProductUrl() {
|
69 |
+
if ($this->propertyExists('url')) {
|
70 |
+
return $this->get('url');
|
71 |
+
}
|
72 |
+
|
73 |
+
return null;
|
74 |
+
}
|
75 |
+
|
76 |
+
/**
|
77 |
+
* Checks if the property exists in the response
|
78 |
+
*
|
79 |
+
* @param $property_name
|
80 |
+
*
|
81 |
+
* @return bool
|
82 |
+
*/
|
83 |
+
private function propertyExists($property_name) {
|
84 |
+
return (property_exists($this->originalResponse, $property_name) === true);
|
85 |
+
}
|
86 |
+
|
87 |
+
/**
|
88 |
+
* Returns a chosen property from the response
|
89 |
+
*
|
90 |
+
* @param $property_name
|
91 |
+
*
|
92 |
+
* @return mixed
|
93 |
+
*/
|
94 |
+
private function get($property_name) {
|
95 |
+
return $this->originalResponse->{$property_name};
|
96 |
+
}
|
97 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/Webinterpret/Toolkit/GeoIP.php
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace WebinterpretConnector\Webinterpret\Toolkit;
|
4 |
+
|
5 |
+
use GeoIp2\Database\Reader;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* Geolocation and IP helpers
|
9 |
+
*/
|
10 |
+
class GeoIP
|
11 |
+
{
|
12 |
+
private $geoip2Reader;
|
13 |
+
|
14 |
+
public function __construct(Reader $reader)
|
15 |
+
{
|
16 |
+
$this->geoip2Reader = $reader;
|
17 |
+
}
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Gets the client IP from headers. Proxies are taken into consideration, private & reserved ranges are filtered out.
|
21 |
+
*
|
22 |
+
* WARNING: the IP headers can be spoofed, so don't rely on it
|
23 |
+
*
|
24 |
+
* @return bool|string False on failure, client IP address on success
|
25 |
+
*/
|
26 |
+
public function getClientIp() {
|
27 |
+
foreach (
|
28 |
+
array(
|
29 |
+
'HTTP_CLIENT_IP',
|
30 |
+
'HTTP_X_FORWARDED_FOR',
|
31 |
+
'HTTP_X_FORWARDED',
|
32 |
+
'HTTP_X_CLUSTER_CLIENT_IP',
|
33 |
+
'HTTP_FORWARDED_FOR',
|
34 |
+
'HTTP_FORWARDED',
|
35 |
+
'REMOTE_ADDR'
|
36 |
+
) as $key
|
37 |
+
) {
|
38 |
+
if (array_key_exists($key, $_SERVER) === true) {
|
39 |
+
foreach (array_map('trim', explode(',', $_SERVER[$key])) as $ip) {
|
40 |
+
if (filter_var(
|
41 |
+
$ip,
|
42 |
+
FILTER_VALIDATE_IP,
|
43 |
+
FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE
|
44 |
+
) !== false) {
|
45 |
+
return $ip;
|
46 |
+
}
|
47 |
+
}
|
48 |
+
}
|
49 |
+
}
|
50 |
+
|
51 |
+
return false;
|
52 |
+
}
|
53 |
+
|
54 |
+
/**
|
55 |
+
* Returns a two-character ISO 3166-1 alpha country code for the country associated with the location (based on client IP)
|
56 |
+
* or false if no country code was found
|
57 |
+
*
|
58 |
+
* @return bool|string False on failure, ISO 3166-1 country code on success
|
59 |
+
*/
|
60 |
+
public function getClientCountryCode() {
|
61 |
+
$clientIp = $this->getClientIp();
|
62 |
+
|
63 |
+
if ($clientIp) {
|
64 |
+
return $this->getCountryCodeForIp($clientIp);
|
65 |
+
}
|
66 |
+
|
67 |
+
return false;
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* Returns a two-character ISO 3166-1 alpha country code for the country associated with the provided ip
|
72 |
+
*
|
73 |
+
* @param string $ip
|
74 |
+
*
|
75 |
+
* @return string
|
76 |
+
*/
|
77 |
+
public function getCountryCodeForIp($ip) {
|
78 |
+
$country = $this->getGeoip2Reader()->country($ip);
|
79 |
+
|
80 |
+
return $country->country->isoCode;
|
81 |
+
}
|
82 |
+
|
83 |
+
/**
|
84 |
+
* Return reader for the GeoIP2 database format (will be lazily instantiated if it hasn't been before)
|
85 |
+
*
|
86 |
+
* @return Reader
|
87 |
+
*/
|
88 |
+
public function getGeoip2Reader() {
|
89 |
+
return $this->geoip2Reader;
|
90 |
+
}
|
91 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/autoload.php
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// autoload.php @generated by Composer
|
4 |
+
|
5 |
+
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
+
|
7 |
+
return ComposerAutoloaderInit6212b1904c1c4e85b10547bad70ddde1::getLoader();
|
app/code/community/Webinterpret/Connector/Lib/composer/ClassLoader.php
ADDED
@@ -0,0 +1,413 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* This file is part of Composer.
|
5 |
+
*
|
6 |
+
* (c) Nils Adermann <naderman@naderman.de>
|
7 |
+
* Jordi Boggiano <j.boggiano@seld.be>
|
8 |
+
*
|
9 |
+
* For the full copyright and license information, please view the LICENSE
|
10 |
+
* file that was distributed with this source code.
|
11 |
+
*/
|
12 |
+
|
13 |
+
namespace Composer\Autoload;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
17 |
+
*
|
18 |
+
* $loader = new \Composer\Autoload\ClassLoader();
|
19 |
+
*
|
20 |
+
* // register classes with namespaces
|
21 |
+
* $loader->add('Symfony\Component', __DIR__.'/component');
|
22 |
+
* $loader->add('Symfony', __DIR__.'/framework');
|
23 |
+
*
|
24 |
+
* // activate the autoloader
|
25 |
+
* $loader->register();
|
26 |
+
*
|
27 |
+
* // to enable searching the include path (eg. for PEAR packages)
|
28 |
+
* $loader->setUseIncludePath(true);
|
29 |
+
*
|
30 |
+
* In this example, if you try to use a class in the Symfony\Component
|
31 |
+
* namespace or one of its children (Symfony\Component\Console for instance),
|
32 |
+
* the autoloader will first look for the class under the component/
|
33 |
+
* directory, and it will then fallback to the framework/ directory if not
|
34 |
+
* found before giving up.
|
35 |
+
*
|
36 |
+
* This class is loosely based on the Symfony UniversalClassLoader.
|
37 |
+
*
|
38 |
+
* @author Fabien Potencier <fabien@symfony.com>
|
39 |
+
* @author Jordi Boggiano <j.boggiano@seld.be>
|
40 |
+
* @see http://www.php-fig.org/psr/psr-0/
|
41 |
+
* @see http://www.php-fig.org/psr/psr-4/
|
42 |
+
*/
|
43 |
+
class ClassLoader
|
44 |
+
{
|
45 |
+
// PSR-4
|
46 |
+
private $prefixLengthsPsr4 = array();
|
47 |
+
private $prefixDirsPsr4 = array();
|
48 |
+
private $fallbackDirsPsr4 = array();
|
49 |
+
|
50 |
+
// PSR-0
|
51 |
+
private $prefixesPsr0 = array();
|
52 |
+
private $fallbackDirsPsr0 = array();
|
53 |
+
|
54 |
+
private $useIncludePath = false;
|
55 |
+
private $classMap = array();
|
56 |
+
|
57 |
+
private $classMapAuthoritative = false;
|
58 |
+
|
59 |
+
public function getPrefixes()
|
60 |
+
{
|
61 |
+
if (!empty($this->prefixesPsr0)) {
|
62 |
+
return call_user_func_array('array_merge', $this->prefixesPsr0);
|
63 |
+
}
|
64 |
+
|
65 |
+
return array();
|
66 |
+
}
|
67 |
+
|
68 |
+
public function getPrefixesPsr4()
|
69 |
+
{
|
70 |
+
return $this->prefixDirsPsr4;
|
71 |
+
}
|
72 |
+
|
73 |
+
public function getFallbackDirs()
|
74 |
+
{
|
75 |
+
return $this->fallbackDirsPsr0;
|
76 |
+
}
|
77 |
+
|
78 |
+
public function getFallbackDirsPsr4()
|
79 |
+
{
|
80 |
+
return $this->fallbackDirsPsr4;
|
81 |
+
}
|
82 |
+
|
83 |
+
public function getClassMap()
|
84 |
+
{
|
85 |
+
return $this->classMap;
|
86 |
+
}
|
87 |
+
|
88 |
+
/**
|
89 |
+
* @param array $classMap Class to filename map
|
90 |
+
*/
|
91 |
+
public function addClassMap(array $classMap)
|
92 |
+
{
|
93 |
+
if ($this->classMap) {
|
94 |
+
$this->classMap = array_merge($this->classMap, $classMap);
|
95 |
+
} else {
|
96 |
+
$this->classMap = $classMap;
|
97 |
+
}
|
98 |
+
}
|
99 |
+
|
100 |
+
/**
|
101 |
+
* Registers a set of PSR-0 directories for a given prefix, either
|
102 |
+
* appending or prepending to the ones previously set for this prefix.
|
103 |
+
*
|
104 |
+
* @param string $prefix The prefix
|
105 |
+
* @param array|string $paths The PSR-0 root directories
|
106 |
+
* @param bool $prepend Whether to prepend the directories
|
107 |
+
*/
|
108 |
+
public function add($prefix, $paths, $prepend = false)
|
109 |
+
{
|
110 |
+
if (!$prefix) {
|
111 |
+
if ($prepend) {
|
112 |
+
$this->fallbackDirsPsr0 = array_merge(
|
113 |
+
(array) $paths,
|
114 |
+
$this->fallbackDirsPsr0
|
115 |
+
);
|
116 |
+
} else {
|
117 |
+
$this->fallbackDirsPsr0 = array_merge(
|
118 |
+
$this->fallbackDirsPsr0,
|
119 |
+
(array) $paths
|
120 |
+
);
|
121 |
+
}
|
122 |
+
|
123 |
+
return;
|
124 |
+
}
|
125 |
+
|
126 |
+
$first = $prefix[0];
|
127 |
+
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
128 |
+
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
|
129 |
+
|
130 |
+
return;
|
131 |
+
}
|
132 |
+
if ($prepend) {
|
133 |
+
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
134 |
+
(array) $paths,
|
135 |
+
$this->prefixesPsr0[$first][$prefix]
|
136 |
+
);
|
137 |
+
} else {
|
138 |
+
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
139 |
+
$this->prefixesPsr0[$first][$prefix],
|
140 |
+
(array) $paths
|
141 |
+
);
|
142 |
+
}
|
143 |
+
}
|
144 |
+
|
145 |
+
/**
|
146 |
+
* Registers a set of PSR-4 directories for a given namespace, either
|
147 |
+
* appending or prepending to the ones previously set for this namespace.
|
148 |
+
*
|
149 |
+
* @param string $prefix The prefix/namespace, with trailing '\\'
|
150 |
+
* @param array|string $paths The PSR-4 base directories
|
151 |
+
* @param bool $prepend Whether to prepend the directories
|
152 |
+
*
|
153 |
+
* @throws \InvalidArgumentException
|
154 |
+
*/
|
155 |
+
public function addPsr4($prefix, $paths, $prepend = false)
|
156 |
+
{
|
157 |
+
if (!$prefix) {
|
158 |
+
// Register directories for the root namespace.
|
159 |
+
if ($prepend) {
|
160 |
+
$this->fallbackDirsPsr4 = array_merge(
|
161 |
+
(array) $paths,
|
162 |
+
$this->fallbackDirsPsr4
|
163 |
+
);
|
164 |
+
} else {
|
165 |
+
$this->fallbackDirsPsr4 = array_merge(
|
166 |
+
$this->fallbackDirsPsr4,
|
167 |
+
(array) $paths
|
168 |
+
);
|
169 |
+
}
|
170 |
+
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
171 |
+
// Register directories for a new namespace.
|
172 |
+
$length = strlen($prefix);
|
173 |
+
if ('\\' !== $prefix[$length - 1]) {
|
174 |
+
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
175 |
+
}
|
176 |
+
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
177 |
+
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
178 |
+
} elseif ($prepend) {
|
179 |
+
// Prepend directories for an already registered namespace.
|
180 |
+
$this->prefixDirsPsr4[$prefix] = array_merge(
|
181 |
+
(array) $paths,
|
182 |
+
$this->prefixDirsPsr4[$prefix]
|
183 |
+
);
|
184 |
+
} else {
|
185 |
+
// Append directories for an already registered namespace.
|
186 |
+
$this->prefixDirsPsr4[$prefix] = array_merge(
|
187 |
+
$this->prefixDirsPsr4[$prefix],
|
188 |
+
(array) $paths
|
189 |
+
);
|
190 |
+
}
|
191 |
+
}
|
192 |
+
|
193 |
+
/**
|
194 |
+
* Registers a set of PSR-0 directories for a given prefix,
|
195 |
+
* replacing any others previously set for this prefix.
|
196 |
+
*
|
197 |
+
* @param string $prefix The prefix
|
198 |
+
* @param array|string $paths The PSR-0 base directories
|
199 |
+
*/
|
200 |
+
public function set($prefix, $paths)
|
201 |
+
{
|
202 |
+
if (!$prefix) {
|
203 |
+
$this->fallbackDirsPsr0 = (array) $paths;
|
204 |
+
} else {
|
205 |
+
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
206 |
+
}
|
207 |
+
}
|
208 |
+
|
209 |
+
/**
|
210 |
+
* Registers a set of PSR-4 directories for a given namespace,
|
211 |
+
* replacing any others previously set for this namespace.
|
212 |
+
*
|
213 |
+
* @param string $prefix The prefix/namespace, with trailing '\\'
|
214 |
+
* @param array|string $paths The PSR-4 base directories
|
215 |
+
*
|
216 |
+
* @throws \InvalidArgumentException
|
217 |
+
*/
|
218 |
+
public function setPsr4($prefix, $paths)
|
219 |
+
{
|
220 |
+
if (!$prefix) {
|
221 |
+
$this->fallbackDirsPsr4 = (array) $paths;
|
222 |
+
} else {
|
223 |
+
$length = strlen($prefix);
|
224 |
+
if ('\\' !== $prefix[$length - 1]) {
|
225 |
+
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
226 |
+
}
|
227 |
+
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
228 |
+
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
229 |
+
}
|
230 |
+
}
|
231 |
+
|
232 |
+
/**
|
233 |
+
* Turns on searching the include path for class files.
|
234 |
+
*
|
235 |
+
* @param bool $useIncludePath
|
236 |
+
*/
|
237 |
+
public function setUseIncludePath($useIncludePath)
|
238 |
+
{
|
239 |
+
$this->useIncludePath = $useIncludePath;
|
240 |
+
}
|
241 |
+
|
242 |
+
/**
|
243 |
+
* Can be used to check if the autoloader uses the include path to check
|
244 |
+
* for classes.
|
245 |
+
*
|
246 |
+
* @return bool
|
247 |
+
*/
|
248 |
+
public function getUseIncludePath()
|
249 |
+
{
|
250 |
+
return $this->useIncludePath;
|
251 |
+
}
|
252 |
+
|
253 |
+
/**
|
254 |
+
* Turns off searching the prefix and fallback directories for classes
|
255 |
+
* that have not been registered with the class map.
|
256 |
+
*
|
257 |
+
* @param bool $classMapAuthoritative
|
258 |
+
*/
|
259 |
+
public function setClassMapAuthoritative($classMapAuthoritative)
|
260 |
+
{
|
261 |
+
$this->classMapAuthoritative = $classMapAuthoritative;
|
262 |
+
}
|
263 |
+
|
264 |
+
/**
|
265 |
+
* Should class lookup fail if not found in the current class map?
|
266 |
+
*
|
267 |
+
* @return bool
|
268 |
+
*/
|
269 |
+
public function isClassMapAuthoritative()
|
270 |
+
{
|
271 |
+
return $this->classMapAuthoritative;
|
272 |
+
}
|
273 |
+
|
274 |
+
/**
|
275 |
+
* Registers this instance as an autoloader.
|
276 |
+
*
|
277 |
+
* @param bool $prepend Whether to prepend the autoloader or not
|
278 |
+
*/
|
279 |
+
public function register($prepend = false)
|
280 |
+
{
|
281 |
+
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
282 |
+
}
|
283 |
+
|
284 |
+
/**
|
285 |
+
* Unregisters this instance as an autoloader.
|
286 |
+
*/
|
287 |
+
public function unregister()
|
288 |
+
{
|
289 |
+
spl_autoload_unregister(array($this, 'loadClass'));
|
290 |
+
}
|
291 |
+
|
292 |
+
/**
|
293 |
+
* Loads the given class or interface.
|
294 |
+
*
|
295 |
+
* @param string $class The name of the class
|
296 |
+
* @return bool|null True if loaded, null otherwise
|
297 |
+
*/
|
298 |
+
public function loadClass($class)
|
299 |
+
{
|
300 |
+
if ($file = $this->findFile($class)) {
|
301 |
+
includeFile($file);
|
302 |
+
|
303 |
+
return true;
|
304 |
+
}
|
305 |
+
}
|
306 |
+
|
307 |
+
/**
|
308 |
+
* Finds the path to the file where the class is defined.
|
309 |
+
*
|
310 |
+
* @param string $class The name of the class
|
311 |
+
*
|
312 |
+
* @return string|false The path if found, false otherwise
|
313 |
+
*/
|
314 |
+
public function findFile($class)
|
315 |
+
{
|
316 |
+
// work around for PHP 5.3.0 - 5.3.2 https://bugs.php.net/50731
|
317 |
+
if ('\\' == $class[0]) {
|
318 |
+
$class = substr($class, 1);
|
319 |
+
}
|
320 |
+
|
321 |
+
// class map lookup
|
322 |
+
if (isset($this->classMap[$class])) {
|
323 |
+
return $this->classMap[$class];
|
324 |
+
}
|
325 |
+
if ($this->classMapAuthoritative) {
|
326 |
+
return false;
|
327 |
+
}
|
328 |
+
|
329 |
+
$file = $this->findFileWithExtension($class, '.php');
|
330 |
+
|
331 |
+
// Search for Hack files if we are running on HHVM
|
332 |
+
if ($file === null && defined('HHVM_VERSION')) {
|
333 |
+
$file = $this->findFileWithExtension($class, '.hh');
|
334 |
+
}
|
335 |
+
|
336 |
+
if ($file === null) {
|
337 |
+
// Remember that this class does not exist.
|
338 |
+
return $this->classMap[$class] = false;
|
339 |
+
}
|
340 |
+
|
341 |
+
return $file;
|
342 |
+
}
|
343 |
+
|
344 |
+
private function findFileWithExtension($class, $ext)
|
345 |
+
{
|
346 |
+
// PSR-4 lookup
|
347 |
+
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
348 |
+
|
349 |
+
$first = $class[0];
|
350 |
+
if (isset($this->prefixLengthsPsr4[$first])) {
|
351 |
+
foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {
|
352 |
+
if (0 === strpos($class, $prefix)) {
|
353 |
+
foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
|
354 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
|
355 |
+
return $file;
|
356 |
+
}
|
357 |
+
}
|
358 |
+
}
|
359 |
+
}
|
360 |
+
}
|
361 |
+
|
362 |
+
// PSR-4 fallback dirs
|
363 |
+
foreach ($this->fallbackDirsPsr4 as $dir) {
|
364 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
365 |
+
return $file;
|
366 |
+
}
|
367 |
+
}
|
368 |
+
|
369 |
+
// PSR-0 lookup
|
370 |
+
if (false !== $pos = strrpos($class, '\\')) {
|
371 |
+
// namespaced class name
|
372 |
+
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
373 |
+
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
374 |
+
} else {
|
375 |
+
// PEAR-like class name
|
376 |
+
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
377 |
+
}
|
378 |
+
|
379 |
+
if (isset($this->prefixesPsr0[$first])) {
|
380 |
+
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
381 |
+
if (0 === strpos($class, $prefix)) {
|
382 |
+
foreach ($dirs as $dir) {
|
383 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
384 |
+
return $file;
|
385 |
+
}
|
386 |
+
}
|
387 |
+
}
|
388 |
+
}
|
389 |
+
}
|
390 |
+
|
391 |
+
// PSR-0 fallback dirs
|
392 |
+
foreach ($this->fallbackDirsPsr0 as $dir) {
|
393 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
394 |
+
return $file;
|
395 |
+
}
|
396 |
+
}
|
397 |
+
|
398 |
+
// PSR-0 include paths.
|
399 |
+
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
400 |
+
return $file;
|
401 |
+
}
|
402 |
+
}
|
403 |
+
}
|
404 |
+
|
405 |
+
/**
|
406 |
+
* Scope isolated include.
|
407 |
+
*
|
408 |
+
* Prevents access to $this/self from included files.
|
409 |
+
*/
|
410 |
+
function includeFile($file)
|
411 |
+
{
|
412 |
+
include $file;
|
413 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/composer/LICENSE
ADDED
@@ -0,0 +1,433 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
2 |
+
Upstream-Name: Composer
|
3 |
+
Upstream-Contact: Jordi Boggiano <j.boggiano@seld.be>
|
4 |
+
Source: https://github.com/composer/composer
|
5 |
+
|
6 |
+
Files: *
|
7 |
+
Copyright: 2016, Nils Adermann <naderman@naderman.de>
|
8 |
+
2016, Jordi Boggiano <j.boggiano@seld.be>
|
9 |
+
License: Expat
|
10 |
+
|
11 |
+
Files: res/cacert.pem
|
12 |
+
Copyright: 2015, Mozilla Foundation
|
13 |
+
License: MPL-2.0
|
14 |
+
|
15 |
+
Files: src/Composer/Util/RemoteFilesystem.php
|
16 |
+
src/Composer/Util/TlsHelper.php
|
17 |
+
Copyright: 2016, Nils Adermann <naderman@naderman.de>
|
18 |
+
2016, Jordi Boggiano <j.boggiano@seld.be>
|
19 |
+
2013, Evan Coury <me@evancoury.com>
|
20 |
+
License: Expat and BSD-2-Clause
|
21 |
+
|
22 |
+
License: BSD-2-Clause
|
23 |
+
Redistribution and use in source and binary forms, with or without modification,
|
24 |
+
are permitted provided that the following conditions are met:
|
25 |
+
.
|
26 |
+
* Redistributions of source code must retain the above copyright notice,
|
27 |
+
this list of conditions and the following disclaimer.
|
28 |
+
.
|
29 |
+
* Redistributions in binary form must reproduce the above copyright notice,
|
30 |
+
this list of conditions and the following disclaimer in the documentation
|
31 |
+
and/or other materials provided with the distribution.
|
32 |
+
.
|
33 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
34 |
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
35 |
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
36 |
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
37 |
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
38 |
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
39 |
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
40 |
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
41 |
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
42 |
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
43 |
+
|
44 |
+
License: Expat
|
45 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
46 |
+
of this software and associated documentation files (the "Software"), to deal
|
47 |
+
in the Software without restriction, including without limitation the rights
|
48 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
49 |
+
copies of the Software, and to permit persons to whom the Software is furnished
|
50 |
+
to do so, subject to the following conditions:
|
51 |
+
.
|
52 |
+
The above copyright notice and this permission notice shall be included in all
|
53 |
+
copies or substantial portions of the Software.
|
54 |
+
.
|
55 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
56 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
57 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
58 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
59 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
60 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
61 |
+
THE SOFTWARE.
|
62 |
+
|
63 |
+
License: MPL-2.0
|
64 |
+
1. Definitions
|
65 |
+
--------------
|
66 |
+
.
|
67 |
+
1.1. "Contributor"
|
68 |
+
means each individual or legal entity that creates, contributes to
|
69 |
+
the creation of, or owns Covered Software.
|
70 |
+
.
|
71 |
+
1.2. "Contributor Version"
|
72 |
+
means the combination of the Contributions of others (if any) used
|
73 |
+
by a Contributor and that particular Contributor's Contribution.
|
74 |
+
.
|
75 |
+
1.3. "Contribution"
|
76 |
+
means Covered Software of a particular Contributor.
|
77 |
+
.
|
78 |
+
1.4. "Covered Software"
|
79 |
+
means Source Code Form to which the initial Contributor has attached
|
80 |
+
the notice in Exhibit A, the Executable Form of such Source Code
|
81 |
+
Form, and Modifications of such Source Code Form, in each case
|
82 |
+
including portions thereof.
|
83 |
+
.
|
84 |
+
1.5. "Incompatible With Secondary Licenses"
|
85 |
+
means
|
86 |
+
.
|
87 |
+
(a) that the initial Contributor has attached the notice described
|
88 |
+
in Exhibit B to the Covered Software; or
|
89 |
+
.
|
90 |
+
(b) that the Covered Software was made available under the terms of
|
91 |
+
version 1.1 or earlier of the License, but not also under the
|
92 |
+
terms of a Secondary License.
|
93 |
+
.
|
94 |
+
1.6. "Executable Form"
|
95 |
+
means any form of the work other than Source Code Form.
|
96 |
+
.
|
97 |
+
1.7. "Larger Work"
|
98 |
+
means a work that combines Covered Software with other material, in
|
99 |
+
a separate file or files, that is not Covered Software.
|
100 |
+
.
|
101 |
+
1.8. "License"
|
102 |
+
means this document.
|
103 |
+
.
|
104 |
+
1.9. "Licensable"
|
105 |
+
means having the right to grant, to the maximum extent possible,
|
106 |
+
whether at the time of the initial grant or subsequently, any and
|
107 |
+
all of the rights conveyed by this License.
|
108 |
+
.
|
109 |
+
1.10. "Modifications"
|
110 |
+
means any of the following:
|
111 |
+
.
|
112 |
+
(a) any file in Source Code Form that results from an addition to,
|
113 |
+
deletion from, or modification of the contents of Covered
|
114 |
+
Software; or
|
115 |
+
.
|
116 |
+
(b) any new file in Source Code Form that contains any Covered
|
117 |
+
Software.
|
118 |
+
.
|
119 |
+
1.11. "Patent Claims" of a Contributor
|
120 |
+
means any patent claim(s), including without limitation, method,
|
121 |
+
process, and apparatus claims, in any patent Licensable by such
|
122 |
+
Contributor that would be infringed, but for the grant of the
|
123 |
+
License, by the making, using, selling, offering for sale, having
|
124 |
+
made, import, or transfer of either its Contributions or its
|
125 |
+
Contributor Version.
|
126 |
+
.
|
127 |
+
1.12. "Secondary License"
|
128 |
+
means either the GNU General Public License, Version 2.0, the GNU
|
129 |
+
Lesser General Public License, Version 2.1, the GNU Affero General
|
130 |
+
Public License, Version 3.0, or any later versions of those
|
131 |
+
licenses.
|
132 |
+
.
|
133 |
+
1.13. "Source Code Form"
|
134 |
+
means the form of the work preferred for making modifications.
|
135 |
+
.
|
136 |
+
1.14. "You" (or "Your")
|
137 |
+
means an individual or a legal entity exercising rights under this
|
138 |
+
License. For legal entities, "You" includes any entity that
|
139 |
+
controls, is controlled by, or is under common control with You. For
|
140 |
+
purposes of this definition, "control" means (a) the power, direct
|
141 |
+
or indirect, to cause the direction or management of such entity,
|
142 |
+
whether by contract or otherwise, or (b) ownership of more than
|
143 |
+
fifty percent (50%) of the outstanding shares or beneficial
|
144 |
+
ownership of such entity.
|
145 |
+
.
|
146 |
+
2. License Grants and Conditions
|
147 |
+
--------------------------------
|
148 |
+
.
|
149 |
+
2.1. Grants
|
150 |
+
.
|
151 |
+
Each Contributor hereby grants You a world-wide, royalty-free,
|
152 |
+
non-exclusive license:
|
153 |
+
.
|
154 |
+
(a) under intellectual property rights (other than patent or trademark)
|
155 |
+
Licensable by such Contributor to use, reproduce, make available,
|
156 |
+
modify, display, perform, distribute, and otherwise exploit its
|
157 |
+
Contributions, either on an unmodified basis, with Modifications, or
|
158 |
+
as part of a Larger Work; and
|
159 |
+
.
|
160 |
+
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
161 |
+
for sale, have made, import, and otherwise transfer either its
|
162 |
+
Contributions or its Contributor Version.
|
163 |
+
.
|
164 |
+
2.2. Effective Date
|
165 |
+
.
|
166 |
+
The licenses granted in Section 2.1 with respect to any Contribution
|
167 |
+
become effective for each Contribution on the date the Contributor first
|
168 |
+
distributes such Contribution.
|
169 |
+
.
|
170 |
+
2.3. Limitations on Grant Scope
|
171 |
+
.
|
172 |
+
The licenses granted in this Section 2 are the only rights granted under
|
173 |
+
this License. No additional rights or licenses will be implied from the
|
174 |
+
distribution or licensing of Covered Software under this License.
|
175 |
+
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
176 |
+
Contributor:
|
177 |
+
.
|
178 |
+
(a) for any code that a Contributor has removed from Covered Software;
|
179 |
+
or
|
180 |
+
.
|
181 |
+
(b) for infringements caused by: (i) Your and any other third party's
|
182 |
+
modifications of Covered Software, or (ii) the combination of its
|
183 |
+
Contributions with other software (except as part of its Contributor
|
184 |
+
Version); or
|
185 |
+
.
|
186 |
+
(c) under Patent Claims infringed by Covered Software in the absence of
|
187 |
+
its Contributions.
|
188 |
+
.
|
189 |
+
This License does not grant any rights in the trademarks, service marks,
|
190 |
+
or logos of any Contributor (except as may be necessary to comply with
|
191 |
+
the notice requirements in Section 3.4).
|
192 |
+
.
|
193 |
+
2.4. Subsequent Licenses
|
194 |
+
.
|
195 |
+
No Contributor makes additional grants as a result of Your choice to
|
196 |
+
distribute the Covered Software under a subsequent version of this
|
197 |
+
License (see Section 10.2) or under the terms of a Secondary License (if
|
198 |
+
permitted under the terms of Section 3.3).
|
199 |
+
.
|
200 |
+
2.5. Representation
|
201 |
+
.
|
202 |
+
Each Contributor represents that the Contributor believes its
|
203 |
+
Contributions are its original creation(s) or it has sufficient rights
|
204 |
+
to grant the rights to its Contributions conveyed by this License.
|
205 |
+
.
|
206 |
+
2.6. Fair Use
|
207 |
+
.
|
208 |
+
This License is not intended to limit any rights You have under
|
209 |
+
applicable copyright doctrines of fair use, fair dealing, or other
|
210 |
+
equivalents.
|
211 |
+
.
|
212 |
+
2.7. Conditions
|
213 |
+
.
|
214 |
+
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
215 |
+
in Section 2.1.
|
216 |
+
.
|
217 |
+
3. Responsibilities
|
218 |
+
-------------------
|
219 |
+
.
|
220 |
+
3.1. Distribution of Source Form
|
221 |
+
.
|
222 |
+
All distribution of Covered Software in Source Code Form, including any
|
223 |
+
Modifications that You create or to which You contribute, must be under
|
224 |
+
the terms of this License. You must inform recipients that the Source
|
225 |
+
Code Form of the Covered Software is governed by the terms of this
|
226 |
+
License, and how they can obtain a copy of this License. You may not
|
227 |
+
attempt to alter or restrict the recipients' rights in the Source Code
|
228 |
+
Form.
|
229 |
+
.
|
230 |
+
3.2. Distribution of Executable Form
|
231 |
+
.
|
232 |
+
If You distribute Covered Software in Executable Form then:
|
233 |
+
.
|
234 |
+
(a) such Covered Software must also be made available in Source Code
|
235 |
+
Form, as described in Section 3.1, and You must inform recipients of
|
236 |
+
the Executable Form how they can obtain a copy of such Source Code
|
237 |
+
Form by reasonable means in a timely manner, at a charge no more
|
238 |
+
than the cost of distribution to the recipient; and
|
239 |
+
.
|
240 |
+
(b) You may distribute such Executable Form under the terms of this
|
241 |
+
License, or sublicense it under different terms, provided that the
|
242 |
+
license for the Executable Form does not attempt to limit or alter
|
243 |
+
the recipients' rights in the Source Code Form under this License.
|
244 |
+
.
|
245 |
+
3.3. Distribution of a Larger Work
|
246 |
+
.
|
247 |
+
You may create and distribute a Larger Work under terms of Your choice,
|
248 |
+
provided that You also comply with the requirements of this License for
|
249 |
+
the Covered Software. If the Larger Work is a combination of Covered
|
250 |
+
Software with a work governed by one or more Secondary Licenses, and the
|
251 |
+
Covered Software is not Incompatible With Secondary Licenses, this
|
252 |
+
License permits You to additionally distribute such Covered Software
|
253 |
+
under the terms of such Secondary License(s), so that the recipient of
|
254 |
+
the Larger Work may, at their option, further distribute the Covered
|
255 |
+
Software under the terms of either this License or such Secondary
|
256 |
+
License(s).
|
257 |
+
.
|
258 |
+
3.4. Notices
|
259 |
+
.
|
260 |
+
You may not remove or alter the substance of any license notices
|
261 |
+
(including copyright notices, patent notices, disclaimers of warranty,
|
262 |
+
or limitations of liability) contained within the Source Code Form of
|
263 |
+
the Covered Software, except that You may alter any license notices to
|
264 |
+
the extent required to remedy known factual inaccuracies.
|
265 |
+
.
|
266 |
+
3.5. Application of Additional Terms
|
267 |
+
.
|
268 |
+
You may choose to offer, and to charge a fee for, warranty, support,
|
269 |
+
indemnity or liability obligations to one or more recipients of Covered
|
270 |
+
Software. However, You may do so only on Your own behalf, and not on
|
271 |
+
behalf of any Contributor. You must make it absolutely clear that any
|
272 |
+
such warranty, support, indemnity, or liability obligation is offered by
|
273 |
+
You alone, and You hereby agree to indemnify every Contributor for any
|
274 |
+
liability incurred by such Contributor as a result of warranty, support,
|
275 |
+
indemnity or liability terms You offer. You may include additional
|
276 |
+
disclaimers of warranty and limitations of liability specific to any
|
277 |
+
jurisdiction.
|
278 |
+
.
|
279 |
+
4. Inability to Comply Due to Statute or Regulation
|
280 |
+
---------------------------------------------------
|
281 |
+
.
|
282 |
+
If it is impossible for You to comply with any of the terms of this
|
283 |
+
License with respect to some or all of the Covered Software due to
|
284 |
+
statute, judicial order, or regulation then You must: (a) comply with
|
285 |
+
the terms of this License to the maximum extent possible; and (b)
|
286 |
+
describe the limitations and the code they affect. Such description must
|
287 |
+
be placed in a text file included with all distributions of the Covered
|
288 |
+
Software under this License. Except to the extent prohibited by statute
|
289 |
+
or regulation, such description must be sufficiently detailed for a
|
290 |
+
recipient of ordinary skill to be able to understand it.
|
291 |
+
.
|
292 |
+
5. Termination
|
293 |
+
--------------
|
294 |
+
.
|
295 |
+
5.1. The rights granted under this License will terminate automatically
|
296 |
+
if You fail to comply with any of its terms. However, if You become
|
297 |
+
compliant, then the rights granted under this License from a particular
|
298 |
+
Contributor are reinstated (a) provisionally, unless and until such
|
299 |
+
Contributor explicitly and finally terminates Your grants, and (b) on an
|
300 |
+
ongoing basis, if such Contributor fails to notify You of the
|
301 |
+
non-compliance by some reasonable means prior to 60 days after You have
|
302 |
+
come back into compliance. Moreover, Your grants from a particular
|
303 |
+
Contributor are reinstated on an ongoing basis if such Contributor
|
304 |
+
notifies You of the non-compliance by some reasonable means, this is the
|
305 |
+
first time You have received notice of non-compliance with this License
|
306 |
+
from such Contributor, and You become compliant prior to 30 days after
|
307 |
+
Your receipt of the notice.
|
308 |
+
.
|
309 |
+
5.2. If You initiate litigation against any entity by asserting a patent
|
310 |
+
infringement claim (excluding declaratory judgment actions,
|
311 |
+
counter-claims, and cross-claims) alleging that a Contributor Version
|
312 |
+
directly or indirectly infringes any patent, then the rights granted to
|
313 |
+
You by any and all Contributors for the Covered Software under Section
|
314 |
+
2.1 of this License shall terminate.
|
315 |
+
.
|
316 |
+
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
317 |
+
end user license agreements (excluding distributors and resellers) which
|
318 |
+
have been validly granted by You or Your distributors under this License
|
319 |
+
prior to termination shall survive termination.
|
320 |
+
.
|
321 |
+
************************************************************************
|
322 |
+
* *
|
323 |
+
* 6. Disclaimer of Warranty *
|
324 |
+
* ------------------------- *
|
325 |
+
* *
|
326 |
+
* Covered Software is provided under this License on an "as is" *
|
327 |
+
* basis, without warranty of any kind, either expressed, implied, or *
|
328 |
+
* statutory, including, without limitation, warranties that the *
|
329 |
+
* Covered Software is free of defects, merchantable, fit for a *
|
330 |
+
* particular purpose or non-infringing. The entire risk as to the *
|
331 |
+
* quality and performance of the Covered Software is with You. *
|
332 |
+
* Should any Covered Software prove defective in any respect, You *
|
333 |
+
* (not any Contributor) assume the cost of any necessary servicing, *
|
334 |
+
* repair, or correction. This disclaimer of warranty constitutes an *
|
335 |
+
* essential part of this License. No use of any Covered Software is *
|
336 |
+
* authorized under this License except under this disclaimer. *
|
337 |
+
* *
|
338 |
+
************************************************************************
|
339 |
+
.
|
340 |
+
************************************************************************
|
341 |
+
* *
|
342 |
+
* 7. Limitation of Liability *
|
343 |
+
* -------------------------- *
|
344 |
+
* *
|
345 |
+
* Under no circumstances and under no legal theory, whether tort *
|
346 |
+
* (including negligence), contract, or otherwise, shall any *
|
347 |
+
* Contributor, or anyone who distributes Covered Software as *
|
348 |
+
* permitted above, be liable to You for any direct, indirect, *
|
349 |
+
* special, incidental, or consequential damages of any character *
|
350 |
+
* including, without limitation, damages for lost profits, loss of *
|
351 |
+
* goodwill, work stoppage, computer failure or malfunction, or any *
|
352 |
+
* and all other commercial damages or losses, even if such party *
|
353 |
+
* shall have been informed of the possibility of such damages. This *
|
354 |
+
* limitation of liability shall not apply to liability for death or *
|
355 |
+
* personal injury resulting from such party's negligence to the *
|
356 |
+
* extent applicable law prohibits such limitation. Some *
|
357 |
+
* jurisdictions do not allow the exclusion or limitation of *
|
358 |
+
* incidental or consequential damages, so this exclusion and *
|
359 |
+
* limitation may not apply to You. *
|
360 |
+
* *
|
361 |
+
************************************************************************
|
362 |
+
.
|
363 |
+
8. Litigation
|
364 |
+
-------------
|
365 |
+
.
|
366 |
+
Any litigation relating to this License may be brought only in the
|
367 |
+
courts of a jurisdiction where the defendant maintains its principal
|
368 |
+
place of business and such litigation shall be governed by laws of that
|
369 |
+
jurisdiction, without reference to its conflict-of-law provisions.
|
370 |
+
Nothing in this Section shall prevent a party's ability to bring
|
371 |
+
cross-claims or counter-claims.
|
372 |
+
.
|
373 |
+
9. Miscellaneous
|
374 |
+
----------------
|
375 |
+
.
|
376 |
+
This License represents the complete agreement concerning the subject
|
377 |
+
matter hereof. If any provision of this License is held to be
|
378 |
+
unenforceable, such provision shall be reformed only to the extent
|
379 |
+
necessary to make it enforceable. Any law or regulation which provides
|
380 |
+
that the language of a contract shall be construed against the drafter
|
381 |
+
shall not be used to construe this License against a Contributor.
|
382 |
+
.
|
383 |
+
10. Versions of the License
|
384 |
+
---------------------------
|
385 |
+
.
|
386 |
+
10.1. New Versions
|
387 |
+
.
|
388 |
+
Mozilla Foundation is the license steward. Except as provided in Section
|
389 |
+
10.3, no one other than the license steward has the right to modify or
|
390 |
+
publish new versions of this License. Each version will be given a
|
391 |
+
distinguishing version number.
|
392 |
+
.
|
393 |
+
10.2. Effect of New Versions
|
394 |
+
.
|
395 |
+
You may distribute the Covered Software under the terms of the version
|
396 |
+
of the License under which You originally received the Covered Software,
|
397 |
+
or under the terms of any subsequent version published by the license
|
398 |
+
steward.
|
399 |
+
.
|
400 |
+
10.3. Modified Versions
|
401 |
+
.
|
402 |
+
If you create software not governed by this License, and you want to
|
403 |
+
create a new license for such software, you may create and use a
|
404 |
+
modified version of this License if you rename the license and remove
|
405 |
+
any references to the name of the license steward (except to note that
|
406 |
+
such modified license differs from this License).
|
407 |
+
.
|
408 |
+
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
409 |
+
Licenses
|
410 |
+
.
|
411 |
+
If You choose to distribute Source Code Form that is Incompatible With
|
412 |
+
Secondary Licenses under the terms of this version of the License, the
|
413 |
+
notice described in Exhibit B of this License must be attached.
|
414 |
+
.
|
415 |
+
Exhibit A - Source Code Form License Notice
|
416 |
+
-------------------------------------------
|
417 |
+
.
|
418 |
+
This Source Code Form is subject to the terms of the Mozilla Public
|
419 |
+
License, v. 2.0. If a copy of the MPL was not distributed with this
|
420 |
+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
421 |
+
.
|
422 |
+
If it is not possible or desirable to put the notice in a particular
|
423 |
+
file, then You may include the notice in a location (such as a LICENSE
|
424 |
+
file in a relevant directory) where a recipient would be likely to look
|
425 |
+
for such a notice.
|
426 |
+
.
|
427 |
+
You may add additional accurate notices of copyright ownership.
|
428 |
+
.
|
429 |
+
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
430 |
+
---------------------------------------------------------
|
431 |
+
.
|
432 |
+
This Source Code Form is "Incompatible With Secondary Licenses", as
|
433 |
+
defined by the Mozilla Public License, v. 2.0.
|
app/code/community/Webinterpret/Connector/Lib/composer/autoload_classmap.php
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// autoload_classmap.php @generated by Composer
|
4 |
+
|
5 |
+
$vendorDir = dirname(dirname(__FILE__));
|
6 |
+
$baseDir = dirname($vendorDir);
|
7 |
+
|
8 |
+
return array(
|
9 |
+
);
|
app/code/community/Webinterpret/Connector/Lib/composer/autoload_namespaces.php
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// autoload_namespaces.php @generated by Composer
|
4 |
+
|
5 |
+
$vendorDir = dirname(dirname(__FILE__));
|
6 |
+
$baseDir = dirname($vendorDir);
|
7 |
+
|
8 |
+
return array(
|
9 |
+
'MaxMind' => array($vendorDir . '/maxmind-db/reader/src'),
|
10 |
+
'Buzz' => array($vendorDir . '/kriswallsmith/buzz/lib'),
|
11 |
+
);
|
app/code/community/Webinterpret/Connector/Lib/composer/autoload_psr4.php
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// autoload_psr4.php @generated by Composer
|
4 |
+
|
5 |
+
$vendorDir = dirname(dirname(__FILE__));
|
6 |
+
$baseDir = dirname($vendorDir);
|
7 |
+
|
8 |
+
return array(
|
9 |
+
'MaxMind\\' => array($vendorDir . '/maxmind/web-service-common/src'),
|
10 |
+
'GeoIp2\\' => array($vendorDir . '/geoip2/geoip2/src'),
|
11 |
+
'Composer\\CaBundle\\' => array($vendorDir . '/composer/ca-bundle/src'),
|
12 |
+
);
|
app/code/community/Webinterpret/Connector/Lib/composer/autoload_real.php
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// autoload_real.php @generated by Composer
|
4 |
+
|
5 |
+
class ComposerAutoloaderInit6212b1904c1c4e85b10547bad70ddde1
|
6 |
+
{
|
7 |
+
private static $loader;
|
8 |
+
|
9 |
+
public static function loadClassLoader($class)
|
10 |
+
{
|
11 |
+
if ('Composer\Autoload\ClassLoader' === $class) {
|
12 |
+
require __DIR__ . '/ClassLoader.php';
|
13 |
+
}
|
14 |
+
}
|
15 |
+
|
16 |
+
public static function getLoader()
|
17 |
+
{
|
18 |
+
if (null !== self::$loader) {
|
19 |
+
return self::$loader;
|
20 |
+
}
|
21 |
+
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit6212b1904c1c4e85b10547bad70ddde1', 'loadClassLoader'), true, true);
|
23 |
+
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit6212b1904c1c4e85b10547bad70ddde1', 'loadClassLoader'));
|
25 |
+
|
26 |
+
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
+
foreach ($map as $namespace => $path) {
|
28 |
+
$loader->set($namespace, $path);
|
29 |
+
}
|
30 |
+
|
31 |
+
$map = require __DIR__ . '/autoload_psr4.php';
|
32 |
+
foreach ($map as $namespace => $path) {
|
33 |
+
$loader->setPsr4($namespace, $path);
|
34 |
+
}
|
35 |
+
|
36 |
+
$classMap = require __DIR__ . '/autoload_classmap.php';
|
37 |
+
if ($classMap) {
|
38 |
+
$loader->addClassMap($classMap);
|
39 |
+
}
|
40 |
+
|
41 |
+
$loader->register(true);
|
42 |
+
|
43 |
+
return $loader;
|
44 |
+
}
|
45 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/LICENSE
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Copyright (C) 2016 Composer
|
2 |
+
|
3 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4 |
+
this software and associated documentation files (the "Software"), to deal in
|
5 |
+
the Software without restriction, including without limitation the rights to
|
6 |
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
7 |
+
of the Software, and to permit persons to whom the Software is furnished to do
|
8 |
+
so, subject to the following conditions:
|
9 |
+
|
10 |
+
The above copyright notice and this permission notice shall be included in all
|
11 |
+
copies or substantial portions of the Software.
|
12 |
+
|
13 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19 |
+
SOFTWARE.
|
app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/README.md
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
composer/ca-bundle
|
2 |
+
==================
|
3 |
+
|
4 |
+
Small utility library that lets you find a path to the system CA bundle,
|
5 |
+
and includes a fallback to the Mozilla CA bundle.
|
6 |
+
|
7 |
+
Originally written as part of [composer/composer](https://github.com/composer/composer),
|
8 |
+
now extracted and made available as a stand-alone library.
|
9 |
+
|
10 |
+
|
11 |
+
Installation
|
12 |
+
------------
|
13 |
+
|
14 |
+
Install the latest version with:
|
15 |
+
|
16 |
+
```bash
|
17 |
+
$ composer require composer/ca-bundle
|
18 |
+
```
|
19 |
+
|
20 |
+
|
21 |
+
Requirements
|
22 |
+
------------
|
23 |
+
|
24 |
+
* PHP 5.3.2 is required but using the latest version of PHP is highly recommended.
|
25 |
+
|
26 |
+
|
27 |
+
Basic usage
|
28 |
+
-----------
|
29 |
+
|
30 |
+
# `Composer\CaBundle\CaBundle`
|
31 |
+
|
32 |
+
- `CaBundle::getSystemCaRootBundlePath()`: Returns the system CA bundle path, or a path to the bundled one as fallback
|
33 |
+
- `CaBundle::getBundledCaBundlePath()`: Returns the path to the bundled CA file
|
34 |
+
- `CaBundle::validateCaFile($filename)`: Validates a CA file using opensl_x509_parse only if it is safe to use
|
35 |
+
- `CaBundle::isOpensslParseSafe()`: Test if it is safe to use the PHP function openssl_x509_parse()
|
36 |
+
- `CaBundle::reset()`: Resets the static caches
|
37 |
+
|
38 |
+
|
39 |
+
## To use with curl
|
40 |
+
|
41 |
+
```php
|
42 |
+
$curl = curl_init("https://example.org/");
|
43 |
+
curl_setopt($curl, CURLOPT_CAINFO, \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath());
|
44 |
+
$result = curl_exec($curl);
|
45 |
+
```
|
46 |
+
|
47 |
+
## To use with php streams
|
48 |
+
|
49 |
+
```php
|
50 |
+
$opts = array(
|
51 |
+
'http' => array(
|
52 |
+
'method' => "GET"
|
53 |
+
)
|
54 |
+
);
|
55 |
+
|
56 |
+
$caPath = \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath();
|
57 |
+
if (is_dir($caPath)) {
|
58 |
+
$opts['ssl']['capath'] = $caPath;
|
59 |
+
} else {
|
60 |
+
$opts['ssl']['cafile'] = $caPath;
|
61 |
+
}
|
62 |
+
|
63 |
+
$context = stream_context_create($opts);
|
64 |
+
$result = file_get_contents('https://example.com', false, $context);
|
65 |
+
```
|
66 |
+
|
67 |
+
License
|
68 |
+
-------
|
69 |
+
|
70 |
+
composer/ca-bundle is licensed under the MIT License, see the LICENSE file for details.
|
app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/composer.json
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "composer/ca-bundle",
|
3 |
+
"description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
|
4 |
+
"type": "library",
|
5 |
+
"license": "MIT",
|
6 |
+
"keywords": [
|
7 |
+
"cabundle",
|
8 |
+
"cacert",
|
9 |
+
"certificate",
|
10 |
+
"ssl",
|
11 |
+
"tls"
|
12 |
+
],
|
13 |
+
"authors": [
|
14 |
+
{
|
15 |
+
"name": "Jordi Boggiano",
|
16 |
+
"email": "j.boggiano@seld.be",
|
17 |
+
"homepage": "http://seld.be"
|
18 |
+
}
|
19 |
+
],
|
20 |
+
"support": {
|
21 |
+
"irc": "irc://irc.freenode.org/composer",
|
22 |
+
"issues": "https://github.com/composer/ca-bundle/issues"
|
23 |
+
},
|
24 |
+
"require": {
|
25 |
+
"ext-openssl": "*",
|
26 |
+
"ext-pcre": "*",
|
27 |
+
"php": "^5.3.2 || ^7.0"
|
28 |
+
},
|
29 |
+
"require-dev": {
|
30 |
+
"psr/log": "^1.0",
|
31 |
+
"symfony/process": "^2.5 || ^3.0"
|
32 |
+
},
|
33 |
+
"suggest": {
|
34 |
+
"symfony/process": "This is necessary to reliably check whether openssl_x509_parse is vulnerable on older php versions, but can be ignored on PHP 5.5.6+"
|
35 |
+
},
|
36 |
+
"autoload": {
|
37 |
+
"psr-4": {
|
38 |
+
"Composer\\CaBundle\\": "src"
|
39 |
+
}
|
40 |
+
},
|
41 |
+
"autoload-dev": {
|
42 |
+
"psr-4": {
|
43 |
+
"Composer\\CaBundle\\": "tests"
|
44 |
+
}
|
45 |
+
},
|
46 |
+
"extra": {
|
47 |
+
"branch-alias": {
|
48 |
+
"dev-master": "1.x-dev"
|
49 |
+
}
|
50 |
+
}
|
51 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/res/cacert.pem
ADDED
@@ -0,0 +1,3884 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
##
|
2 |
+
## Bundle of CA Root Certificates
|
3 |
+
##
|
4 |
+
## Certificate data from Mozilla as of: Wed Apr 20 03:12:05 2016
|
5 |
+
##
|
6 |
+
## This is a bundle of X.509 certificates of public Certificate Authorities
|
7 |
+
## (CA). These were automatically extracted from Mozilla's root certificates
|
8 |
+
## file (certdata.txt). This file can be found in the mozilla source tree:
|
9 |
+
## http://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt
|
10 |
+
##
|
11 |
+
## It contains the certificates in PEM format and therefore
|
12 |
+
## can be directly used with curl / libcurl / php_curl, or with
|
13 |
+
## an Apache+mod_ssl webserver for SSL client authentication.
|
14 |
+
## Just configure this file as the SSLCACertificateFile.
|
15 |
+
##
|
16 |
+
## Conversion done with mk-ca-bundle.pl version 1.25.
|
17 |
+
## SHA1: 5df367cda83086392e1acdf22bfef00c48d5eba6
|
18 |
+
##
|
19 |
+
|
20 |
+
Equifax Secure CA
|
21 |
+
=================
|
22 |
+
-----BEGIN CERTIFICATE-----
|
23 |
+
MIIDIDCCAomgAwIBAgIENd70zzANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJVUzEQMA4GA1UE
|
24 |
+
ChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5
|
25 |
+
MB4XDTk4MDgyMjE2NDE1MVoXDTE4MDgyMjE2NDE1MVowTjELMAkGA1UEBhMCVVMxEDAOBgNVBAoT
|
26 |
+
B0VxdWlmYXgxLTArBgNVBAsTJEVxdWlmYXggU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eTCB
|
27 |
+
nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAwV2xWGcIYu6gmi0fCG2RFGiYCh7+2gRvE4RiIcPR
|
28 |
+
fM6fBeC4AfBONOziipUEZKzxa1NfBbPLZ4C/QgKO/t0BCezhABRP/PvwDN1Dulsr4R+AcJkVV5MW
|
29 |
+
8Q+XarfCaCMczE1ZMKxRHjuvK9buY0V7xdlfUNLjUA86iOe/FP3gx7kCAwEAAaOCAQkwggEFMHAG
|
30 |
+
A1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEQMA4GA1UEChMHRXF1aWZheDEtMCsGA1UE
|
31 |
+
CxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMBoG
|
32 |
+
A1UdEAQTMBGBDzIwMTgwODIyMTY0MTUxWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUSOZo+SvS
|
33 |
+
spXXR9gjIBBPM5iQn9QwHQYDVR0OBBYEFEjmaPkr0rKV10fYIyAQTzOYkJ/UMAwGA1UdEwQFMAMB
|
34 |
+
Af8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUAA4GBAFjOKer89961
|
35 |
+
zgK5F7WF0bnj4JXMJTENAKaSbn+2kmOeUJXRmm/kEd5jhW6Y7qj/WsjTVbJmcVfewCHrPSqnI0kB
|
36 |
+
BIZCe/zuf6IWUrVnZ9NA2zsmWLIodz2uFHdh1voqZiegDfqnc1zqcPGUIWVEX/r87yloqaKHee95
|
37 |
+
70+sB3c4
|
38 |
+
-----END CERTIFICATE-----
|
39 |
+
|
40 |
+
GlobalSign Root CA
|
41 |
+
==================
|
42 |
+
-----BEGIN CERTIFICATE-----
|
43 |
+
MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkGA1UEBhMCQkUx
|
44 |
+
GTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkds
|
45 |
+
b2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAwMDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNV
|
46 |
+
BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYD
|
47 |
+
VQQDExJHbG9iYWxTaWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDa
|
48 |
+
DuaZjc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavpxy0Sy6sc
|
49 |
+
THAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp1Wrjsok6Vjk4bwY8iGlb
|
50 |
+
Kk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdGsnUOhugZitVtbNV4FpWi6cgKOOvyJBNP
|
51 |
+
c1STE4U6G7weNLWLBYy5d4ux2x8gkasJU26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrX
|
52 |
+
gzT/LCrBbBlDSgeF59N89iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV
|
53 |
+
HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0BAQUF
|
54 |
+
AAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOzyj1hTdNGCbM+w6Dj
|
55 |
+
Y1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE38NflNUVyRRBnMRddWQVDf9VMOyG
|
56 |
+
j/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymPAbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhH
|
57 |
+
hm4qxFYxldBniYUr+WymXUadDKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveC
|
58 |
+
X4XSQRjbgbMEHMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A==
|
59 |
+
-----END CERTIFICATE-----
|
60 |
+
|
61 |
+
GlobalSign Root CA - R2
|
62 |
+
=======================
|
63 |
+
-----BEGIN CERTIFICATE-----
|
64 |
+
MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4GA1UECxMXR2xv
|
65 |
+
YmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh
|
66 |
+
bFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT
|
67 |
+
aWduIFJvb3QgQ0EgLSBSMjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln
|
68 |
+
bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6
|
69 |
+
ErPLv4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8eoLrvozp
|
70 |
+
s6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklqtTleiDTsvHgMCJiEbKjN
|
71 |
+
S7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzdC9XZzPnqJworc5HGnRusyMvo4KD0L5CL
|
72 |
+
TfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pazq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6C
|
73 |
+
ygPCm48CAwEAAaOBnDCBmTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E
|
74 |
+
FgQUm+IHV2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nbG9i
|
75 |
+
YWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG3lm0mi3f3BmGLjAN
|
76 |
+
BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp
|
77 |
+
9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu
|
78 |
+
01yiPqFbQfXf5WRDLenVOavSot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG7
|
79 |
+
9G+dwfCMNYxdAfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7
|
80 |
+
TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg==
|
81 |
+
-----END CERTIFICATE-----
|
82 |
+
|
83 |
+
Verisign Class 3 Public Primary Certification Authority - G3
|
84 |
+
============================================================
|
85 |
+
-----BEGIN CERTIFICATE-----
|
86 |
+
MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV
|
87 |
+
UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
|
88 |
+
cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
|
89 |
+
IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh
|
90 |
+
dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw
|
91 |
+
CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy
|
92 |
+
dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv
|
93 |
+
cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkg
|
94 |
+
Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
|
95 |
+
ggEBAMu6nFL8eB8aHm8bN3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1
|
96 |
+
EUGO+i2tKmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGukxUc
|
97 |
+
cLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBmCC+Vk7+qRy+oRpfw
|
98 |
+
EuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJXwzw3sJ2zq/3avL6QaaiMxTJ5Xpj
|
99 |
+
055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWuimi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA
|
100 |
+
ERSWwauSCPc/L8my/uRan2Te2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5f
|
101 |
+
j267Cz3qWhMeDGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC
|
102 |
+
/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565pF4ErWjfJXir0
|
103 |
+
xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGtTxzhT5yvDwyd93gN2PQ1VoDa
|
104 |
+
t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ==
|
105 |
+
-----END CERTIFICATE-----
|
106 |
+
|
107 |
+
Entrust.net Premium 2048 Secure Server CA
|
108 |
+
=========================================
|
109 |
+
-----BEGIN CERTIFICATE-----
|
110 |
+
MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChMLRW50cnVzdC5u
|
111 |
+
ZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBpbmNvcnAuIGJ5IHJlZi4gKGxp
|
112 |
+
bWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNV
|
113 |
+
BAMTKkVudHJ1c3QubmV0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQx
|
114 |
+
NzUwNTFaFw0yOTA3MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3
|
115 |
+
d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTEl
|
116 |
+
MCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5u
|
117 |
+
ZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
|
118 |
+
MIIBCgKCAQEArU1LqRKGsuqjIAcVFmQqK0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOL
|
119 |
+
Gp18EzoOH1u3Hs/lJBQesYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSr
|
120 |
+
hRSGlVuXMlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVTXTzW
|
121 |
+
nLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/HoZdenoVve8AjhUi
|
122 |
+
VBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH4QIDAQABo0IwQDAOBgNVHQ8BAf8E
|
123 |
+
BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJ
|
124 |
+
KoZIhvcNAQEFBQADggEBADubj1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPy
|
125 |
+
T/4xmf3IDExoU8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf
|
126 |
+
zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5bu/8j72gZyxKT
|
127 |
+
J1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+bYQLCIt+jerXmCHG8+c8eS9e
|
128 |
+
nNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/ErfF6adulZkMV8gzURZVE=
|
129 |
+
-----END CERTIFICATE-----
|
130 |
+
|
131 |
+
Baltimore CyberTrust Root
|
132 |
+
=========================
|
133 |
+
-----BEGIN CERTIFICATE-----
|
134 |
+
MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE
|
135 |
+
ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li
|
136 |
+
ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC
|
137 |
+
SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs
|
138 |
+
dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME
|
139 |
+
uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB
|
140 |
+
UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C
|
141 |
+
G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9
|
142 |
+
XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr
|
143 |
+
l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI
|
144 |
+
VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB
|
145 |
+
BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh
|
146 |
+
cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5
|
147 |
+
hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa
|
148 |
+
Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H
|
149 |
+
RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp
|
150 |
+
-----END CERTIFICATE-----
|
151 |
+
|
152 |
+
AddTrust Low-Value Services Root
|
153 |
+
================================
|
154 |
+
-----BEGIN CERTIFICATE-----
|
155 |
+
MIIEGDCCAwCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
|
156 |
+
QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYDVQQDExhBZGRU
|
157 |
+
cnVzdCBDbGFzcyAxIENBIFJvb3QwHhcNMDAwNTMwMTAzODMxWhcNMjAwNTMwMTAzODMxWjBlMQsw
|
158 |
+
CQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBO
|
159 |
+
ZXR3b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwggEiMA0GCSqGSIb3DQEB
|
160 |
+
AQUAA4IBDwAwggEKAoIBAQCWltQhSWDia+hBBwzexODcEyPNwTXH+9ZOEQpnXvUGW2ulCDtbKRY6
|
161 |
+
54eyNAbFvAWlA3yCyykQruGIgb3WntP+LVbBFc7jJp0VLhD7Bo8wBN6ntGO0/7Gcrjyvd7ZWxbWr
|
162 |
+
oulpOj0OM3kyP3CCkplhbY0wCI9xP6ZIVxn4JdxLZlyldI+Yrsj5wAYi56xz36Uu+1LcsRVlIPo1
|
163 |
+
Zmne3yzxbrww2ywkEtvrNTVokMsAsJchPXQhI2U0K7t4WaPW4XY5mqRJjox0r26kmqPZm9I4XJui
|
164 |
+
GMx1I4S+6+JNM3GOGvDC+Mcdoq0Dlyz4zyXG9rgkMbFjXZJ/Y/AlyVMuH79NAgMBAAGjgdIwgc8w
|
165 |
+
HQYDVR0OBBYEFJWxtPCUtr3H2tERCSG+wa9J/RB7MAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8EBTAD
|
166 |
+
AQH/MIGPBgNVHSMEgYcwgYSAFJWxtPCUtr3H2tERCSG+wa9J/RB7oWmkZzBlMQswCQYDVQQGEwJT
|
167 |
+
RTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEw
|
168 |
+
HwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBACxt
|
169 |
+
ZBsfzQ3duQH6lmM0MkhHma6X7f1yFqZzR1r0693p9db7RcwpiURdv0Y5PejuvE1Uhh4dbOMXJ0Ph
|
170 |
+
iVYrqW9yTkkz43J8KiOavD7/KCrto/8cI7pDVwlnTUtiBi34/2ydYB7YHEt9tTEv2dB8Xfjea4MY
|
171 |
+
eDdXL+gzB2ffHsdrKpV2ro9Xo/D0UrSpUwjP4E/TelOL/bscVjby/rK25Xa71SJlpz/+0WatC7xr
|
172 |
+
mYbvP33zGDLKe8bjq2RGlfgmadlVg3sslgf/WSxEo8bl6ancoWOAWiFeIc9TVPC6b4nbqKqVz4vj
|
173 |
+
ccweGyBECMB6tkD9xOQ14R0WHNC8K47Wcdk=
|
174 |
+
-----END CERTIFICATE-----
|
175 |
+
|
176 |
+
AddTrust External Root
|
177 |
+
======================
|
178 |
+
-----BEGIN CERTIFICATE-----
|
179 |
+
MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
|
180 |
+
QWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYD
|
181 |
+
VQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEw
|
182 |
+
NDgzOFowbzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRU
|
183 |
+
cnVzdCBFeHRlcm5hbCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0Eg
|
184 |
+
Um9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvtH7xsD821
|
185 |
+
+iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9uMq/NzgtHj6RQa1wVsfw
|
186 |
+
Tz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzXmk6vBbOmcZSccbNQYArHE504B4YCqOmo
|
187 |
+
aSYYkKtMsE8jqzpPhNjfzp/haW+710LXa0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy
|
188 |
+
2xSoRcRdKn23tNbE7qzNE0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv7
|
189 |
+
7+ldU9U0WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYDVR0P
|
190 |
+
BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0Jvf6xCZU7wO94CTL
|
191 |
+
VBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRk
|
192 |
+
VHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENB
|
193 |
+
IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZl
|
194 |
+
j7DYd7usQWxHYINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5
|
195 |
+
6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvCNr4TDea9Y355
|
196 |
+
e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEXc4g/VhsxOBi0cQ+azcgOno4u
|
197 |
+
G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ=
|
198 |
+
-----END CERTIFICATE-----
|
199 |
+
|
200 |
+
AddTrust Public Services Root
|
201 |
+
=============================
|
202 |
+
-----BEGIN CERTIFICATE-----
|
203 |
+
MIIEFTCCAv2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
|
204 |
+
QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSAwHgYDVQQDExdBZGRU
|
205 |
+
cnVzdCBQdWJsaWMgQ0EgUm9vdDAeFw0wMDA1MzAxMDQxNTBaFw0yMDA1MzAxMDQxNTBaMGQxCzAJ
|
206 |
+
BgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5l
|
207 |
+
dHdvcmsxIDAeBgNVBAMTF0FkZFRydXN0IFB1YmxpYyBDQSBSb290MIIBIjANBgkqhkiG9w0BAQEF
|
208 |
+
AAOCAQ8AMIIBCgKCAQEA6Rowj4OIFMEg2Dybjxt+A3S72mnTRqX4jsIMEZBRpS9mVEBV6tsfSlbu
|
209 |
+
nyNu9DnLoblv8n75XYcmYZ4c+OLspoH4IcUkzBEMP9smcnrHAZcHF/nXGCwwfQ56HmIexkvA/X1i
|
210 |
+
d9NEHif2P0tEs7c42TkfYNVRknMDtABp4/MUTu7R3AnPdzRGULD4EfL+OHn3Bzn+UZKXC1sIXzSG
|
211 |
+
Aa2Il+tmzV7R/9x98oTaunet3IAIx6eH1lWfl2royBFkuucZKT8Rs3iQhCBSWxHveNCD9tVIkNAw
|
212 |
+
HM+A+WD+eeSI8t0A65RF62WUaUC6wNW0uLp9BBGo6zEFlpROWCGOn9Bg/QIDAQABo4HRMIHOMB0G
|
213 |
+
A1UdDgQWBBSBPjfYkrAfd59ctKtzquf2NGAv+jALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB
|
214 |
+
/zCBjgYDVR0jBIGGMIGDgBSBPjfYkrAfd59ctKtzquf2NGAv+qFopGYwZDELMAkGA1UEBhMCU0Ux
|
215 |
+
FDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29yazEgMB4G
|
216 |
+
A1UEAxMXQWRkVHJ1c3QgUHVibGljIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBAAP3FUr4
|
217 |
+
JNojVhaTdt02KLmuG7jD8WS6IBh4lSknVwW8fCr0uVFV2ocC3g8WFzH4qnkuCRO7r7IgGRLlk/lL
|
218 |
+
+YPoRNWyQSW/iHVv/xD8SlTQX/D67zZzfRs2RcYhbbQVuE7PnFylPVoAjgbjPGsye/Kf8Lb93/Ao
|
219 |
+
GEjwxrzQvzSAlsJKsW2Ox5BF3i9nrEUEo3rcVZLJR2bYGozH7ZxOmuASu7VqTITh4SINhwBk/ox9
|
220 |
+
Yjllpu9CtoAlEmEBqCQTcAARJl/6NVDFSMwGR+gn2HCNX2TmoUQmXiLsks3/QppEIW1cxeMiHV9H
|
221 |
+
EufOX1362KqxMy3ZdvJOOjMMK7MtkAY=
|
222 |
+
-----END CERTIFICATE-----
|
223 |
+
|
224 |
+
AddTrust Qualified Certificates Root
|
225 |
+
====================================
|
226 |
+
-----BEGIN CERTIFICATE-----
|
227 |
+
MIIEHjCCAwagAwIBAgIBATANBgkqhkiG9w0BAQUFADBnMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
|
228 |
+
QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSMwIQYDVQQDExpBZGRU
|
229 |
+
cnVzdCBRdWFsaWZpZWQgQ0EgUm9vdDAeFw0wMDA1MzAxMDQ0NTBaFw0yMDA1MzAxMDQ0NTBaMGcx
|
230 |
+
CzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQ
|
231 |
+
IE5ldHdvcmsxIzAhBgNVBAMTGkFkZFRydXN0IFF1YWxpZmllZCBDQSBSb290MIIBIjANBgkqhkiG
|
232 |
+
9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5B6a/twJWoekn0e+EV+vhDTbYjx5eLfpMLXsDBwqxBb/4Oxx
|
233 |
+
64r1EW7tTw2R0hIYLUkVAcKkIhPHEWT/IhKauY5cLwjPcWqzZwFZ8V1G87B4pfYOQnrjfxvM0PC3
|
234 |
+
KP0q6p6zsLkEqv32x7SxuCqg+1jxGaBvcCV+PmlKfw8i2O+tCBGaKZnhqkRFmhJePp1tUvznoD1o
|
235 |
+
L/BLcHwTOK28FSXx1s6rosAx1i+f4P8UWfyEk9mHfExUE+uf0S0R+Bg6Ot4l2ffTQO2kBhLEO+GR
|
236 |
+
wVY18BTcZTYJbqukB8c10cIDMzZbdSZtQvESa0NvS3GU+jQd7RNuyoB/mC9suWXY6QIDAQABo4HU
|
237 |
+
MIHRMB0GA1UdDgQWBBQ5lYtii1zJ1IC6WA+XPxUIQ8yYpzALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/
|
238 |
+
BAUwAwEB/zCBkQYDVR0jBIGJMIGGgBQ5lYtii1zJ1IC6WA+XPxUIQ8yYp6FrpGkwZzELMAkGA1UE
|
239 |
+
BhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29y
|
240 |
+
azEjMCEGA1UEAxMaQWRkVHJ1c3QgUXVhbGlmaWVkIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQAD
|
241 |
+
ggEBABmrder4i2VhlRO6aQTvhsoToMeqT2QbPxj2qC0sVY8FtzDqQmodwCVRLae/DLPt7wh/bDxG
|
242 |
+
GuoYQ992zPlmhpwsaPXpF/gxsxjE1kh9I0xowX67ARRvxdlu3rsEQmr49lx95dr6h+sNNVJn0J6X
|
243 |
+
dgWTP5XHAeZpVTh/EGGZyeNfpso+gmNIquIISD6q8rKFYqa0p9m9N5xotS1WfbC3P6CxB9bpT9ze
|
244 |
+
RXEwMn8bLgn5v1Kh7sKAPgZcLlVAwRv1cEWw3F369nJad9Jjzc9YiQBCYz95OdBEsIJuQRno3eDB
|
245 |
+
iFrRHnGTHyQwdOUeqN48Jzd/g66ed8/wMLH/S5noxqE=
|
246 |
+
-----END CERTIFICATE-----
|
247 |
+
|
248 |
+
Entrust Root Certification Authority
|
249 |
+
====================================
|
250 |
+
-----BEGIN CERTIFICATE-----
|
251 |
+
MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMCVVMxFjAUBgNV
|
252 |
+
BAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0Lm5ldC9DUFMgaXMgaW5jb3Jw
|
253 |
+
b3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMWKGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsG
|
254 |
+
A1UEAxMkRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0
|
255 |
+
MloXDTI2MTEyNzIwNTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMu
|
256 |
+
MTkwNwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSByZWZlcmVu
|
257 |
+
Y2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNVBAMTJEVudHJ1c3QgUm9v
|
258 |
+
dCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
|
259 |
+
ALaVtkNC+sZtKm9I35RMOVcF7sN5EUFoNu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYsz
|
260 |
+
A9u3g3s+IIRe7bJWKKf44LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOww
|
261 |
+
Cj0Yzfv9KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGIrb68
|
262 |
+
j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi94DkZfs0Nw4pgHBN
|
263 |
+
rziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOBsDCBrTAOBgNVHQ8BAf8EBAMCAQYw
|
264 |
+
DwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAigA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1
|
265 |
+
MzQyWjAfBgNVHSMEGDAWgBRokORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DH
|
266 |
+
hmak8fdLQ/uEvW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA
|
267 |
+
A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9tO1KzKtvn1ISM
|
268 |
+
Y/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6ZuaAGAT/3B+XxFNSRuzFVJ7yVTa
|
269 |
+
v52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTS
|
270 |
+
W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0
|
271 |
+
tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8
|
272 |
+
-----END CERTIFICATE-----
|
273 |
+
|
274 |
+
RSA Security 2048 v3
|
275 |
+
====================
|
276 |
+
-----BEGIN CERTIFICATE-----
|
277 |
+
MIIDYTCCAkmgAwIBAgIQCgEBAQAAAnwAAAAKAAAAAjANBgkqhkiG9w0BAQUFADA6MRkwFwYDVQQK
|
278 |
+
ExBSU0EgU2VjdXJpdHkgSW5jMR0wGwYDVQQLExRSU0EgU2VjdXJpdHkgMjA0OCBWMzAeFw0wMTAy
|
279 |
+
MjIyMDM5MjNaFw0yNjAyMjIyMDM5MjNaMDoxGTAXBgNVBAoTEFJTQSBTZWN1cml0eSBJbmMxHTAb
|
280 |
+
BgNVBAsTFFJTQSBTZWN1cml0eSAyMDQ4IFYzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC
|
281 |
+
AQEAt49VcdKA3XtpeafwGFAyPGJn9gqVB93mG/Oe2dJBVGutn3y+Gc37RqtBaB4Y6lXIL5F4iSj7
|
282 |
+
Jylg/9+PjDvJSZu1pJTOAeo+tWN7fyb9Gd3AIb2E0S1PRsNO3Ng3OTsor8udGuorryGlwSMiuLgb
|
283 |
+
WhOHV4PR8CDn6E8jQrAApX2J6elhc5SYcSa8LWrg903w8bYqODGBDSnhAMFRD0xS+ARaqn1y07iH
|
284 |
+
KrtjEAMqs6FPDVpeRrc9DvV07Jmf+T0kgYim3WBU6JU2PcYJk5qjEoAAVZkZR73QpXzDuvsf9/UP
|
285 |
+
+Ky5tfQ3mBMY3oVbtwyCO4dvlTlYMNpuAWgXIszACwIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/
|
286 |
+
MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQHw1EwpKrpRa41JPr/JCwz0LGdjDAdBgNVHQ4E
|
287 |
+
FgQUB8NRMKSq6UWuNST6/yQsM9CxnYwwDQYJKoZIhvcNAQEFBQADggEBAF8+hnZuuDU8TjYcHnmY
|
288 |
+
v/3VEhF5Ug7uMYm83X/50cYVIeiKAVQNOvtUudZj1LGqlk2iQk3UUx+LEN5/Zb5gEydxiKRz44Rj
|
289 |
+
0aRV4VCT5hsOedBnvEbIvz8XDZXmxpBp3ue0L96VfdASPz0+f00/FGj1EVDVwfSQpQgdMWD/YIwj
|
290 |
+
VAqv/qFuxdF6Kmh4zx6CCiC0H63lhbJqaHVOrSU3lIW+vaHU6rcMSzyd6BIA8F+sDeGscGNz9395
|
291 |
+
nzIlQnQFgCi/vcEkllgVsRch6YlL2weIZ/QVrXA+L02FO8K32/6YaCOJ4XQP3vTFhGMpG8zLB8kA
|
292 |
+
pKnXwiJPZ9d37CAFYd4=
|
293 |
+
-----END CERTIFICATE-----
|
294 |
+
|
295 |
+
GeoTrust Global CA
|
296 |
+
==================
|
297 |
+
-----BEGIN CERTIFICATE-----
|
298 |
+
MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQK
|
299 |
+
Ew1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9iYWwgQ0EwHhcNMDIwNTIxMDQw
|
300 |
+
MDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j
|
301 |
+
LjEbMBkGA1UEAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
302 |
+
CgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjo
|
303 |
+
BbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDviS2Aelet
|
304 |
+
8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU1XupGc1V3sjs0l44U+Vc
|
305 |
+
T4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagU
|
306 |
+
vTLrGAMoUgRx5aszPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTAD
|
307 |
+
AQH/MB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVk
|
308 |
+
DBF9qn1luMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKInZ57Q
|
309 |
+
zxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfStQWVYrmm3ok9Nns4
|
310 |
+
d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcFPseKUgzbFbS9bZvlxrFUaKnjaZC2
|
311 |
+
mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Unhw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6p
|
312 |
+
XE0zX5IJL4hmXXeXxx12E6nV5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvm
|
313 |
+
Mw==
|
314 |
+
-----END CERTIFICATE-----
|
315 |
+
|
316 |
+
GeoTrust Global CA 2
|
317 |
+
====================
|
318 |
+
-----BEGIN CERTIFICATE-----
|
319 |
+
MIIDZjCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN
|
320 |
+
R2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwHhcNMDQwMzA0MDUw
|
321 |
+
MDAwWhcNMTkwMzA0MDUwMDAwWjBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j
|
322 |
+
LjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
|
323 |
+
ggEKAoIBAQDvPE1APRDfO1MA4Wf+lGAVPoWI8YkNkMgoI5kF6CsgncbzYEbYwbLVjDHZ3CB5JIG/
|
324 |
+
NTL8Y2nbsSpr7iFY8gjpeMtvy/wWUsiRxP89c96xPqfCfWbB9X5SJBri1WeR0IIQ13hLTytCOb1k
|
325 |
+
LUCgsBDTOEhGiKEMuzozKmKY+wCdE1l/bztyqu6mD4b5BWHqZ38MN5aL5mkWRxHCJ1kDs6ZgwiFA
|
326 |
+
Vvqgx306E+PsV8ez1q6diYD3Aecs9pYrEw15LNnA5IZ7S4wMcoKK+xfNAGw6EzywhIdLFnopsk/b
|
327 |
+
HdQL82Y3vdj2V7teJHq4PIu5+pIaGoSe2HSPqht/XvT+RSIhAgMBAAGjYzBhMA8GA1UdEwEB/wQF
|
328 |
+
MAMBAf8wHQYDVR0OBBYEFHE4NvICMVNHK266ZUapEBVYIAUJMB8GA1UdIwQYMBaAFHE4NvICMVNH
|
329 |
+
K266ZUapEBVYIAUJMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQUFAAOCAQEAA/e1K6tdEPx7
|
330 |
+
srJerJsOflN4WT5CBP51o62sgU7XAotexC3IUnbHLB/8gTKY0UvGkpMzNTEv/NgdRN3ggX+d6Yvh
|
331 |
+
ZJFiCzkIjKx0nVnZellSlxG5FntvRdOW2TF9AjYPnDtuzywNA0ZF66D0f0hExghAzN4bcLUprbqL
|
332 |
+
OzRldRtxIR0sFAqwlpW41uryZfspuk/qkZN0abby/+Ea0AzRdoXLiiW9l14sbxWZJue2Kf8i7MkC
|
333 |
+
x1YAzUm5s2x7UwQa4qjJqhIFI8LO57sEAszAR6LkxCkvW0VXiVHuPOtSCP8HNR6fNWpHSlaY0VqF
|
334 |
+
H4z1Ir+rzoPz4iIprn2DQKi6bA==
|
335 |
+
-----END CERTIFICATE-----
|
336 |
+
|
337 |
+
GeoTrust Universal CA
|
338 |
+
=====================
|
339 |
+
-----BEGIN CERTIFICATE-----
|
340 |
+
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
|
364 |
+
P/rmMuGNG2+k5o7Y+SlIis5z/iw=
|
365 |
+
-----END CERTIFICATE-----
|
366 |
+
|
367 |
+
GeoTrust Universal CA 2
|
368 |
+
=======================
|
369 |
+
-----BEGIN CERTIFICATE-----
|
370 |
+
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
|
394 |
+
X36vWkzaH6byHCx+rgIW0lbQL1dTR+iS
|
395 |
+
-----END CERTIFICATE-----
|
396 |
+
|
397 |
+
Visa eCommerce Root
|
398 |
+
===================
|
399 |
+
-----BEGIN CERTIFICATE-----
|
400 |
+
MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBrMQswCQYDVQQG
|
401 |
+
EwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2Ug
|
402 |
+
QXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2
|
403 |
+
WhcNMjIwNjI0MDAxNjEyWjBrMQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMm
|
404 |
+
VmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv
|
405 |
+
bW1lcmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h2mCxlCfL
|
406 |
+
F9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4ElpF7sDPwsRROEW+1QK8b
|
407 |
+
RaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdVZqW1LS7YgFmypw23RuwhY/81q6UCzyr0
|
408 |
+
TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI
|
409 |
+
/k4+oKsGGelT84ATB+0tvz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzs
|
410 |
+
GHxBvfaLdXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEG
|
411 |
+
MB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUFAAOCAQEAX/FBfXxc
|
412 |
+
CLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcRzCSs00Rsca4BIGsDoo8Ytyk6feUW
|
413 |
+
YFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pz
|
414 |
+
zkWKsKZJ/0x9nXGIxHYdkFsd7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBu
|
415 |
+
YQa7FkKMcPcw++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt
|
416 |
+
398znM/jra6O1I7mT1GvFpLgXPYHDw==
|
417 |
+
-----END CERTIFICATE-----
|
418 |
+
|
419 |
+
Certum Root CA
|
420 |
+
==============
|
421 |
+
-----BEGIN CERTIFICATE-----
|
422 |
+
MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQK
|
423 |
+
ExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBDQTAeFw0wMjA2MTExMDQ2Mzla
|
424 |
+
Fw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8u
|
425 |
+
by4xEjAQBgNVBAMTCUNlcnR1bSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6x
|
426 |
+
wS7TT3zNJc4YPk/EjG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdL
|
427 |
+
kKWoePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GIULdtlkIJ
|
428 |
+
89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapuOb7kky/ZR6By6/qmW6/K
|
429 |
+
Uz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUgAKpoC6EahQGcxEZjgoi2IrHu/qpGWX7P
|
430 |
+
NSzVttpd90gzFFS269lvzs2I1qsb2pY7HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkq
|
431 |
+
hkiG9w0BAQUFAAOCAQEAuI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+
|
432 |
+
GXYkHAQaTOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTgxSvg
|
433 |
+
GrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1qCjqTE5s7FCMTY5w/
|
434 |
+
0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5xO/fIR/RpbxXyEV6DHpx8Uq79AtoS
|
435 |
+
qFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs6GAqm4VKQPNriiTsBhYscw==
|
436 |
+
-----END CERTIFICATE-----
|
437 |
+
|
438 |
+
Comodo AAA Services root
|
439 |
+
========================
|
440 |
+
-----BEGIN CERTIFICATE-----
|
441 |
+
MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
|
442 |
+
R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
|
443 |
+
TGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAw
|
444 |
+
MFoXDTI4MTIzMTIzNTk1OVowezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hl
|
445 |
+
c3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNV
|
446 |
+
BAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
|
447 |
+
ggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQuaBtDFcCLNSS1UY8y2bmhG
|
448 |
+
C1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe3M/vg4aijJRPn2jymJBGhCfHdr/jzDUs
|
449 |
+
i14HZGWCwEiwqJH5YZ92IFCokcdmtet4YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszW
|
450 |
+
Y19zjNoFmag4qMsXeDZRrOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjH
|
451 |
+
Ypy+g8cmez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQUoBEK
|
452 |
+
Iz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wewYDVR0f
|
453 |
+
BHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNl
|
454 |
+
cy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2Vz
|
455 |
+
LmNybDANBgkqhkiG9w0BAQUFAAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm
|
456 |
+
7l3sAg9g1o1QGE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz
|
457 |
+
Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z
|
458 |
+
8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsil2D4kF501KKaU73yqWjgom7C
|
459 |
+
12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg==
|
460 |
+
-----END CERTIFICATE-----
|
461 |
+
|
462 |
+
Comodo Secure Services root
|
463 |
+
===========================
|
464 |
+
-----BEGIN CERTIFICATE-----
|
465 |
+
MIIEPzCCAyegAwIBAgIBATANBgkqhkiG9w0BAQUFADB+MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
|
466 |
+
R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
|
467 |
+
TGltaXRlZDEkMCIGA1UEAwwbU2VjdXJlIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAw
|
468 |
+
MDAwMFoXDTI4MTIzMTIzNTk1OVowfjELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFu
|
469 |
+
Y2hlc3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxJDAi
|
470 |
+
BgNVBAMMG1NlY3VyZSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP
|
471 |
+
ADCCAQoCggEBAMBxM4KK0HDrc4eCQNUd5MvJDkKQ+d40uaG6EfQlhfPMcm3ye5drswfxdySRXyWP
|
472 |
+
9nQ95IDC+DwN879A6vfIUtFyb+/Iq0G4bi4XKpVpDM3SHpR7LZQdqnXXs5jLrLxkU0C8j6ysNstc
|
473 |
+
rbvd4JQX7NFc0L/vpZXJkMWwrPsbQ996CF23uPJAGysnnlDOXmWCiIxe004MeuoIkbY2qitC++rC
|
474 |
+
oznl2yY4rYsK7hljxxwk3wN42ubqwUcaCwtGCd0C/N7Lh1/XMGNooa7cMqG6vv5Eq2i2pRcV/b3V
|
475 |
+
p6ea5EQz6YiO/O1R65NxTq0B50SOqy3LqP4BSUjwwN3HaNiS/j0CAwEAAaOBxzCBxDAdBgNVHQ4E
|
476 |
+
FgQUPNiTiMLAggnMAZkGkyDpnnAJY08wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w
|
477 |
+
gYEGA1UdHwR6MHgwO6A5oDeGNWh0dHA6Ly9jcmwuY29tb2RvY2EuY29tL1NlY3VyZUNlcnRpZmlj
|
478 |
+
YXRlU2VydmljZXMuY3JsMDmgN6A1hjNodHRwOi8vY3JsLmNvbW9kby5uZXQvU2VjdXJlQ2VydGlm
|
479 |
+
aWNhdGVTZXJ2aWNlcy5jcmwwDQYJKoZIhvcNAQEFBQADggEBAIcBbSMdflsXfcFhMs+P5/OKlFlm
|
480 |
+
4J4oqF7Tt/Q05qo5spcWxYJvMqTpjOev/e/C6LlLqqP05tqNZSH7uoDrJiiFGv45jN5bBAS0VPmj
|
481 |
+
Z55B+glSzAVIqMk/IQQezkhr/IXownuvf7fM+F86/TXGDe+X3EyrEeFryzHRbPtIgKvcnDe4IRRL
|
482 |
+
DXE97IMzbtFuMhbsmMcWi1mmNKsFVy2T96oTy9IT4rcuO81rUBcJaD61JlfutuC23bkpgHl9j6Pw
|
483 |
+
pCikFcSF9CfUa7/lXORlAnZUtOM3ZiTTGWHIUhDlizeauan5Hb/qmZJhlv8BzaFfDbxxvA6sCx1H
|
484 |
+
RR3B7Hzs/Sk=
|
485 |
+
-----END CERTIFICATE-----
|
486 |
+
|
487 |
+
Comodo Trusted Services root
|
488 |
+
============================
|
489 |
+
-----BEGIN CERTIFICATE-----
|
490 |
+
MIIEQzCCAyugAwIBAgIBATANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
|
491 |
+
R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
|
492 |
+
TGltaXRlZDElMCMGA1UEAwwcVHJ1c3RlZCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczAeFw0wNDAxMDEw
|
493 |
+
MDAwMDBaFw0yODEyMzEyMzU5NTlaMH8xCzAJBgNVBAYTAkdCMRswGQYDVQQIDBJHcmVhdGVyIE1h
|
494 |
+
bmNoZXN0ZXIxEDAOBgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoMEUNvbW9kbyBDQSBMaW1pdGVkMSUw
|
495 |
+
IwYDVQQDDBxUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2VzMIIBIjANBgkqhkiG9w0BAQEFAAOC
|
496 |
+
AQ8AMIIBCgKCAQEA33FvNlhTWvI2VFeAxHQIIO0Yfyod5jWaHiWsnOWWfnJSoBVC21ndZHoa0Lh7
|
497 |
+
3TkVvFVIxO06AOoxEbrycXQaZ7jPM8yoMa+j49d/vzMtTGo87IvDktJTdyR0nAducPy9C1t2ul/y
|
498 |
+
/9c3S0pgePfw+spwtOpZqqPOSC+pw7ILfhdyFgymBwwbOM/JYrc/oJOlh0Hyt3BAd9i+FHzjqMB6
|
499 |
+
juljatEPmsbS9Is6FARW1O24zG71++IsWL1/T2sr92AkWCTOJu80kTrV44HQsvAEAtdbtz6SrGsS
|
500 |
+
ivnkBbA7kUlcsutT6vifR4buv5XAwAaf0lteERv0xwQ1KdJVXOTt6wIDAQABo4HJMIHGMB0GA1Ud
|
501 |
+
DgQWBBTFe1i97doladL3WRaoszLAeydb9DAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB
|
502 |
+
/zCBgwYDVR0fBHwwejA8oDqgOIY2aHR0cDovL2NybC5jb21vZG9jYS5jb20vVHJ1c3RlZENlcnRp
|
503 |
+
ZmljYXRlU2VydmljZXMuY3JsMDqgOKA2hjRodHRwOi8vY3JsLmNvbW9kby5uZXQvVHJ1c3RlZENl
|
504 |
+
cnRpZmljYXRlU2VydmljZXMuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQDIk4E7ibSvuIQSTI3S8Ntw
|
505 |
+
uleGFTQQuS9/HrCoiWChisJ3DFBKmwCL2Iv0QeLQg4pKHBQGsKNoBXAxMKdTmw7pSqBYaWcOrp32
|
506 |
+
pSxBvzwGa+RZzG0Q8ZZvH9/0BAKkn0U+yNj6NkZEUD+Cl5EfKNsYEYwq5GWDVxISjBc/lDb+XbDA
|
507 |
+
BHcTuPQV1T84zJQ6VdCsmPW6AF/ghhmBeC8owH7TzEIK9a5QoNE+xqFx7D+gIIxmOom0jtTYsU0l
|
508 |
+
R+4viMi14QVFwL4Ucd56/Y57fU0IlqUSc/AtyjcndBInTMu2l+nZrghtWjlA3QVHdWpaIbOjGM9O
|
509 |
+
9y5Xt5hwXsjEeLBi
|
510 |
+
-----END CERTIFICATE-----
|
511 |
+
|
512 |
+
QuoVadis Root CA
|
513 |
+
================
|
514 |
+
-----BEGIN CERTIFICATE-----
|
515 |
+
MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJCTTEZMBcGA1UE
|
516 |
+
ChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0
|
517 |
+
eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAz
|
518 |
+
MTkxODMzMzNaFw0yMTAzMTcxODMzMzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRp
|
519 |
+
cyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQD
|
520 |
+
EyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF
|
521 |
+
AAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Ypli4kVEAkOPcahdxYTMuk
|
522 |
+
J0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2DrOpm2RgbaIr1VxqYuvXtdj182d6UajtL
|
523 |
+
F8HVj71lODqV0D1VNk7feVcxKh7YWWVJWCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeL
|
524 |
+
YzcS19Dsw3sgQUSj7cugF+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWen
|
525 |
+
AScOospUxbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCCAk4w
|
526 |
+
PQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVvdmFkaXNvZmZzaG9y
|
527 |
+
ZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREwggENMIIBCQYJKwYBBAG+WAABMIH7
|
528 |
+
MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNlIG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmlj
|
529 |
+
YXRlIGJ5IGFueSBwYXJ0eSBhc3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJs
|
530 |
+
ZSBzdGFuZGFyZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh
|
531 |
+
Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYIKwYBBQUHAgEW
|
532 |
+
Fmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3TKbkGGew5Oanwl4Rqy+/fMIGu
|
533 |
+
BgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rqy+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkw
|
534 |
+
FwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0
|
535 |
+
aG9yaXR5MS4wLAYDVQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6
|
536 |
+
tlCLMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSkfnIYj9lo
|
537 |
+
fFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf87C9TqnN7Az10buYWnuul
|
538 |
+
LsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1RcHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2x
|
539 |
+
gI4JVrmcGmD+XcHXetwReNDWXcG31a0ymQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi
|
540 |
+
5upZIof4l/UO/erMkqQWxFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi
|
541 |
+
5nrQNiOKSnQ2+Q==
|
542 |
+
-----END CERTIFICATE-----
|
543 |
+
|
544 |
+
QuoVadis Root CA 2
|
545 |
+
==================
|
546 |
+
-----BEGIN CERTIFICATE-----
|
547 |
+
MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT
|
548 |
+
EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMjAeFw0wNjExMjQx
|
549 |
+
ODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM
|
550 |
+
aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4IC
|
551 |
+
DwAwggIKAoICAQCaGMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6
|
552 |
+
XJxgFyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55JWpzmM+Yk
|
553 |
+
lvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bBrrcCaoF6qUWD4gXmuVbB
|
554 |
+
lDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp+ARz8un+XJiM9XOva7R+zdRcAitMOeGy
|
555 |
+
lZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt
|
556 |
+
66/3FsvbzSUr5R/7mp/iUcw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1Jdxn
|
557 |
+
wQ5hYIizPtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og/zOh
|
558 |
+
D7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UHoycR7hYQe7xFSkyy
|
559 |
+
BNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuIyV77zGHcizN300QyNQliBJIWENie
|
560 |
+
J0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1Ud
|
561 |
+
DgQWBBQahGK8SEwzJQTU7tD2A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGU
|
562 |
+
a6FJpEcwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT
|
563 |
+
ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2fBluornFdLwUv
|
564 |
+
Z+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzng/iN/Ae42l9NLmeyhP3ZRPx3
|
565 |
+
UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2BlfF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodm
|
566 |
+
VjB3pjd4M1IQWK4/YY7yarHvGH5KWWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK
|
567 |
+
+JDSV6IZUaUtl0HaB0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrW
|
568 |
+
IozchLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPRTUIZ3Ph1
|
569 |
+
WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWDmbA4CD/pXvk1B+TJYm5X
|
570 |
+
f6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0ZohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II
|
571 |
+
4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8
|
572 |
+
VCLAAVBpQ570su9t+Oza8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u
|
573 |
+
-----END CERTIFICATE-----
|
574 |
+
|
575 |
+
QuoVadis Root CA 3
|
576 |
+
==================
|
577 |
+
-----BEGIN CERTIFICATE-----
|
578 |
+
MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT
|
579 |
+
EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMzAeFw0wNjExMjQx
|
580 |
+
OTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM
|
581 |
+
aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4IC
|
582 |
+
DwAwggIKAoICAQDMV0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNgg
|
583 |
+
DhoB4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUrH556VOij
|
584 |
+
KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K
|
585 |
+
DDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9CabwvvWhDFlaJKjdhkf2mrk7AyxRllDdLkgbv
|
586 |
+
BNDInIjbC3uBr7E9KsRlOni27tyAsdLTmZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwp
|
587 |
+
p5ijJUMv7/FfJuGITfhebtfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8
|
588 |
+
nT8KKdjcT5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDtWAEX
|
589 |
+
MJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZc6tsgLjoC2SToJyM
|
590 |
+
Gf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A4iLItLRkT9a6fUg+qGkM17uGcclz
|
591 |
+
uD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYDVR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHT
|
592 |
+
BgkrBgEEAb5YAAMwgcUwgZMGCCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmlj
|
593 |
+
YXRlIGNvbnN0aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0
|
594 |
+
aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVudC4wLQYIKwYB
|
595 |
+
BQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2NwczALBgNVHQ8EBAMCAQYwHQYD
|
596 |
+
VR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4GA1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4
|
597 |
+
ywLQoUmkRzBFMQswCQYDVQQGEwJCTTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UE
|
598 |
+
AxMSUXVvVmFkaXMgUm9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZV
|
599 |
+
qyM07ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSemd1o417+s
|
600 |
+
hvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd+LJ2w/w4E6oM3kJpK27z
|
601 |
+
POuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2
|
602 |
+
Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadNt54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp
|
603 |
+
8kokUvd0/bpO5qgdAm6xDYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBC
|
604 |
+
bjPsMZ57k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6szHXu
|
605 |
+
g/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0jWy10QJLZYxkNc91p
|
606 |
+
vGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeTmJlglFwjz1onl14LBQaTNx47aTbr
|
607 |
+
qZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK4SVhM7JZG+Ju1zdXtg2pEto=
|
608 |
+
-----END CERTIFICATE-----
|
609 |
+
|
610 |
+
Security Communication Root CA
|
611 |
+
==============================
|
612 |
+
-----BEGIN CERTIFICATE-----
|
613 |
+
MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP
|
614 |
+
U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw
|
615 |
+
HhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP
|
616 |
+
U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw
|
617 |
+
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw
|
618 |
+
8yl89f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJDKaVv0uM
|
619 |
+
DPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9Ms+k2Y7CI9eNqPPYJayX
|
620 |
+
5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/NQV3Is00qVUarH9oe4kA92819uZKAnDfd
|
621 |
+
DJZkndwi92SL32HeFZRSFaB9UslLqCHJxrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2
|
622 |
+
JChzAgMBAAGjPzA9MB0GA1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYw
|
623 |
+
DwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vGkl3g
|
624 |
+
0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfrUj94nK9NrvjVT8+a
|
625 |
+
mCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5Bw+SUEmK3TGXX8npN6o7WWWXlDLJ
|
626 |
+
s58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJUJRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ
|
627 |
+
6rBK+1YWc26sTfcioU+tHXotRSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAi
|
628 |
+
FL39vmwLAw==
|
629 |
+
-----END CERTIFICATE-----
|
630 |
+
|
631 |
+
Sonera Class 2 Root CA
|
632 |
+
======================
|
633 |
+
-----BEGIN CERTIFICATE-----
|
634 |
+
MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEPMA0GA1UEChMG
|
635 |
+
U29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAxMDQwNjA3Mjk0MFoXDTIxMDQw
|
636 |
+
NjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNVBAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJh
|
637 |
+
IENsYXNzMiBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3
|
638 |
+
/Ei9vX+ALTU74W+oZ6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybT
|
639 |
+
dXnt5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s3TmVToMG
|
640 |
+
f+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2EjvOr7nQKV0ba5cTppCD8P
|
641 |
+
tOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu8nYybieDwnPz3BjotJPqdURrBGAgcVeH
|
642 |
+
nfO+oJAjPYok4doh28MCAwEAAaMzMDEwDwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITT
|
643 |
+
XjwwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt
|
644 |
+
0jSv9zilzqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/3DEI
|
645 |
+
cbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvDFNr450kkkdAdavph
|
646 |
+
Oe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6Tk6ezAyNlNzZRZxe7EJQY670XcSx
|
647 |
+
EtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLH
|
648 |
+
llpwrN9M
|
649 |
+
-----END CERTIFICATE-----
|
650 |
+
|
651 |
+
UTN USERFirst Hardware Root CA
|
652 |
+
==============================
|
653 |
+
-----BEGIN CERTIFICATE-----
|
654 |
+
MIIEdDCCA1ygAwIBAgIQRL4Mi1AAJLQR0zYq/mUK/TANBgkqhkiG9w0BAQUFADCBlzELMAkGA1UE
|
655 |
+
BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl
|
656 |
+
IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHzAd
|
657 |
+
BgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwHhcNOTkwNzA5MTgxMDQyWhcNMTkwNzA5MTgx
|
658 |
+
OTIyWjCBlzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0
|
659 |
+
eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVz
|
660 |
+
ZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwggEiMA0GCSqGSIb3
|
661 |
+
DQEBAQUAA4IBDwAwggEKAoIBAQCx98M4P7Sof885glFn0G2f0v9Y8+efK+wNiVSZuTiZFvfgIXlI
|
662 |
+
wrthdBKWHTxqctU8EGc6Oe0rE81m65UJM6Rsl7HoxuzBdXmcRl6Nq9Bq/bkqVRcQVLMZ8Jr28bFd
|
663 |
+
tqdt++BxF2uiiPsA3/4aMXcMmgF6sTLjKwEHOG7DpV4jvEWbe1DByTCP2+UretNb+zNAHqDVmBe8
|
664 |
+
i4fDidNdoI6yqqr2jmmIBsX6iSHzCJ1pLgkzmykNRg+MzEk0sGlRvfkGzWitZky8PqxhvQqIDsjf
|
665 |
+
Pe58BEydCl5rkdbux+0ojatNh4lz0G6k0B4WixThdkQDf2Os5M1JnMWS9KsyoUhbAgMBAAGjgbkw
|
666 |
+
gbYwCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFKFyXyYbKJhDlV0HN9WF
|
667 |
+
lp1L0sNFMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VVE4tVVNF
|
668 |
+
UkZpcnN0LUhhcmR3YXJlLmNybDAxBgNVHSUEKjAoBggrBgEFBQcDAQYIKwYBBQUHAwUGCCsGAQUF
|
669 |
+
BwMGBggrBgEFBQcDBzANBgkqhkiG9w0BAQUFAAOCAQEARxkP3nTGmZev/K0oXnWO6y1n7k57K9cM
|
670 |
+
//bey1WiCuFMVGWTYGufEpytXoMs61quwOQt9ABjHbjAbPLPSbtNk28GpgoiskliCE7/yMgUsogW
|
671 |
+
XecB5BKV5UU0s4tpvc+0hY91UZ59Ojg6FEgSxvunOxqNDYJAB+gECJChicsZUN/KHAG8HQQZexB2
|
672 |
+
lzvukJDKxA4fFm517zP4029bHpbj4HR3dHuKom4t3XbWOTCC8KucUvIqx69JXn7HaOWCgchqJ/kn
|
673 |
+
iCrVWFCVH/A7HFe7fRQ5YiuayZSSKqMiDP+JJn1fIytH1xUdqWqeUQ0qUZ6B+dQ7XnASfxAynB67
|
674 |
+
nfhmqA==
|
675 |
+
-----END CERTIFICATE-----
|
676 |
+
|
677 |
+
Camerfirma Chambers of Commerce Root
|
678 |
+
====================================
|
679 |
+
-----BEGIN CERTIFICATE-----
|
680 |
+
MIIEvTCCA6WgAwIBAgIBADANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe
|
681 |
+
QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i
|
682 |
+
ZXJzaWduLm9yZzEiMCAGA1UEAxMZQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdDAeFw0wMzA5MzAx
|
683 |
+
NjEzNDNaFw0zNzA5MzAxNjEzNDRaMH8xCzAJBgNVBAYTAkVVMScwJQYDVQQKEx5BQyBDYW1lcmZp
|
684 |
+
cm1hIFNBIENJRiBBODI3NDMyODcxIzAhBgNVBAsTGmh0dHA6Ly93d3cuY2hhbWJlcnNpZ24ub3Jn
|
685 |
+
MSIwIAYDVQQDExlDaGFtYmVycyBvZiBDb21tZXJjZSBSb290MIIBIDANBgkqhkiG9w0BAQEFAAOC
|
686 |
+
AQ0AMIIBCAKCAQEAtzZV5aVdGDDg2olUkfzIx1L4L1DZ77F1c2VHfRtbunXF/KGIJPov7coISjlU
|
687 |
+
xFF6tdpg6jg8gbLL8bvZkSM/SAFwdakFKq0fcfPJVD0dBmpAPrMMhe5cG3nCYsS4No41XQEMIwRH
|
688 |
+
NaqbYE6gZj3LJgqcQKH0XZi/caulAGgq7YN6D6IUtdQis4CwPAxaUWktWBiP7Zme8a7ileb2R6jW
|
689 |
+
DA+wWFjbw2Y3npuRVDM30pQcakjJyfKl2qUMI/cjDpwyVV5xnIQFUZot/eZOKjRa3spAN2cMVCFV
|
690 |
+
d9oKDMyXroDclDZK9D7ONhMeU+SsTjoF7Nuucpw4i9A5O4kKPnf+dQIBA6OCAUQwggFAMBIGA1Ud
|
691 |
+
EwEB/wQIMAYBAf8CAQwwPAYDVR0fBDUwMzAxoC+gLYYraHR0cDovL2NybC5jaGFtYmVyc2lnbi5v
|
692 |
+
cmcvY2hhbWJlcnNyb290LmNybDAdBgNVHQ4EFgQU45T1sU3p26EpW1eLTXYGduHRooowDgYDVR0P
|
693 |
+
AQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzAnBgNVHREEIDAegRxjaGFtYmVyc3Jvb3RAY2hh
|
694 |
+
bWJlcnNpZ24ub3JnMCcGA1UdEgQgMB6BHGNoYW1iZXJzcm9vdEBjaGFtYmVyc2lnbi5vcmcwWAYD
|
695 |
+
VR0gBFEwTzBNBgsrBgEEAYGHLgoDATA+MDwGCCsGAQUFBwIBFjBodHRwOi8vY3BzLmNoYW1iZXJz
|
696 |
+
aWduLm9yZy9jcHMvY2hhbWJlcnNyb290Lmh0bWwwDQYJKoZIhvcNAQEFBQADggEBAAxBl8IahsAi
|
697 |
+
fJ/7kPMa0QOx7xP5IV8EnNrJpY0nbJaHkb5BkAFyk+cefV/2icZdp0AJPaxJRUXcLo0waLIJuvvD
|
698 |
+
L8y6C98/d3tGfToSJI6WjzwFCm/SlCgdbQzALogi1djPHRPH8EjX1wWnz8dHnjs8NMiAT9QUu/wN
|
699 |
+
UPf6s+xCX6ndbcj0dc97wXImsQEcXCz9ek60AcUFV7nnPKoF2YjpB0ZBzu9Bga5Y34OirsrXdx/n
|
700 |
+
ADydb47kMgkdTXg0eDQ8lJsm7U9xxhl6vSAiSFr+S30Dt+dYvsYyTnQeaN2oaFuzPu5ifdmA6Ap1
|
701 |
+
erfutGWaIZDgqtCYvDi1czyL+Nw=
|
702 |
+
-----END CERTIFICATE-----
|
703 |
+
|
704 |
+
Camerfirma Global Chambersign Root
|
705 |
+
==================================
|
706 |
+
-----BEGIN CERTIFICATE-----
|
707 |
+
MIIExTCCA62gAwIBAgIBADANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe
|
708 |
+
QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i
|
709 |
+
ZXJzaWduLm9yZzEgMB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwHhcNMDMwOTMwMTYx
|
710 |
+
NDE4WhcNMzcwOTMwMTYxNDE4WjB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMeQUMgQ2FtZXJmaXJt
|
711 |
+
YSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEg
|
712 |
+
MB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwggEgMA0GCSqGSIb3DQEBAQUAA4IBDQAw
|
713 |
+
ggEIAoIBAQCicKLQn0KuWxfH2H3PFIP8T8mhtxOviteePgQKkotgVvq0Mi+ITaFgCPS3CU6gSS9J
|
714 |
+
1tPfnZdan5QEcOw/Wdm3zGaLmFIoCQLfxS+EjXqXd7/sQJ0lcqu1PzKY+7e3/HKE5TWH+VX6ox8O
|
715 |
+
by4o3Wmg2UIQxvi1RMLQQ3/bvOSiPGpVeAp3qdjqGTK3L/5cPxvusZjsyq16aUXjlg9V9ubtdepl
|
716 |
+
6DJWk0aJqCWKZQbua795B9Dxt6/tLE2Su8CoX6dnfQTyFQhwrJLWfQTSM/tMtgsL+xrJxI0DqX5c
|
717 |
+
8lCrEqWhz0hQpe/SyBoT+rB/sYIcd2oPX9wLlY/vQ37mRQklAgEDo4IBUDCCAUwwEgYDVR0TAQH/
|
718 |
+
BAgwBgEB/wIBDDA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLmNoYW1iZXJzaWduLm9yZy9j
|
719 |
+
aGFtYmVyc2lnbnJvb3QuY3JsMB0GA1UdDgQWBBRDnDafsJ4wTcbOX60Qq+UDpfqpFDAOBgNVHQ8B
|
720 |
+
Af8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgAHMCoGA1UdEQQjMCGBH2NoYW1iZXJzaWducm9vdEBj
|
721 |
+
aGFtYmVyc2lnbi5vcmcwKgYDVR0SBCMwIYEfY2hhbWJlcnNpZ25yb290QGNoYW1iZXJzaWduLm9y
|
722 |
+
ZzBbBgNVHSAEVDBSMFAGCysGAQQBgYcuCgEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly9jcHMuY2hh
|
723 |
+
bWJlcnNpZ24ub3JnL2Nwcy9jaGFtYmVyc2lnbnJvb3QuaHRtbDANBgkqhkiG9w0BAQUFAAOCAQEA
|
724 |
+
PDtwkfkEVCeR4e3t/mh/YV3lQWVPMvEYBZRqHN4fcNs+ezICNLUMbKGKfKX0j//U2K0X1S0E0T9Y
|
725 |
+
gOKBWYi+wONGkyT+kL0mojAt6JcmVzWJdJYY9hXiryQZVgICsroPFOrGimbBhkVVi76SvpykBMdJ
|
726 |
+
PJ7oKXqJ1/6v/2j1pReQvayZzKWGVwlnRtvWFsJG8eSpUPWP0ZIV018+xgBJOm5YstHRJw0lyDL4
|
727 |
+
IBHNfTIzSJRUTN3cecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREes
|
728 |
+
t2d/AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A==
|
729 |
+
-----END CERTIFICATE-----
|
730 |
+
|
731 |
+
XRamp Global CA Root
|
732 |
+
====================
|
733 |
+
-----BEGIN CERTIFICATE-----
|
734 |
+
MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UE
|
735 |
+
BhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2Vj
|
736 |
+
dXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB
|
737 |
+
dXRob3JpdHkwHhcNMDQxMTAxMTcxNDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMx
|
738 |
+
HjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkg
|
739 |
+
U2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3Jp
|
740 |
+
dHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS638eMpSe2OAtp87ZOqCwu
|
741 |
+
IR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCPKZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMx
|
742 |
+
foArtYzAQDsRhtDLooY2YKTVMIJt2W7QDxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FE
|
743 |
+
zG+gSqmUsE3a56k0enI4qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqs
|
744 |
+
AxcZZPRaJSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNViPvry
|
745 |
+
xS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud
|
746 |
+
EwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASsjVy16bYbMDYGA1UdHwQvMC0wK6Ap
|
747 |
+
oCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMC
|
748 |
+
AQEwDQYJKoZIhvcNAQEFBQADggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc
|
749 |
+
/Kh4ZzXxHfARvbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt
|
750 |
+
qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLaIR9NmXmd4c8n
|
751 |
+
nxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSyi6mx5O+aGtA9aZnuqCij4Tyz
|
752 |
+
8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQO+7ETPTsJ3xCwnR8gooJybQDJbw=
|
753 |
+
-----END CERTIFICATE-----
|
754 |
+
|
755 |
+
Go Daddy Class 2 CA
|
756 |
+
===================
|
757 |
+
-----BEGIN CERTIFICATE-----
|
758 |
+
MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMY
|
759 |
+
VGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRp
|
760 |
+
ZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkG
|
761 |
+
A1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28g
|
762 |
+
RGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQAD
|
763 |
+
ggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv
|
764 |
+
2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32
|
765 |
+
qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6j
|
766 |
+
YGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmY
|
767 |
+
vLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0O
|
768 |
+
BBYEFNLEsNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h/t2o
|
769 |
+
atTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMu
|
770 |
+
MTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwG
|
771 |
+
A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wim
|
772 |
+
PQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKt
|
773 |
+
I3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ
|
774 |
+
HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mERdEr/VxqHD3VI
|
775 |
+
Ls9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX/b
|
776 |
+
vZ8=
|
777 |
+
-----END CERTIFICATE-----
|
778 |
+
|
779 |
+
Starfield Class 2 CA
|
780 |
+
====================
|
781 |
+
-----BEGIN CERTIFICATE-----
|
782 |
+
MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzElMCMGA1UEChMc
|
783 |
+
U3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZpZWxkIENsYXNzIDIg
|
784 |
+
Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQwNjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBo
|
785 |
+
MQswCQYDVQQGEwJVUzElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAG
|
786 |
+
A1UECxMpU3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqG
|
787 |
+
SIb3DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf8MOh2tTY
|
788 |
+
bitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN+lq2cwQlZut3f+dZxkqZ
|
789 |
+
JRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVm
|
790 |
+
epsZGD3/cVE8MC5fvj13c7JdBmzDI1aaK4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSN
|
791 |
+
F4Azbl5KXZnJHoe0nRrA1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HF
|
792 |
+
MIHCMB0GA1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fRzt0f
|
793 |
+
hvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNo
|
794 |
+
bm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24g
|
795 |
+
QXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGs
|
796 |
+
afPzWdqbAYcaT1epoXkJKtv3L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLM
|
797 |
+
PUxA2IGvd56Deruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl
|
798 |
+
xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynpVSJYACPq4xJD
|
799 |
+
KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3
|
800 |
+
QBFGmh95DmK/D5fs4C8fF5Q=
|
801 |
+
-----END CERTIFICATE-----
|
802 |
+
|
803 |
+
StartCom Certification Authority
|
804 |
+
================================
|
805 |
+
-----BEGIN CERTIFICATE-----
|
806 |
+
MIIHyTCCBbGgAwIBAgIBATANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN
|
807 |
+
U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu
|
808 |
+
ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0
|
809 |
+
NjM2WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk
|
810 |
+
LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg
|
811 |
+
U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
812 |
+
ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y
|
813 |
+
o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/
|
814 |
+
Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d
|
815 |
+
eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt
|
816 |
+
2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z
|
817 |
+
6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ
|
818 |
+
osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/
|
819 |
+
untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc
|
820 |
+
UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT
|
821 |
+
37uMdBNSSwIDAQABo4ICUjCCAk4wDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAa4wHQYDVR0OBBYE
|
822 |
+
FE4L7xqkQFulF2mHMMo0aEPQQa7yMGQGA1UdHwRdMFswLKAqoCiGJmh0dHA6Ly9jZXJ0LnN0YXJ0
|
823 |
+
Y29tLm9yZy9zZnNjYS1jcmwuY3JsMCugKaAnhiVodHRwOi8vY3JsLnN0YXJ0Y29tLm9yZy9zZnNj
|
824 |
+
YS1jcmwuY3JsMIIBXQYDVR0gBIIBVDCCAVAwggFMBgsrBgEEAYG1NwEBATCCATswLwYIKwYBBQUH
|
825 |
+
AgEWI2h0dHA6Ly9jZXJ0LnN0YXJ0Y29tLm9yZy9wb2xpY3kucGRmMDUGCCsGAQUFBwIBFilodHRw
|
826 |
+
Oi8vY2VydC5zdGFydGNvbS5vcmcvaW50ZXJtZWRpYXRlLnBkZjCB0AYIKwYBBQUHAgIwgcMwJxYg
|
827 |
+
U3RhcnQgQ29tbWVyY2lhbCAoU3RhcnRDb20pIEx0ZC4wAwIBARqBl0xpbWl0ZWQgTGlhYmlsaXR5
|
828 |
+
LCByZWFkIHRoZSBzZWN0aW9uICpMZWdhbCBMaW1pdGF0aW9ucyogb2YgdGhlIFN0YXJ0Q29tIENl
|
829 |
+
cnRpZmljYXRpb24gQXV0aG9yaXR5IFBvbGljeSBhdmFpbGFibGUgYXQgaHR0cDovL2NlcnQuc3Rh
|
830 |
+
cnRjb20ub3JnL3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilT
|
831 |
+
dGFydENvbSBGcmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQUFAAOC
|
832 |
+
AgEAFmyZ9GYMNPXQhV59CuzaEE44HF7fpiUFS5Eyweg78T3dRAlbB0mKKctmArexmvclmAk8jhvh
|
833 |
+
3TaHK0u7aNM5Zj2gJsfyOZEdUauCe37Vzlrk4gNXcGmXCPleWKYK34wGmkUWFjgKXlf2Ysd6AgXm
|
834 |
+
vB618p70qSmD+LIU424oh0TDkBreOKk8rENNZEXO3SipXPJzewT4F+irsfMuXGRuczE6Eri8sxHk
|
835 |
+
fY+BUZo7jYn0TZNmezwD7dOaHZrzZVD1oNB1ny+v8OqCQ5j4aZyJecRDjkZy42Q2Eq/3JR44iZB3
|
836 |
+
fsNrarnDy0RLrHiQi+fHLB5LEUTINFInzQpdn4XBidUaePKVEFMy3YCEZnXZtWgo+2EuvoSoOMCZ
|
837 |
+
EoalHmdkrQYuL6lwhceWD3yJZfWOQ1QOq92lgDmUYMA0yZZwLKMS9R9Ie70cfmu3nZD0Ijuu+Pwq
|
838 |
+
yvqCUqDvr0tVk+vBtfAii6w0TiYiBKGHLHVKt+V9E9e4DGTANtLJL4YSjCMJwRuCO3NJo2pXh5Tl
|
839 |
+
1njFmUNj403gdy3hZZlyaQQaRwnmDwFWJPsfvw55qVguucQJAX6Vum0ABj6y6koQOdjQK/W/7HW/
|
840 |
+
lwLFCRsI3FU34oH7N4RDYiDK51ZLZer+bMEkkyShNOsF/5oirpt9P/FlUQqmMGqz9IgcgA38coro
|
841 |
+
g14=
|
842 |
+
-----END CERTIFICATE-----
|
843 |
+
|
844 |
+
Taiwan GRCA
|
845 |
+
===========
|
846 |
+
-----BEGIN CERTIFICATE-----
|
847 |
+
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
|
872 |
+
-----END CERTIFICATE-----
|
873 |
+
|
874 |
+
Swisscom Root CA 1
|
875 |
+
==================
|
876 |
+
-----BEGIN CERTIFICATE-----
|
877 |
+
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
|
903 |
+
NY6E0F/6MBr1mmz0DlP5OlvRHA==
|
904 |
+
-----END CERTIFICATE-----
|
905 |
+
|
906 |
+
DigiCert Assured ID Root CA
|
907 |
+
===========================
|
908 |
+
-----BEGIN CERTIFICATE-----
|
909 |
+
MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQG
|
910 |
+
EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw
|
911 |
+
IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzEx
|
912 |
+
MTEwMDAwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL
|
913 |
+
ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew
|
914 |
+
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7cJpSIqvTO
|
915 |
+
9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYPmDI2dsze3Tyoou9q+yHy
|
916 |
+
UmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW
|
917 |
+
/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpy
|
918 |
+
oeb6pNnVFzF1roV9Iq4/AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whf
|
919 |
+
GHdPAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRF
|
920 |
+
66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkq
|
921 |
+
hkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRCdWKuh+vy1dneVrOfzM4UKLkNl2Bc
|
922 |
+
EkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTffwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38Fn
|
923 |
+
SbNd67IJKusm7Xi+fT8r87cmNW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i
|
924 |
+
8b5QZ7dsvfPxH2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe
|
925 |
+
+o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g==
|
926 |
+
-----END CERTIFICATE-----
|
927 |
+
|
928 |
+
DigiCert Global Root CA
|
929 |
+
=======================
|
930 |
+
-----BEGIN CERTIFICATE-----
|
931 |
+
MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG
|
932 |
+
EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw
|
933 |
+
HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw
|
934 |
+
MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3
|
935 |
+
dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq
|
936 |
+
hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn
|
937 |
+
TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5
|
938 |
+
BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H
|
939 |
+
4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y
|
940 |
+
7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB
|
941 |
+
o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm
|
942 |
+
8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF
|
943 |
+
BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr
|
944 |
+
EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt
|
945 |
+
tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886
|
946 |
+
UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk
|
947 |
+
CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=
|
948 |
+
-----END CERTIFICATE-----
|
949 |
+
|
950 |
+
DigiCert High Assurance EV Root CA
|
951 |
+
==================================
|
952 |
+
-----BEGIN CERTIFICATE-----
|
953 |
+
MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQG
|
954 |
+
EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSsw
|
955 |
+
KQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAw
|
956 |
+
MFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ
|
957 |
+
MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFu
|
958 |
+
Y2UgRVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0t
|
959 |
+
Mqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTWPNt0OKRKzE0lgvdKpVMS
|
960 |
+
OO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3
|
961 |
+
MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQ
|
962 |
+
NAQTXKFx01p8VdteZOE3hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUe
|
963 |
+
h10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMB
|
964 |
+
Af8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY
|
965 |
+
JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQ
|
966 |
+
V8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFp
|
967 |
+
myPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkK
|
968 |
+
mNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe
|
969 |
+
vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9K
|
970 |
+
-----END CERTIFICATE-----
|
971 |
+
|
972 |
+
Certplus Class 2 Primary CA
|
973 |
+
===========================
|
974 |
+
-----BEGIN CERTIFICATE-----
|
975 |
+
MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAwPTELMAkGA1UE
|
976 |
+
BhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFzcyAyIFByaW1hcnkgQ0EwHhcN
|
977 |
+
OTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2Vy
|
978 |
+
dHBsdXMxGzAZBgNVBAMTEkNsYXNzIDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP
|
979 |
+
ADCCAQoCggEBANxQltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR
|
980 |
+
5aiRVhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyLkcAbmXuZ
|
981 |
+
Vg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCdEgETjdyAYveVqUSISnFO
|
982 |
+
YFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yasH7WLO7dDWWuwJKZtkIvEcupdM5i3y95e
|
983 |
+
e++U8Rs+yskhwcWYAqqi9lt3m/V+llU0HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRME
|
984 |
+
CDAGAQH/AgEKMAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJ
|
985 |
+
YIZIAYb4QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMuY29t
|
986 |
+
L0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/AN9WM2K191EBkOvD
|
987 |
+
P9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8yfFC82x/xXp8HVGIutIKPidd3i1R
|
988 |
+
TtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMRFcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+
|
989 |
+
7UCmnYR0ObncHoUW2ikbhiMAybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW
|
990 |
+
//1IMwrh3KWBkJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7
|
991 |
+
l7+ijrRU
|
992 |
+
-----END CERTIFICATE-----
|
993 |
+
|
994 |
+
DST Root CA X3
|
995 |
+
==============
|
996 |
+
-----BEGIN CERTIFICATE-----
|
997 |
+
MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/MSQwIgYDVQQK
|
998 |
+
ExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4X
|
999 |
+
DTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVowPzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1
|
1000 |
+
cmUgVHJ1c3QgQ28uMRcwFQYDVQQDEw5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQAD
|
1001 |
+
ggEPADCCAQoCggEBAN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmT
|
1002 |
+
rE4Orz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEqOLl5CjH9
|
1003 |
+
UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9bxiqKqy69cK3FCxolkHRy
|
1004 |
+
xXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40d
|
1005 |
+
utolucbY38EVAjqr2m7xPi71XAicPNaDaeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0T
|
1006 |
+
AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQ
|
1007 |
+
MA0GCSqGSIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69ikug
|
1008 |
+
dB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXrAvHRAosZy5Q6XkjE
|
1009 |
+
GB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZzR8srzJmwN0jP41ZL9c8PDHIyh8bw
|
1010 |
+
RLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubS
|
1011 |
+
fZGL+T0yjWW06XyxV3bqxbYoOb8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ
|
1012 |
+
-----END CERTIFICATE-----
|
1013 |
+
|
1014 |
+
DST ACES CA X6
|
1015 |
+
==============
|
1016 |
+
-----BEGIN CERTIFICATE-----
|
1017 |
+
MIIECTCCAvGgAwIBAgIQDV6ZCtadt3js2AdWO4YV2TANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQG
|
1018 |
+
EwJVUzEgMB4GA1UEChMXRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QxETAPBgNVBAsTCERTVCBBQ0VT
|
1019 |
+
MRcwFQYDVQQDEw5EU1QgQUNFUyBDQSBYNjAeFw0wMzExMjAyMTE5NThaFw0xNzExMjAyMTE5NTha
|
1020 |
+
MFsxCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdDERMA8GA1UE
|
1021 |
+
CxMIRFNUIEFDRVMxFzAVBgNVBAMTDkRTVCBBQ0VTIENBIFg2MIIBIjANBgkqhkiG9w0BAQEFAAOC
|
1022 |
+
AQ8AMIIBCgKCAQEAuT31LMmU3HWKlV1j6IR3dma5WZFcRt2SPp/5DgO0PWGSvSMmtWPuktKe1jzI
|
1023 |
+
DZBfZIGxqAgNTNj50wUoUrQBJcWVHAx+PhCEdc/BGZFjz+iokYi5Q1K7gLFViYsx+tC3dr5BPTCa
|
1024 |
+
pCIlF3PoHuLTrCq9Wzgh1SpL11V94zpVvddtawJXa+ZHfAjIgrrep4c9oW24MFbCswKBXy314pow
|
1025 |
+
GCi4ZtPLAZZv6opFVdbgnf9nKxcCpk4aahELfrd755jWjHZvwTvbUJN+5dCOHze4vbrGn2zpfDPy
|
1026 |
+
MjwmR/onJALJfh1biEITajV8fTXpLmaRcpPVMibEdPVTo7NdmvYJywIDAQABo4HIMIHFMA8GA1Ud
|
1027 |
+
EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgHGMB8GA1UdEQQYMBaBFHBraS1vcHNAdHJ1c3Rkc3Qu
|
1028 |
+
Y29tMGIGA1UdIARbMFkwVwYKYIZIAWUDAgEBATBJMEcGCCsGAQUFBwIBFjtodHRwOi8vd3d3LnRy
|
1029 |
+
dXN0ZHN0LmNvbS9jZXJ0aWZpY2F0ZXMvcG9saWN5L0FDRVMtaW5kZXguaHRtbDAdBgNVHQ4EFgQU
|
1030 |
+
CXIGThhDD+XWzMNqizF7eI+og7gwDQYJKoZIhvcNAQEFBQADggEBAKPYjtay284F5zLNAdMEA+V2
|
1031 |
+
5FYrnJmQ6AgwbN99Pe7lv7UkQIRJ4dEorsTCOlMwiPH1d25Ryvr/ma8kXxug/fKshMrfqfBfBC6t
|
1032 |
+
Fr8hlxCBPeP/h40y3JTlR4peahPJlJU90u7INJXQgNStMgiAVDzgvVJT11J8smk/f3rPanTK+gQq
|
1033 |
+
nExaBqXpIK1FZg9p8d2/6eMyi/rgwYZNcjwu2JN4Cir42NInPRmJX1p7ijvMDNpRrscL9yuwNwXs
|
1034 |
+
vFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf29w4LTJxoeHtxMcfrHuBnQfO3
|
1035 |
+
oKfN5XozNmr6mis=
|
1036 |
+
-----END CERTIFICATE-----
|
1037 |
+
|
1038 |
+
SwissSign Gold CA - G2
|
1039 |
+
======================
|
1040 |
+
-----BEGIN CERTIFICATE-----
|
1041 |
+
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
|
1067 |
+
-----END CERTIFICATE-----
|
1068 |
+
|
1069 |
+
SwissSign Silver CA - G2
|
1070 |
+
========================
|
1071 |
+
-----BEGIN CERTIFICATE-----
|
1072 |
+
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
|
1098 |
+
-----END CERTIFICATE-----
|
1099 |
+
|
1100 |
+
GeoTrust Primary Certification Authority
|
1101 |
+
========================================
|
1102 |
+
-----BEGIN CERTIFICATE-----
|
1103 |
+
MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQG
|
1104 |
+
EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMoR2VvVHJ1c3QgUHJpbWFyeSBD
|
1105 |
+
ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjExMjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgx
|
1106 |
+
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQ
|
1107 |
+
cmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
1108 |
+
CgKCAQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9AWbK7hWN
|
1109 |
+
b6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjAZIVcFU2Ix7e64HXprQU9
|
1110 |
+
nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE07e9GceBrAqg1cmuXm2bgyxx5X9gaBGge
|
1111 |
+
RwLmnWDiNpcB3841kt++Z8dtd1k7j53WkBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGt
|
1112 |
+
tm/81w7a4DSwDRp35+MImO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
|
1113 |
+
AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJKoZI
|
1114 |
+
hvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ16CePbJC/kRYkRj5K
|
1115 |
+
Ts4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl4b7UVXGYNTq+k+qurUKykG/g/CFN
|
1116 |
+
NWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6KoKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHa
|
1117 |
+
Floxt/m0cYASSJlyc1pZU8FjUjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG
|
1118 |
+
1riR/aYNKxoUAT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk=
|
1119 |
+
-----END CERTIFICATE-----
|
1120 |
+
|
1121 |
+
thawte Primary Root CA
|
1122 |
+
======================
|
1123 |
+
-----BEGIN CERTIFICATE-----
|
1124 |
+
MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCBqTELMAkGA1UE
|
1125 |
+
BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2
|
1126 |
+
aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv
|
1127 |
+
cml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3
|
1128 |
+
MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwg
|
1129 |
+
SW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMv
|
1130 |
+
KGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMT
|
1131 |
+
FnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCs
|
1132 |
+
oPD7gFnUnMekz52hWXMJEEUMDSxuaPFsW0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ
|
1133 |
+
1CRfBsDMRJSUjQJib+ta3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGc
|
1134 |
+
q/gcfomk6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6Sk/K
|
1135 |
+
aAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94JNqR32HuHUETVPm4p
|
1136 |
+
afs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD
|
1137 |
+
VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XPr87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUF
|
1138 |
+
AAOCAQEAeRHAS7ORtvzw6WfUDW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeE
|
1139 |
+
uzLlQRHAd9mzYJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX
|
1140 |
+
xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2/qxAeeWsEG89
|
1141 |
+
jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/LHbTY5xZ3Y+m4Q6gLkH3LpVH
|
1142 |
+
z7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7jVaMaA==
|
1143 |
+
-----END CERTIFICATE-----
|
1144 |
+
|
1145 |
+
VeriSign Class 3 Public Primary Certification Authority - G5
|
1146 |
+
============================================================
|
1147 |
+
-----BEGIN CERTIFICATE-----
|
1148 |
+
MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCByjELMAkGA1UE
|
1149 |
+
BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO
|
1150 |
+
ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk
|
1151 |
+
IHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRp
|
1152 |
+
ZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCB
|
1153 |
+
yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2ln
|
1154 |
+
biBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBh
|
1155 |
+
dXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmlt
|
1156 |
+
YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
|
1157 |
+
ggEKAoIBAQCvJAgIKXo1nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKz
|
1158 |
+
j/i5Vbext0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIzSdhD
|
1159 |
+
Y2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQGBO+QueQA5N06tRn/
|
1160 |
+
Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+rCpSx4/VBEnkjWNHiDxpg8v+R70r
|
1161 |
+
fk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/
|
1162 |
+
BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2Uv
|
1163 |
+
Z2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy
|
1164 |
+
aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqG
|
1165 |
+
SIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzEp6B4Eq1iDkVwZMXnl2YtmAl+
|
1166 |
+
X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKE
|
1167 |
+
KQsTb47bDN0lAtukixlE0kF6BWlKWE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiC
|
1168 |
+
Km0oHw0LxOXnGiYZ4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vE
|
1169 |
+
ZV8NhnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq
|
1170 |
+
-----END CERTIFICATE-----
|
1171 |
+
|
1172 |
+
SecureTrust CA
|
1173 |
+
==============
|
1174 |
+
-----BEGIN CERTIFICATE-----
|
1175 |
+
MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBIMQswCQYDVQQG
|
1176 |
+
EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xFzAVBgNVBAMTDlNlY3VyZVRy
|
1177 |
+
dXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIzMTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAe
|
1178 |
+
BgNVBAoTF1NlY3VyZVRydXN0IENvcnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC
|
1179 |
+
ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQX
|
1180 |
+
OZEzZum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO0gMdA+9t
|
1181 |
+
DWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIaowW8xQmxSPmjL8xk037uH
|
1182 |
+
GFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b
|
1183 |
+
01k/unK8RCSc43Oz969XL0Imnal0ugBS8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmH
|
1184 |
+
ursCAwEAAaOBnTCBmjATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/
|
1185 |
+
BAUwAwEB/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCegJYYj
|
1186 |
+
aHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ
|
1187 |
+
KoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt36Z3q059c4EVlew3KW+JwULKUBRSu
|
1188 |
+
SceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHf
|
1189 |
+
mbx8IVQr5Fiiu1cprp6poxkmD5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZ
|
1190 |
+
nMUFdAvnZyPSCPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR
|
1191 |
+
3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE=
|
1192 |
+
-----END CERTIFICATE-----
|
1193 |
+
|
1194 |
+
Secure Global CA
|
1195 |
+
================
|
1196 |
+
-----BEGIN CERTIFICATE-----
|
1197 |
+
MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQG
|
1198 |
+
EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBH
|
1199 |
+
bG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkxMjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEg
|
1200 |
+
MB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwg
|
1201 |
+
Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jx
|
1202 |
+
YDiJiQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa/FHtaMbQ
|
1203 |
+
bqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJjnIFHovdRIWCQtBJwB1g
|
1204 |
+
8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnIHmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYV
|
1205 |
+
HDGA76oYa8J719rO+TMg1fW9ajMtgQT7sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi
|
1206 |
+
0XPnj3pDAgMBAAGjgZ0wgZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud
|
1207 |
+
EwEB/wQFMAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCswKaAn
|
1208 |
+
oCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsGAQQBgjcVAQQDAgEA
|
1209 |
+
MA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0LURYD7xh8yOOvaliTFGCRsoTciE6+
|
1210 |
+
OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXOH0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cn
|
1211 |
+
CDpOGR86p1hcF895P4vkp9MmI50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/5
|
1212 |
+
3CYNv6ZHdAbYiNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc
|
1213 |
+
f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW
|
1214 |
+
-----END CERTIFICATE-----
|
1215 |
+
|
1216 |
+
COMODO Certification Authority
|
1217 |
+
==============================
|
1218 |
+
-----BEGIN CERTIFICATE-----
|
1219 |
+
MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCBgTELMAkGA1UE
|
1220 |
+
BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG
|
1221 |
+
A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNVBAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1
|
1222 |
+
dGhvcml0eTAeFw0wNjEyMDEwMDAwMDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEb
|
1223 |
+
MBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFD
|
1224 |
+
T01PRE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0aG9yaXR5
|
1225 |
+
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3UcEbVASY06m/weaKXTuH
|
1226 |
+
+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI2GqGd0S7WWaXUF601CxwRM/aN5VCaTww
|
1227 |
+
xHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV
|
1228 |
+
4EajcNxo2f8ESIl33rXp+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA
|
1229 |
+
1KGzqSX+DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5OnKVI
|
1230 |
+
rLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW/zAOBgNVHQ8BAf8E
|
1231 |
+
BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6gPKA6hjhodHRwOi8vY3JsLmNvbW9k
|
1232 |
+
b2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOC
|
1233 |
+
AQEAPpiem/Yb6dc5t3iuHXIYSdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CP
|
1234 |
+
OGEIqB6BCsAvIC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/
|
1235 |
+
RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4zJVSk/BwJVmc
|
1236 |
+
IGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5ddBA6+C4OmF4O5MBKgxTMVBbkN
|
1237 |
+
+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IBZQ==
|
1238 |
+
-----END CERTIFICATE-----
|
1239 |
+
|
1240 |
+
Network Solutions Certificate Authority
|
1241 |
+
=======================================
|
1242 |
+
-----BEGIN CERTIFICATE-----
|
1243 |
+
MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQG
|
1244 |
+
EwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydOZXR3b3Jr
|
1245 |
+
IFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMx
|
1246 |
+
MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu
|
1247 |
+
MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G
|
1248 |
+
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwzc7MEL7xx
|
1249 |
+
jOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPPOCwGJgl6cvf6UDL4wpPT
|
1250 |
+
aaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rlmGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXT
|
1251 |
+
crA/vGp97Eh/jcOrqnErU2lBUzS1sLnFBgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc
|
1252 |
+
/Qzpf14Dl847ABSHJ3A4qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMB
|
1253 |
+
AAGjgZcwgZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIBBjAP
|
1254 |
+
BgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwubmV0c29sc3NsLmNv
|
1255 |
+
bS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3JpdHkuY3JsMA0GCSqGSIb3DQEBBQUA
|
1256 |
+
A4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc86fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q
|
1257 |
+
4LqILPxFzBiwmZVRDuwduIj/h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/
|
1258 |
+
GGUsyfJj4akH/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv
|
1259 |
+
wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD
|
1260 |
+
ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey
|
1261 |
+
-----END CERTIFICATE-----
|
1262 |
+
|
1263 |
+
WellsSecure Public Root Certificate Authority
|
1264 |
+
=============================================
|
1265 |
+
-----BEGIN CERTIFICATE-----
|
1266 |
+
MIIEvTCCA6WgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoM
|
1267 |
+
F1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYw
|
1268 |
+
NAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcN
|
1269 |
+
MDcxMjEzMTcwNzU0WhcNMjIxMjE0MDAwNzU0WjCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dl
|
1270 |
+
bGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYD
|
1271 |
+
VQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G
|
1272 |
+
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDub7S9eeKPCCGeOARBJe+rWxxTkqxtnt3CxC5FlAM1
|
1273 |
+
iGd0V+PfjLindo8796jE2yljDpFoNoqXjopxaAkH5OjUDk/41itMpBb570OYj7OeUt9tkTmPOL13
|
1274 |
+
i0Nj67eT/DBMHAGTthP796EfvyXhdDcsHqRePGj4S78NuR4uNuip5Kf4D8uCdXw1LSLWwr8L87T8
|
1275 |
+
bJVhHlfXBIEyg1J55oNjz7fLY4sR4r1e6/aN7ZVyKLSsEmLpSjPmgzKuBXWVvYSV2ypcm44uDLiB
|
1276 |
+
K0HmOFafSZtsdvqKXfcBeYF8wYNABf5x/Qw/zE5gCQ5lRxAvAcAFP4/4s0HvWkJ+We/SlwxlAgMB
|
1277 |
+
AAGjggE0MIIBMDAPBgNVHRMBAf8EBTADAQH/MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmwu
|
1278 |
+
cGtpLndlbGxzZmFyZ28uY29tL3dzcHJjYS5jcmwwDgYDVR0PAQH/BAQDAgHGMB0GA1UdDgQWBBQm
|
1279 |
+
lRkQ2eihl5H/3BnZtQQ+0nMKajCBsgYDVR0jBIGqMIGngBQmlRkQ2eihl5H/3BnZtQQ+0nMKaqGB
|
1280 |
+
i6SBiDCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRww
|
1281 |
+
GgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMg
|
1282 |
+
Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHmCAQEwDQYJKoZIhvcNAQEFBQADggEBALkVsUSRzCPI
|
1283 |
+
K0134/iaeycNzXK7mQDKfGYZUMbVmO2rvwNa5U3lHshPcZeG1eMd/ZDJPHV3V3p9+N701NX3leZ0
|
1284 |
+
bh08rnyd2wIDBSxxSyU+B+NemvVmFymIGjifz6pBA4SXa5M4esowRBskRDPQ5NHcKDj0E0M1NSlj
|
1285 |
+
qHyita04pO2t/caaH/+Xc/77szWnk4bGdpEA5qxRFsQnMlzbc9qlk1eOPm01JghZ1edE13YgY+es
|
1286 |
+
E2fDbbFwRnzVlhE9iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YMon4QLSvUFpULB6ouFJJJ
|
1287 |
+
tylv2G0xffX8oRAHh84vWdw+WNs=
|
1288 |
+
-----END CERTIFICATE-----
|
1289 |
+
|
1290 |
+
COMODO ECC Certification Authority
|
1291 |
+
==================================
|
1292 |
+
-----BEGIN CERTIFICATE-----
|
1293 |
+
MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTELMAkGA1UEBhMC
|
1294 |
+
R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE
|
1295 |
+
ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBB
|
1296 |
+
dXRob3JpdHkwHhcNMDgwMzA2MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0Ix
|
1297 |
+
GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR
|
1298 |
+
Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRo
|
1299 |
+
b3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSRFtSrYpn1PlILBs5BAH+X
|
1300 |
+
4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0JcfRK9ChQtP6IHG4/bC8vCVlbpVsLM5ni
|
1301 |
+
wz2J+Wos77LTBumjQjBAMB0GA1UdDgQWBBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8E
|
1302 |
+
BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VG
|
1303 |
+
FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA
|
1304 |
+
U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY=
|
1305 |
+
-----END CERTIFICATE-----
|
1306 |
+
|
1307 |
+
IGC/A
|
1308 |
+
=====
|
1309 |
+
-----BEGIN CERTIFICATE-----
|
1310 |
+
MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAkZSMQ8wDQYD
|
1311 |
+
VQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVE
|
1312 |
+
Q1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZy
|
1313 |
+
MB4XDTAyMTIxMzE0MjkyM1oXDTIwMTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQI
|
1314 |
+
EwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NT
|
1315 |
+
STEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMIIB
|
1316 |
+
IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaIs9z4iPf930Pfeo2aSVz2
|
1317 |
+
TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCW
|
1318 |
+
So7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYy
|
1319 |
+
HF2fYPepraX/z9E0+X1bF8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNd
|
1320 |
+
frGoRpAxVs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGdPDPQ
|
1321 |
+
tQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNVHSAEDjAMMAoGCCqB
|
1322 |
+
egF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAxNjAfBgNVHSMEGDAWgBSjBS8YYFDC
|
1323 |
+
iQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUFAAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RK
|
1324 |
+
q89toB9RlPhJy3Q2FLwV3duJL92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3Q
|
1325 |
+
MZsyK10XZZOYYLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg
|
1326 |
+
Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2aNjSaTFR+FwNI
|
1327 |
+
lQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R0982gaEbeC9xs/FZTEYYKKuF
|
1328 |
+
0mBWWg==
|
1329 |
+
-----END CERTIFICATE-----
|
1330 |
+
|
1331 |
+
Security Communication EV RootCA1
|
1332 |
+
=================================
|
1333 |
+
-----BEGIN CERTIFICATE-----
|
1334 |
+
MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDElMCMGA1UEChMc
|
1335 |
+
U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU2VjdXJpdHkgQ29tbXVuaWNh
|
1336 |
+
dGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIzMloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UE
|
1337 |
+
BhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNl
|
1338 |
+
Y3VyaXR5IENvbW11bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
|
1339 |
+
AQoCggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSERMqm4miO
|
1340 |
+
/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gOzXppFodEtZDkBp2uoQSX
|
1341 |
+
WHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4z
|
1342 |
+
ZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDFMxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4
|
1343 |
+
bepJz11sS6/vmsJWXMY1VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK
|
1344 |
+
9U2vP9eCOKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqG
|
1345 |
+
SIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HWtWS3irO4G8za+6xm
|
1346 |
+
iEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZq51ihPZRwSzJIxXYKLerJRO1RuGG
|
1347 |
+
Av8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDbEJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnW
|
1348 |
+
mHyojf6GPgcWkuF75x3sM3Z+Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEW
|
1349 |
+
T1MKZPlO9L9OVL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490
|
1350 |
+
-----END CERTIFICATE-----
|
1351 |
+
|
1352 |
+
OISTE WISeKey Global Root GA CA
|
1353 |
+
===============================
|
1354 |
+
-----BEGIN CERTIFICATE-----
|
1355 |
+
MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCBijELMAkGA1UE
|
1356 |
+
BhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHlyaWdodCAoYykgMjAwNTEiMCAG
|
1357 |
+
A1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBH
|
1358 |
+
bG9iYWwgUm9vdCBHQSBDQTAeFw0wNTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYD
|
1359 |
+
VQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIw
|
1360 |
+
IAYDVQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5
|
1361 |
+
IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy0+zAJs9
|
1362 |
+
Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxRVVuuk+g3/ytr6dTqvirdqFEr12bDYVxg
|
1363 |
+
Asj1znJ7O7jyTmUIms2kahnBAbtzptf2w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbD
|
1364 |
+
d50kc3vkDIzh2TbhmYsFmQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ
|
1365 |
+
/yxViJGg4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t94B3R
|
1366 |
+
LoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw
|
1367 |
+
AwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ
|
1368 |
+
KoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOxSPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vIm
|
1369 |
+
MMkQyh2I+3QZH4VFvbBsUfk2ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4
|
1370 |
+
+vg1YFkCExh8vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa
|
1371 |
+
hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZiFj4A4xylNoEY
|
1372 |
+
okxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ/L7fCg0=
|
1373 |
+
-----END CERTIFICATE-----
|
1374 |
+
|
1375 |
+
Microsec e-Szigno Root CA
|
1376 |
+
=========================
|
1377 |
+
-----BEGIN CERTIFICATE-----
|
1378 |
+
MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAwcjELMAkGA1UE
|
1379 |
+
BhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNyb3NlYyBMdGQuMRQwEgYDVQQL
|
1380 |
+
EwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9zZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0
|
1381 |
+
MDYxMjI4NDRaFw0xNzA0MDYxMjI4NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVz
|
1382 |
+
dDEWMBQGA1UEChMNTWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMT
|
1383 |
+
GU1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
|
1384 |
+
AQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2uuO/TEdyB5s87lozWbxXG
|
1385 |
+
d36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/N
|
1386 |
+
oqdNAoI/gqyFxuEPkEeZlApxcpMqyabAvjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjc
|
1387 |
+
QR/Ji3HWVBTji1R4P770Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJ
|
1388 |
+
PqW+jqpx62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcBAQRb
|
1389 |
+
MFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3AwLQYIKwYBBQUHMAKG
|
1390 |
+
IWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAPBgNVHRMBAf8EBTADAQH/MIIBcwYD
|
1391 |
+
VR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIBAQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3
|
1392 |
+
LmUtc3ppZ25vLmh1L1NaU1ovMIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0A
|
1393 |
+
dAB2AOEAbgB5ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn
|
1394 |
+
AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABTAHoAbwBsAGcA
|
1395 |
+
4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABhACAAcwB6AGUAcgBpAG4AdAAg
|
1396 |
+
AGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABoAHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMA
|
1397 |
+
egBpAGcAbgBvAC4AaAB1AC8AUwBaAFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6
|
1398 |
+
Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NO
|
1399 |
+
PU1pY3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxPPU1pY3Jv
|
1400 |
+
c2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDtiaW5h
|
1401 |
+
cnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuBEGluZm9AZS1zemlnbm8uaHWkdzB1MSMw
|
1402 |
+
IQYDVQQDDBpNaWNyb3NlYyBlLVN6aWduw7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhT
|
1403 |
+
WjEWMBQGA1UEChMNTWljcm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhV
|
1404 |
+
MIGsBgNVHSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJIVTER
|
1405 |
+
MA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDASBgNVBAsTC2UtU3pp
|
1406 |
+
Z25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBSb290IENBghEAzLjnv04pGv2i3Gal
|
1407 |
+
HCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMT
|
1408 |
+
nGZjWS7KXHAM/IO8VbH0jgdsZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FE
|
1409 |
+
aGAHQzAxQmHl7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a
|
1410 |
+
86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfRhUZLphK3dehK
|
1411 |
+
yVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/MPMMNz7UwiiAc7EBt51alhQB
|
1412 |
+
S6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU=
|
1413 |
+
-----END CERTIFICATE-----
|
1414 |
+
|
1415 |
+
Certigna
|
1416 |
+
========
|
1417 |
+
-----BEGIN CERTIFICATE-----
|
1418 |
+
MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNVBAYTAkZSMRIw
|
1419 |
+
EAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4XDTA3MDYyOTE1MTMwNVoXDTI3
|
1420 |
+
MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwI
|
1421 |
+
Q2VydGlnbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7q
|
1422 |
+
XOEm7RFHYeGifBZ4QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyH
|
1423 |
+
GxnygQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbwzBfsV1/p
|
1424 |
+
ogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q130yGLMLLGq/jj8UEYkg
|
1425 |
+
DncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKf
|
1426 |
+
Irjxwo1p3Po6WAbfAgMBAAGjgbwwgbkwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQ
|
1427 |
+
tCRZvgHyUtVF9lo53BEwZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJ
|
1428 |
+
BgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzjAQ/J
|
1429 |
+
SP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG9w0BAQUFAAOCAQEA
|
1430 |
+
hQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8hbV6lUmPOEvjvKtpv6zf+EwLHyzs+
|
1431 |
+
ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFncfca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1klu
|
1432 |
+
PBS1xp81HlDQwY9qcEQCYsuuHWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY
|
1433 |
+
1gkIl2PlwS6wt0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw
|
1434 |
+
WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg==
|
1435 |
+
-----END CERTIFICATE-----
|
1436 |
+
|
1437 |
+
Deutsche Telekom Root CA 2
|
1438 |
+
==========================
|
1439 |
+
-----BEGIN CERTIFICATE-----
|
1440 |
+
MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMT
|
1441 |
+
RGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEG
|
1442 |
+
A1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENBIDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5
|
1443 |
+
MjM1OTAwWjBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0G
|
1444 |
+
A1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBS
|
1445 |
+
b290IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEUha88EOQ5
|
1446 |
+
bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhCQN/Po7qCWWqSG6wcmtoI
|
1447 |
+
KyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1MjwrrFDa1sPeg5TKqAyZMg4ISFZbavva4VhY
|
1448 |
+
AUlfckE8FQYBjl2tqriTtM2e66foai1SNNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aK
|
1449 |
+
Se5TBY8ZTNXeWHmb0mocQqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTV
|
1450 |
+
jlsB9WoHtxa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAPBgNV
|
1451 |
+
HRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAlGRZrTlk5ynr
|
1452 |
+
E/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756AbrsptJh6sTtU6zkXR34ajgv8HzFZMQSy
|
1453 |
+
zhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpaIzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8
|
1454 |
+
rZ7/gFnkm0W09juwzTkZmDLl6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4G
|
1455 |
+
dyd1Lx+4ivn+xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU
|
1456 |
+
Cm26OWMohpLzGITY+9HPBVZkVw==
|
1457 |
+
-----END CERTIFICATE-----
|
1458 |
+
|
1459 |
+
Cybertrust Global Root
|
1460 |
+
======================
|
1461 |
+
-----BEGIN CERTIFICATE-----
|
1462 |
+
MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYGA1UEChMPQ3li
|
1463 |
+
ZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBSb290MB4XDTA2MTIxNTA4
|
1464 |
+
MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQD
|
1465 |
+
ExZDeWJlcnRydXN0IEdsb2JhbCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
|
1466 |
+
+Mi8vRRQZhP/8NN57CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW
|
1467 |
+
0ozSJ8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2yHLtgwEZL
|
1468 |
+
AfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iPt3sMpTjr3kfb1V05/Iin
|
1469 |
+
89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNzFtApD0mpSPCzqrdsxacwOUBdrsTiXSZT
|
1470 |
+
8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAYXSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAP
|
1471 |
+
BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2
|
1472 |
+
MDSgMqAwhi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3JsMB8G
|
1473 |
+
A1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUAA4IBAQBW7wojoFRO
|
1474 |
+
lZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMjWqd8BfP9IjsO0QbE2zZMcwSO5bAi
|
1475 |
+
5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUxXOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2
|
1476 |
+
hO0j9n0Hq0V+09+zv+mKts2oomcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+T
|
1477 |
+
X3EJIrduPuocA06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW
|
1478 |
+
WL1WMRJOEcgh4LMRkWXbtKaIOM5V
|
1479 |
+
-----END CERTIFICATE-----
|
1480 |
+
|
1481 |
+
ePKI Root Certification Authority
|
1482 |
+
=================================
|
1483 |
+
-----BEGIN CERTIFICATE-----
|
1484 |
+
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
|
1510 |
+
-----END CERTIFICATE-----
|
1511 |
+
|
1512 |
+
T\xc3\x9c\x42\xC4\xB0TAK UEKAE K\xC3\xB6k Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1 - S\xC3\xBCr\xC3\xBCm 3
|
1513 |
+
=============================================================================================================================
|
1514 |
+
-----BEGIN CERTIFICATE-----
|
1515 |
+
MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRSMRgwFgYDVQQH
|
1516 |
+
DA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJpbGltc2VsIHZlIFRla25vbG9q
|
1517 |
+
aWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSwVEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ry
|
1518 |
+
b25payB2ZSBLcmlwdG9sb2ppIEFyYcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNV
|
1519 |
+
BAsMGkthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUg
|
1520 |
+
S8O2ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAeFw0wNzA4
|
1521 |
+
MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIxGDAWBgNVBAcMD0dlYnpl
|
1522 |
+
IC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmlsaW1zZWwgdmUgVGVrbm9sb2ppayBBcmHF
|
1523 |
+
n3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBUQUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZl
|
1524 |
+
IEtyaXB0b2xvamkgQXJhxZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2Ft
|
1525 |
+
dSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7ZrIFNl
|
1526 |
+
cnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIBIjANBgkqhkiG9w0B
|
1527 |
+
AQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4hgb46ezzb8R1Sf1n68yJMlaCQvEhO
|
1528 |
+
Eav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yKO7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1
|
1529 |
+
xnnRFDDtG1hba+818qEhTsXOfJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR
|
1530 |
+
6Oqeyjh1jmKwlZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL
|
1531 |
+
hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQIDAQABo0IwQDAd
|
1532 |
+
BgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF
|
1533 |
+
MAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmPNOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4
|
1534 |
+
N5EY3ATIZJkrGG2AA1nJrvhY0D7twyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLT
|
1535 |
+
y9LQQfMmNkqblWwM7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYh
|
1536 |
+
LBOhgLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5noN+J1q2M
|
1537 |
+
dqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUsyZyQ2uypQjyttgI=
|
1538 |
+
-----END CERTIFICATE-----
|
1539 |
+
|
1540 |
+
Buypass Class 2 CA 1
|
1541 |
+
====================
|
1542 |
+
-----BEGIN CERTIFICATE-----
|
1543 |
+
MIIDUzCCAjugAwIBAgIBATANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
|
1544 |
+
QnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3MgQ2xhc3MgMiBDQSAxMB4XDTA2
|
1545 |
+
MTAxMzEwMjUwOVoXDTE2MTAxMzEwMjUwOVowSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBh
|
1546 |
+
c3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDIgQ0EgMTCCASIwDQYJKoZI
|
1547 |
+
hvcNAQEBBQADggEPADCCAQoCggEBAIs8B0XY9t/mx8q6jUPFR42wWsE425KEHK8T1A9vNkYgxC7M
|
1548 |
+
cXA0ojTTNy7Y3Tp3L8DrKehc0rWpkTSHIln+zNvnma+WwajHQN2lFYxuyHyXA8vmIPLXl18xoS83
|
1549 |
+
0r7uvqmtqEyeIWZDO6i88wmjONVZJMHCR3axiFyCO7srpgTXjAePzdVBHfCuuCkslFJgNJQ72uA4
|
1550 |
+
0Z0zPhX0kzLFANq1KWYOOngPIVJfAuWSeyXTkh4vFZ2B5J2O6O+JzhRMVB0cgRJNcKi+EAUXfh/R
|
1551 |
+
uFdV7c27UsKwHnjCTTZoy1YmwVLBvXb3WNVyfh9EdrsAiR0WnVE1703CVu9r4Iw7DekCAwEAAaNC
|
1552 |
+
MEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUP42aWYv8e3uco684sDntkHGA1sgwDgYDVR0P
|
1553 |
+
AQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQAVGn4TirnoB6NLJzKyQJHyIdFkhb5jatLPgcIV
|
1554 |
+
1Xp+DCmsNx4cfHZSldq1fyOhKXdlyTKdqC5Wq2B2zha0jX94wNWZUYN/Xtm+DKhQ7SLHrQVMdvvt
|
1555 |
+
7h5HZPb3J31cKA9FxVxiXqaakZG3Uxcu3K1gnZZkOb1naLKuBctN518fV4bVIJwo+28TOPX2EZL2
|
1556 |
+
fZleHwzoq0QkKXJAPTZSr4xYkHPB7GEseaHsh7U/2k3ZIQAw3pDaDtMaSKk+hQsUi4y8QZ5q9w5w
|
1557 |
+
wDX3OaJdZtB7WZ+oRxKaJyOkLY4ng5IgodcVf/EuGO70SH8vf/GhGLWhC5SgYiAynB321O+/TIho
|
1558 |
+
-----END CERTIFICATE-----
|
1559 |
+
|
1560 |
+
EBG Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1
|
1561 |
+
==========================================================================
|
1562 |
+
-----BEGIN CERTIFICATE-----
|
1563 |
+
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
|
1590 |
+
-----END CERTIFICATE-----
|
1591 |
+
|
1592 |
+
certSIGN ROOT CA
|
1593 |
+
================
|
1594 |
+
-----BEGIN CERTIFICATE-----
|
1595 |
+
MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYTAlJPMREwDwYD
|
1596 |
+
VQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTAeFw0wNjA3MDQxNzIwMDRa
|
1597 |
+
Fw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UE
|
1598 |
+
CxMQY2VydFNJR04gUk9PVCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7I
|
1599 |
+
JUqOtdu0KBuqV5Do0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHH
|
1600 |
+
rfAQUySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5dRdY4zTW2
|
1601 |
+
ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQOA7+j0xbm0bqQfWwCHTD
|
1602 |
+
0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwvJoIQ4uNllAoEwF73XVv4EOLQunpL+943
|
1603 |
+
AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B
|
1604 |
+
Af8EBAMCAcYwHQYDVR0OBBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IB
|
1605 |
+
AQA+0hyJLjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecYMnQ8
|
1606 |
+
SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ44gx+FkagQnIl6Z0
|
1607 |
+
x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6IJd1hJyMctTEHBDa0GpC9oHRxUIlt
|
1608 |
+
vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz
|
1609 |
+
TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD
|
1610 |
+
-----END CERTIFICATE-----
|
1611 |
+
|
1612 |
+
CNNIC ROOT
|
1613 |
+
==========
|
1614 |
+
-----BEGIN CERTIFICATE-----
|
1615 |
+
MIIDVTCCAj2gAwIBAgIESTMAATANBgkqhkiG9w0BAQUFADAyMQswCQYDVQQGEwJDTjEOMAwGA1UE
|
1616 |
+
ChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwHhcNMDcwNDE2MDcwOTE0WhcNMjcwNDE2MDcw
|
1617 |
+
OTE0WjAyMQswCQYDVQQGEwJDTjEOMAwGA1UEChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1Qw
|
1618 |
+
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDTNfc/c3et6FtzF8LRb+1VvG7q6KR5smzD
|
1619 |
+
o+/hn7E7SIX1mlwhIhAsxYLO2uOabjfhhyzcuQxauohV3/2q2x8x6gHx3zkBwRP9SFIhxFXf2tiz
|
1620 |
+
VHa6dLG3fdfA6PZZxU3Iva0fFNrfWEQlMhkqx35+jq44sDB7R3IJMfAw28Mbdim7aXZOV/kbZKKT
|
1621 |
+
VrdvmW7bCgScEeOAH8tjlBAKqeFkgjH5jCftppkA9nCTGPihNIaj3XrCGHn2emU1z5DrvTOTn1Or
|
1622 |
+
czvmmzQgLx3vqR1jGqCA2wMv+SYahtKNu6m+UjqHZ0gNv7Sg2Ca+I19zN38m5pIEo3/PIKe38zrK
|
1623 |
+
y5nLAgMBAAGjczBxMBEGCWCGSAGG+EIBAQQEAwIABzAfBgNVHSMEGDAWgBRl8jGtKvf33VKWCscC
|
1624 |
+
wQ7vptU7ETAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIB/jAdBgNVHQ4EFgQUZfIxrSr3991S
|
1625 |
+
lgrHAsEO76bVOxEwDQYJKoZIhvcNAQEFBQADggEBAEs17szkrr/Dbq2flTtLP1se31cpolnKOOK5
|
1626 |
+
Gv+e5m4y3R6u6jW39ZORTtpC4cMXYFDy0VwmuYK36m3knITnA3kXr5g9lNvHugDnuL8BV8F3RTIM
|
1627 |
+
O/G0HAiw/VGgod2aHRM2mm23xzy54cXZF/qD1T0VoDy7HgviyJA/qIYM/PmLXoXLT1tLYhFHxUV8
|
1628 |
+
BS9BsZ4QaRuZluBVeftOhpm4lNqGOGqTo+fLbuXf6iFViZx9fX+Y9QCJ7uOEwFyWtcVG6kbghVW2
|
1629 |
+
G8kS1sHNzYDzAgE8yGnLRUhj2JTQ7IUOO04RZfSCjKY9ri4ilAnIXOo8gV0WKgOXFlUJ24pBgp5m
|
1630 |
+
mxE=
|
1631 |
+
-----END CERTIFICATE-----
|
1632 |
+
|
1633 |
+
ApplicationCA - Japanese Government
|
1634 |
+
===================================
|
1635 |
+
-----BEGIN CERTIFICATE-----
|
1636 |
+
MIIDoDCCAoigAwIBAgIBMTANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJKUDEcMBoGA1UEChMT
|
1637 |
+
SmFwYW5lc2UgR292ZXJubWVudDEWMBQGA1UECxMNQXBwbGljYXRpb25DQTAeFw0wNzEyMTIxNTAw
|
1638 |
+
MDBaFw0xNzEyMTIxNTAwMDBaMEMxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zl
|
1639 |
+
cm5tZW50MRYwFAYDVQQLEw1BcHBsaWNhdGlvbkNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
1640 |
+
CgKCAQEAp23gdE6Hj6UG3mii24aZS2QNcfAKBZuOquHMLtJqO8F6tJdhjYq+xpqcBrSGUeQ3DnR4
|
1641 |
+
fl+Kf5Sk10cI/VBaVuRorChzoHvpfxiSQE8tnfWuREhzNgaeZCw7NCPbXCbkcXmP1G55IrmTwcrN
|
1642 |
+
wVbtiGrXoDkhBFcsovW8R0FPXjQilbUfKW1eSvNNcr5BViCH/OlQR9cwFO5cjFW6WY2H/CPek9AE
|
1643 |
+
jP3vbb3QesmlOmpyM8ZKDQUXKi17safY1vC+9D/qDihtQWEjdnjDuGWk81quzMKq2edY3rZ+nYVu
|
1644 |
+
nyoKb58DKTCXKB28t89UKU5RMfkntigm/qJj5kEW8DOYRwIDAQABo4GeMIGbMB0GA1UdDgQWBBRU
|
1645 |
+
WssmP3HMlEYNllPqa0jQk/5CdTAOBgNVHQ8BAf8EBAMCAQYwWQYDVR0RBFIwUKROMEwxCzAJBgNV
|
1646 |
+
BAYTAkpQMRgwFgYDVQQKDA/ml6XmnKzlm73mlL/lupwxIzAhBgNVBAsMGuOCouODl+ODquOCseOD
|
1647 |
+
vOOCt+ODp+ODs0NBMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADlqRHZ3ODrs
|
1648 |
+
o2dGD/mLBqj7apAxzn7s2tGJfHrrLgy9mTLnsCTWw//1sogJhyzjVOGjprIIC8CFqMjSnHH2HZ9g
|
1649 |
+
/DgzE+Ge3Atf2hZQKXsvcJEPmbo0NI2VdMV+eKlmXb3KIXdCEKxmJj3ekav9FfBv7WxfEPjzFvYD
|
1650 |
+
io+nEhEMy/0/ecGc/WLuo89UDNErXxc+4z6/wCs+CZv+iKZ+tJIX/COUgb1up8WMwusRRdv4QcmW
|
1651 |
+
dupwX3kSa+SjB1oF7ydJzyGfikwJcGapJsErEU4z0g781mzSDjJkaP+tBXhfAx2o45CsJOAPQKdL
|
1652 |
+
rosot4LKGAfmt1t06SAZf7IbiVQ=
|
1653 |
+
-----END CERTIFICATE-----
|
1654 |
+
|
1655 |
+
GeoTrust Primary Certification Authority - G3
|
1656 |
+
=============================================
|
1657 |
+
-----BEGIN CERTIFICATE-----
|
1658 |
+
MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UE
|
1659 |
+
BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA4IEdlb1RydXN0
|
1660 |
+
IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFy
|
1661 |
+
eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIz
|
1662 |
+
NTk1OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAo
|
1663 |
+
YykgMjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMT
|
1664 |
+
LUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZI
|
1665 |
+
hvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5j
|
1666 |
+
K/BGvESyiaHAKAxJcCGVn2TAppMSAmUmhsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdE
|
1667 |
+
c5IiaacDiGydY8hS2pgn5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3C
|
1668 |
+
IShwiP/WJmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exALDmKu
|
1669 |
+
dlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZChuOl1UcCAwEAAaNC
|
1670 |
+
MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMR5yo6hTgMdHNxr
|
1671 |
+
2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IBAQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9
|
1672 |
+
cr5HqQ6XErhK8WTTOd8lNNTBzU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbE
|
1673 |
+
Ap7aDHdlDkQNkv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD
|
1674 |
+
AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUHSJsMC8tJP33s
|
1675 |
+
t/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2Gspki4cErx5z481+oghLrGREt
|
1676 |
+
-----END CERTIFICATE-----
|
1677 |
+
|
1678 |
+
thawte Primary Root CA - G2
|
1679 |
+
===========================
|
1680 |
+
-----BEGIN CERTIFICATE-----
|
1681 |
+
MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDELMAkGA1UEBhMC
|
1682 |
+
VVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMpIDIwMDcgdGhhd3RlLCBJbmMu
|
1683 |
+
IC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3Qg
|
1684 |
+
Q0EgLSBHMjAeFw0wNzExMDUwMDAwMDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEV
|
1685 |
+
MBMGA1UEChMMdGhhd3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBG
|
1686 |
+
b3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAt
|
1687 |
+
IEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/BebfowJPDQfGAFG6DAJS
|
1688 |
+
LSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6papu+7qzcMBniKI11KOasf2twu8x+qi5
|
1689 |
+
8/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU
|
1690 |
+
mtgAMADna3+FGO6Lts6KDPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUN
|
1691 |
+
G4k8VIZ3KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41oxXZ3K
|
1692 |
+
rr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg==
|
1693 |
+
-----END CERTIFICATE-----
|
1694 |
+
|
1695 |
+
thawte Primary Root CA - G3
|
1696 |
+
===========================
|
1697 |
+
-----BEGIN CERTIFICATE-----
|
1698 |
+
MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCBrjELMAkGA1UE
|
1699 |
+
BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2
|
1700 |
+
aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv
|
1701 |
+
cml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0w
|
1702 |
+
ODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh
|
1703 |
+
d3RlLCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMTgwNgYD
|
1704 |
+
VQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIG
|
1705 |
+
A1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
|
1706 |
+
MIIBCgKCAQEAsr8nLPvb2FvdeHsbnndmgcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2At
|
1707 |
+
P0LMqmsywCPLLEHd5N/8YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC
|
1708 |
+
+BsUa0Lfb1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS99irY
|
1709 |
+
7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2SzhkGcuYMXDhpxwTW
|
1710 |
+
vGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUkOQIDAQABo0IwQDAPBgNVHRMBAf8E
|
1711 |
+
BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJ
|
1712 |
+
KoZIhvcNAQELBQADggEBABpA2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweK
|
1713 |
+
A3rD6z8KLFIWoCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu
|
1714 |
+
t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7cKUGRIjxpp7sC
|
1715 |
+
8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fMm7v/OeZWYdMKp8RcTGB7BXcm
|
1716 |
+
er/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZuMdRAGmI0Nj81Aa6sY6A=
|
1717 |
+
-----END CERTIFICATE-----
|
1718 |
+
|
1719 |
+
GeoTrust Primary Certification Authority - G2
|
1720 |
+
=============================================
|
1721 |
+
-----BEGIN CERTIFICATE-----
|
1722 |
+
MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDELMAkGA1UEBhMC
|
1723 |
+
VVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA3IEdlb1RydXN0IElu
|
1724 |
+
Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBD
|
1725 |
+
ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1
|
1726 |
+
OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg
|
1727 |
+
MjAwNyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMTLUdl
|
1728 |
+
b1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjB2MBAGByqGSM49AgEG
|
1729 |
+
BSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcLSo17VDs6bl8VAsBQps8lL33KSLjHUGMc
|
1730 |
+
KiEIfJo22Av+0SbFWDEwKCXzXV2juLaltJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYD
|
1731 |
+
VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+
|
1732 |
+
EVXVMAoGCCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGTqQ7m
|
1733 |
+
ndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBuczrD6ogRLQy7rQkgu2
|
1734 |
+
npaqBA+K
|
1735 |
+
-----END CERTIFICATE-----
|
1736 |
+
|
1737 |
+
VeriSign Universal Root Certification Authority
|
1738 |
+
===============================================
|
1739 |
+
-----BEGIN CERTIFICATE-----
|
1740 |
+
MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCBvTELMAkGA1UE
|
1741 |
+
BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO
|
1742 |
+
ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk
|
1743 |
+
IHVzZSBvbmx5MTgwNgYDVQQDEy9WZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9u
|
1744 |
+
IEF1dGhvcml0eTAeFw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJV
|
1745 |
+
UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
|
1746 |
+
cmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
|
1747 |
+
IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmljYXRpb24gQXV0
|
1748 |
+
aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj
|
1749 |
+
1mCOkdeQmIN65lgZOIzF9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGP
|
1750 |
+
MiJhgsWHH26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+HLL72
|
1751 |
+
9fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN/BMReYTtXlT2NJ8I
|
1752 |
+
AfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPTrJ9VAMf2CGqUuV/c4DPxhGD5WycR
|
1753 |
+
tPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0G
|
1754 |
+
CCsGAQUFBwEMBGEwX6FdoFswWTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2O
|
1755 |
+
a8PPgGrUSBgsexkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud
|
1756 |
+
DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4sAPmLGd75JR3
|
1757 |
+
Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+seQxIcaBlVZaDrHC1LGmWazx
|
1758 |
+
Y8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTx
|
1759 |
+
P/jgdFcrGJ2BtMQo2pSXpXDrrB2+BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+P
|
1760 |
+
wGZsY6rp2aQW9IHRlRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4
|
1761 |
+
mJO37M2CYfE45k+XmCpajQ==
|
1762 |
+
-----END CERTIFICATE-----
|
1763 |
+
|
1764 |
+
VeriSign Class 3 Public Primary Certification Authority - G4
|
1765 |
+
============================================================
|
1766 |
+
-----BEGIN CERTIFICATE-----
|
1767 |
+
MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjELMAkGA1UEBhMC
|
1768 |
+
VVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3
|
1769 |
+
b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVz
|
1770 |
+
ZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmlj
|
1771 |
+
YXRpb24gQXV0aG9yaXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjEL
|
1772 |
+
MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBU
|
1773 |
+
cnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRo
|
1774 |
+
b3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5
|
1775 |
+
IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8
|
1776 |
+
Utpkmw4tXNherJI9/gHmGUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGz
|
1777 |
+
rl0Bp3vefLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUwAwEB
|
1778 |
+
/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEw
|
1779 |
+
HzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVyaXNpZ24u
|
1780 |
+
Y29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMWkf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMD
|
1781 |
+
A2gAMGUCMGYhDBgmYFo4e1ZC4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIx
|
1782 |
+
AJw9SDkjOVgaFRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA==
|
1783 |
+
-----END CERTIFICATE-----
|
1784 |
+
|
1785 |
+
NetLock Arany (Class Gold) Főtanúsítvány
|
1786 |
+
============================================
|
1787 |
+
-----BEGIN CERTIFICATE-----
|
1788 |
+
MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G
|
1789 |
+
A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610
|
1790 |
+
dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBB
|
1791 |
+
cmFueSAoQ2xhc3MgR29sZCkgRsWRdGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgx
|
1792 |
+
MjA2MTUwODIxWjCBpzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxO
|
1793 |
+
ZXRMb2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlmaWNhdGlv
|
1794 |
+
biBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNzIEdvbGQpIEbFkXRhbsO6
|
1795 |
+
c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxCRec75LbRTDofTjl5Bu
|
1796 |
+
0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrTlF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw
|
1797 |
+
/HpYzY6b7cNGbIRwXdrzAZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAk
|
1798 |
+
H3B5r9s5VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRGILdw
|
1799 |
+
fzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2BJtr+UBdADTHLpl1
|
1800 |
+
neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAGAQH/AgEEMA4GA1UdDwEB/wQEAwIB
|
1801 |
+
BjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2MU9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwW
|
1802 |
+
qZw8UQCgwBEIBaeZ5m8BiFRhbvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTta
|
1803 |
+
YtOUZcTh5m2C+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC
|
1804 |
+
bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2FuLjbvrW5Kfna
|
1805 |
+
NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu
|
1806 |
+
dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E=
|
1807 |
+
-----END CERTIFICATE-----
|
1808 |
+
|
1809 |
+
Staat der Nederlanden Root CA - G2
|
1810 |
+
==================================
|
1811 |
+
-----BEGIN CERTIFICATE-----
|
1812 |
+
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
|
1838 |
+
66+KAQ==
|
1839 |
+
-----END CERTIFICATE-----
|
1840 |
+
|
1841 |
+
Juur-SK
|
1842 |
+
=======
|
1843 |
+
-----BEGIN CERTIFICATE-----
|
1844 |
+
MIIE5jCCA86gAwIBAgIEO45L/DANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lA
|
1845 |
+
c2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAw
|
1846 |
+
DgYDVQQDEwdKdXVyLVNLMB4XDTAxMDgzMDE0MjMwMVoXDTE2MDgyNjE0MjMwMVowXTEYMBYGCSqG
|
1847 |
+
SIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVy
|
1848 |
+
aW1pc2tlc2t1czEQMA4GA1UEAxMHSnV1ci1TSzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
|
1849 |
+
ggEBAIFxNj4zB9bjMI0TfncyRsvPGbJgMUaXhvSYRqTCZUXP00B841oiqBB4M8yIsdOBSvZiF3tf
|
1850 |
+
TQou0M+LI+5PAk676w7KvRhj6IAcjeEcjT3g/1tf6mTll+g/mX8MCgkzABpTpyHhOEvWgxutr2TC
|
1851 |
+
+Rx6jGZITWYfGAriPrsfB2WThbkasLnE+w0R9vXW+RvHLCu3GFH+4Hv2qEivbDtPL+/40UceJlfw
|
1852 |
+
UR0zlv/vWT3aTdEVNMfqPxZIe5EcgEMPPbgFPtGzlc3Yyg/CQ2fbt5PgIoIuvvVoKIO5wTtpeyDa
|
1853 |
+
Tpxt4brNj3pssAki14sL2xzVWiZbDcDq5WDQn/413z8CAwEAAaOCAawwggGoMA8GA1UdEwEB/wQF
|
1854 |
+
MAMBAf8wggEWBgNVHSAEggENMIIBCTCCAQUGCisGAQQBzh8BAQEwgfYwgdAGCCsGAQUFBwICMIHD
|
1855 |
+
HoHAAFMAZQBlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0ACAAbwBuACAAdgDkAGwAagBhAHMAdABh
|
1856 |
+
AHQAdQBkACAAQQBTAC0AaQBzACAAUwBlAHIAdABpAGYAaQB0AHMAZQBlAHIAaQBtAGkAcwBrAGUA
|
1857 |
+
cwBrAHUAcwAgAGEAbABhAG0ALQBTAEsAIABzAGUAcgB0AGkAZgBpAGsAYQBhAHQAaQBkAGUAIABr
|
1858 |
+
AGkAbgBuAGkAdABhAG0AaQBzAGUAawBzMCEGCCsGAQUFBwIBFhVodHRwOi8vd3d3LnNrLmVlL2Nw
|
1859 |
+
cy8wKwYDVR0fBCQwIjAgoB6gHIYaaHR0cDovL3d3dy5zay5lZS9qdXVyL2NybC8wHQYDVR0OBBYE
|
1860 |
+
FASqekej5ImvGs8KQKcYP2/v6X2+MB8GA1UdIwQYMBaAFASqekej5ImvGs8KQKcYP2/v6X2+MA4G
|
1861 |
+
A1UdDwEB/wQEAwIB5jANBgkqhkiG9w0BAQUFAAOCAQEAe8EYlFOiCfP+JmeaUOTDBS8rNXiRTHyo
|
1862 |
+
ERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+gkcm2k298gFTsxwhwDY77guwqYHhpNjbRxZyL
|
1863 |
+
abVAyJRld/JXIWY7zoVAtjNjGr95HvxcHdMdkxuLDF2FvZkwMhgJkVLpfKG6/2SSmuz+Ne6ML678
|
1864 |
+
IIbsSt4beDI3poHSna9aEhbKmVv8b20OxaAehsmR0FyYgl9jDIpaq9iVpszLita/ZEuOyoqysOkh
|
1865 |
+
Mp6qqIWYNIE5ITuoOlIyPfZrN4YGWhWY3PARZv40ILcD9EEQfTmEeZZyY7aWAuVrua0ZTbvGRNs2
|
1866 |
+
yyqcjg==
|
1867 |
+
-----END CERTIFICATE-----
|
1868 |
+
|
1869 |
+
Hongkong Post Root CA 1
|
1870 |
+
=======================
|
1871 |
+
-----BEGIN CERTIFICATE-----
|
1872 |
+
MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoT
|
1873 |
+
DUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMB4XDTAzMDUx
|
1874 |
+
NTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25n
|
1875 |
+
IFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEF
|
1876 |
+
AAOCAQ8AMIIBCgKCAQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1
|
1877 |
+
ApzQjVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEnPzlTCeqr
|
1878 |
+
auh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjhZY4bXSNmO7ilMlHIhqqh
|
1879 |
+
qZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9nnV0ttgCXjqQesBCNnLsak3c78QA3xMY
|
1880 |
+
V18meMjWCnl3v/evt3a5pQuEF10Q6m/hq5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNV
|
1881 |
+
HRMBAf8ECDAGAQH/AgEDMA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7i
|
1882 |
+
h9legYsCmEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI37pio
|
1883 |
+
l7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clBoiMBdDhViw+5Lmei
|
1884 |
+
IAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJsEhTkYY2sEJCehFC78JZvRZ+K88ps
|
1885 |
+
T/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpOfMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilT
|
1886 |
+
c4afU9hDDl3WY4JxHYB0yvbiAmvZWg==
|
1887 |
+
-----END CERTIFICATE-----
|
1888 |
+
|
1889 |
+
SecureSign RootCA11
|
1890 |
+
===================
|
1891 |
+
-----BEGIN CERTIFICATE-----
|
1892 |
+
MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi
|
1893 |
+
SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS
|
1894 |
+
b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw
|
1895 |
+
KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1
|
1896 |
+
cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL
|
1897 |
+
TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO
|
1898 |
+
wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq
|
1899 |
+
g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP
|
1900 |
+
O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA
|
1901 |
+
bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX
|
1902 |
+
t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh
|
1903 |
+
OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r
|
1904 |
+
bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ
|
1905 |
+
Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01
|
1906 |
+
y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061
|
1907 |
+
lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I=
|
1908 |
+
-----END CERTIFICATE-----
|
1909 |
+
|
1910 |
+
ACEDICOM Root
|
1911 |
+
=============
|
1912 |
+
-----BEGIN CERTIFICATE-----
|
1913 |
+
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
|
1939 |
+
-----END CERTIFICATE-----
|
1940 |
+
|
1941 |
+
Microsec e-Szigno Root CA 2009
|
1942 |
+
==============================
|
1943 |
+
-----BEGIN CERTIFICATE-----
|
1944 |
+
MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYDVQQGEwJIVTER
|
1945 |
+
MA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jv
|
1946 |
+
c2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o
|
1947 |
+
dTAeFw0wOTA2MTYxMTMwMThaFw0yOTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UE
|
1948 |
+
BwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUt
|
1949 |
+
U3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTCCASIw
|
1950 |
+
DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvPkd6mJviZpWNwrZuuyjNA
|
1951 |
+
fW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tccbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG
|
1952 |
+
0IMZfcChEhyVbUr02MelTTMuhTlAdX4UfIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKA
|
1953 |
+
pxn1ntxVUwOXewdI/5n7N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm
|
1954 |
+
1HxdrtbCxkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1+rUC
|
1955 |
+
AwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTLD8bf
|
1956 |
+
QkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAbBgNVHREE
|
1957 |
+
FDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqGSIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0o
|
1958 |
+
lZMEyL/azXm4Q5DwpL7v8u8hmLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfX
|
1959 |
+
I/OMn74dseGkddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775
|
1960 |
+
tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c2Pm2G2JwCz02
|
1961 |
+
yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5tHMN1Rq41Bab2XD0h7lbwyYIi
|
1962 |
+
LXpUq3DDfSJlgnCW
|
1963 |
+
-----END CERTIFICATE-----
|
1964 |
+
|
1965 |
+
GlobalSign Root CA - R3
|
1966 |
+
=======================
|
1967 |
+
-----BEGIN CERTIFICATE-----
|
1968 |
+
MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xv
|
1969 |
+
YmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh
|
1970 |
+
bFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT
|
1971 |
+
aWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln
|
1972 |
+
bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWt
|
1973 |
+
iHL8RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsTgHeMCOFJ
|
1974 |
+
0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmmKPZpO/bLyCiR5Z2KYVc3
|
1975 |
+
rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zdQQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjl
|
1976 |
+
OCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZXriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2
|
1977 |
+
xmmFghcCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE
|
1978 |
+
FI/wS3+oLkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZURUm7
|
1979 |
+
lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMpjjM5RcOO5LlXbKr8
|
1980 |
+
EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E
|
1981 |
+
bddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQXmcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18
|
1982 |
+
YIvDQVETI53O9zJrlAGomecsMx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7r
|
1983 |
+
kpeDMdmztcpHWD9f
|
1984 |
+
-----END CERTIFICATE-----
|
1985 |
+
|
1986 |
+
Autoridad de Certificacion Firmaprofesional CIF A62634068
|
1987 |
+
=========================================================
|
1988 |
+
-----BEGIN CERTIFICATE-----
|
1989 |
+
MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UEBhMCRVMxQjBA
|
1990 |
+
BgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2
|
1991 |
+
MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEyMzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIw
|
1992 |
+
QAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBB
|
1993 |
+
NjI2MzQwNjgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDD
|
1994 |
+
Utd9thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQMcas9UX4P
|
1995 |
+
B99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefGL9ItWY16Ck6WaVICqjaY
|
1996 |
+
7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15iNA9wBj4gGFrO93IbJWyTdBSTo3OxDqqH
|
1997 |
+
ECNZXyAFGUftaI6SEspd/NYrspI8IM/hX68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyI
|
1998 |
+
plD9amML9ZMWGxmPsu2bm8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctX
|
1999 |
+
MbScyJCyZ/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirjaEbsX
|
2000 |
+
LZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/TKI8xWVvTyQKmtFLK
|
2001 |
+
bpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF6NkBiDkal4ZkQdU7hwxu+g/GvUgU
|
2002 |
+
vzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVhOSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1Ud
|
2003 |
+
EwEB/wQIMAYBAf8CAQEwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNH
|
2004 |
+
DhpkLzCBpgYDVR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp
|
2005 |
+
cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBvACAAZABlACAA
|
2006 |
+
bABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBlAGwAbwBuAGEAIAAwADgAMAAx
|
2007 |
+
ADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx
|
2008 |
+
51tkljYyGOylMnfX40S2wBEqgLk9am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qk
|
2009 |
+
R71kMrv2JYSiJ0L1ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaP
|
2010 |
+
T481PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS3a/DTg4f
|
2011 |
+
Jl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5kSeTy36LssUzAKh3ntLFl
|
2012 |
+
osS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF3dvd6qJ2gHN99ZwExEWN57kci57q13XR
|
2013 |
+
crHedUTnQn3iV2t93Jm8PYMo6oCTjcVMZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoR
|
2014 |
+
saS8I8nkvof/uZS2+F0gStRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTD
|
2015 |
+
KCOM/iczQ0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQBjLMi
|
2016 |
+
6Et8Vcad+qMUu2WFbm5PEn4KPJ2V
|
2017 |
+
-----END CERTIFICATE-----
|
2018 |
+
|
2019 |
+
Izenpe.com
|
2020 |
+
==========
|
2021 |
+
-----BEGIN CERTIFICATE-----
|
2022 |
+
MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4MQswCQYDVQQG
|
2023 |
+
EwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wHhcNMDcxMjEz
|
2024 |
+
MTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMu
|
2025 |
+
QS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ
|
2026 |
+
03rKDx6sp4boFmVqscIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAK
|
2027 |
+
ClaOxdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6HLmYRY2xU
|
2028 |
+
+zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFXuaOKmMPsOzTFlUFpfnXC
|
2029 |
+
PCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQDyCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxT
|
2030 |
+
OTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbK
|
2031 |
+
F7jJeodWLBoBHmy+E60QrLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK
|
2032 |
+
0GqfvEyNBjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8Lhij+
|
2033 |
+
0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIBQFqNeb+Lz0vPqhbB
|
2034 |
+
leStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+HMh3/1uaD7euBUbl8agW7EekFwID
|
2035 |
+
AQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2luZm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+
|
2036 |
+
SVpFTlBFIFMuQS4gLSBDSUYgQTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBG
|
2037 |
+
NjIgUzgxQzBBBgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx
|
2038 |
+
MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O
|
2039 |
+
BBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUAA4ICAQB4pgwWSp9MiDrAyw6l
|
2040 |
+
Fn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWblaQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbga
|
2041 |
+
kEyrkgPH7UIBzg/YsfqikuFgba56awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8q
|
2042 |
+
hT/AQKM6WfxZSzwoJNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Cs
|
2043 |
+
g1lwLDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCTVyvehQP5
|
2044 |
+
aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGkLhObNA5me0mrZJfQRsN5
|
2045 |
+
nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJbUjWumDqtujWTI6cfSN01RpiyEGjkpTHC
|
2046 |
+
ClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZo
|
2047 |
+
Q0iy2+tzJOeRf1SktoA+naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1Z
|
2048 |
+
WrOZyGlsQyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw==
|
2049 |
+
-----END CERTIFICATE-----
|
2050 |
+
|
2051 |
+
Chambers of Commerce Root - 2008
|
2052 |
+
================================
|
2053 |
+
-----BEGIN CERTIFICATE-----
|
2054 |
+
MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYDVQQGEwJFVTFD
|
2055 |
+
MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv
|
2056 |
+
bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu
|
2057 |
+
QS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEy
|
2058 |
+
Mjk1MFoXDTM4MDczMTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNl
|
2059 |
+
ZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQF
|
2060 |
+
EwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJl
|
2061 |
+
cnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC
|
2062 |
+
AQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW928sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKA
|
2063 |
+
XuFixrYp4YFs8r/lfTJqVKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorj
|
2064 |
+
h40G072QDuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR5gN/
|
2065 |
+
ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfLZEFHcpOrUMPrCXZk
|
2066 |
+
NNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05aSd+pZgvMPMZ4fKecHePOjlO+Bd5g
|
2067 |
+
D2vlGts/4+EhySnB8esHnFIbAURRPHsl18TlUlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331
|
2068 |
+
lubKgdaX8ZSD6e2wsWsSaR6s+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ
|
2069 |
+
0wlf2eOKNcx5Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj
|
2070 |
+
ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAxhduub+84Mxh2
|
2071 |
+
EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNVHQ4EFgQU+SSsD7K1+HnA+mCI
|
2072 |
+
G8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJ
|
2073 |
+
BgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNh
|
2074 |
+
bWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENh
|
2075 |
+
bWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDiC
|
2076 |
+
CQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUH
|
2077 |
+
AgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAJASryI1
|
2078 |
+
wqM58C7e6bXpeHxIvj99RZJe6dqxGfwWPJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH
|
2079 |
+
3qLPaYRgM+gQDROpI9CF5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbU
|
2080 |
+
RWpGqOt1glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaHFoI6
|
2081 |
+
M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2pSB7+R5KBWIBpih1
|
2082 |
+
YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MDxvbxrN8y8NmBGuScvfaAFPDRLLmF
|
2083 |
+
9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QGtjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcK
|
2084 |
+
zBIKinmwPQN/aUv0NCB9szTqjktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvG
|
2085 |
+
nrDQWzilm1DefhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg
|
2086 |
+
OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZd0jQ
|
2087 |
+
-----END CERTIFICATE-----
|
2088 |
+
|
2089 |
+
Global Chambersign Root - 2008
|
2090 |
+
==============================
|
2091 |
+
-----BEGIN CERTIFICATE-----
|
2092 |
+
MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYDVQQGEwJFVTFD
|
2093 |
+
MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv
|
2094 |
+
bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu
|
2095 |
+
QS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMx
|
2096 |
+
NDBaFw0zODA3MzExMjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUg
|
2097 |
+
Y3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJ
|
2098 |
+
QTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD
|
2099 |
+
aGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDf
|
2100 |
+
VtPkOpt2RbQT2//BthmLN0EYlVJH6xedKYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXf
|
2101 |
+
XjaOcNFccUMd2drvXNL7G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0
|
2102 |
+
ZJJ0YPP2zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4ddPB
|
2103 |
+
/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyGHoiMvvKRhI9lNNgA
|
2104 |
+
TH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2Id3UwD2ln58fQ1DJu7xsepeY7s2M
|
2105 |
+
H/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3VyJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfe
|
2106 |
+
Ox2YItaswTXbo6Al/3K1dh3ebeksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSF
|
2107 |
+
HTynyQbehP9r6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh
|
2108 |
+
wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsogzCtLkykPAgMB
|
2109 |
+
AAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQWBBS5CcqcHtvTbDprru1U8VuT
|
2110 |
+
BjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDprru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UE
|
2111 |
+
BhMCRVUxQzBBBgNVBAcTOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJm
|
2112 |
+
aXJtYS5jb20vYWRkcmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJm
|
2113 |
+
aXJtYSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiCCQDJzdPp
|
2114 |
+
1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0
|
2115 |
+
dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAICIf3DekijZBZRG
|
2116 |
+
/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZUohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6
|
2117 |
+
ReAJ3spED8IXDneRRXozX1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/s
|
2118 |
+
dZ7LoR/xfxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVza2Mg
|
2119 |
+
9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yydYhz2rXzdpjEetrHH
|
2120 |
+
foUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMdSqlapskD7+3056huirRXhOukP9Du
|
2121 |
+
qqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9OAP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETr
|
2122 |
+
P3iZ8ntxPjzxmKfFGBI/5rsoM0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVq
|
2123 |
+
c5iJWzouE4gev8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z
|
2124 |
+
09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B
|
2125 |
+
-----END CERTIFICATE-----
|
2126 |
+
|
2127 |
+
Go Daddy Root Certificate Authority - G2
|
2128 |
+
========================================
|
2129 |
+
-----BEGIN CERTIFICATE-----
|
2130 |
+
MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
|
2131 |
+
B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu
|
2132 |
+
MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5
|
2133 |
+
MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6
|
2134 |
+
b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G
|
2135 |
+
A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI
|
2136 |
+
hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq
|
2137 |
+
9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD
|
2138 |
+
+qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd
|
2139 |
+
fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl
|
2140 |
+
NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC
|
2141 |
+
MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9
|
2142 |
+
BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac
|
2143 |
+
vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r
|
2144 |
+
5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV
|
2145 |
+
N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO
|
2146 |
+
LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1
|
2147 |
+
-----END CERTIFICATE-----
|
2148 |
+
|
2149 |
+
Starfield Root Certificate Authority - G2
|
2150 |
+
=========================================
|
2151 |
+
-----BEGIN CERTIFICATE-----
|
2152 |
+
MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
|
2153 |
+
B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s
|
2154 |
+
b2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVsZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0
|
2155 |
+
eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAw
|
2156 |
+
DgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQg
|
2157 |
+
VGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZpY2F0ZSBB
|
2158 |
+
dXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3twQP89o/8ArFv
|
2159 |
+
W59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMgnLRJdzIpVv257IzdIvpy3Cdhl+72WoTs
|
2160 |
+
bhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNk
|
2161 |
+
N3mSwOxGXn/hbVNMYq/NHwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7Nf
|
2162 |
+
ZTD4p7dNdloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0HZbU
|
2163 |
+
JtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
|
2164 |
+
AQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0GCSqGSIb3DQEBCwUAA4IBAQARWfol
|
2165 |
+
TwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjUsHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx
|
2166 |
+
4mcujJUDJi5DnUox9g61DLu34jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUw
|
2167 |
+
F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K
|
2168 |
+
pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1mMpYjn0q7pBZ
|
2169 |
+
c2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0
|
2170 |
+
-----END CERTIFICATE-----
|
2171 |
+
|
2172 |
+
Starfield Services Root Certificate Authority - G2
|
2173 |
+
==================================================
|
2174 |
+
-----BEGIN CERTIFICATE-----
|
2175 |
+
MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
|
2176 |
+
B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s
|
2177 |
+
b2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRl
|
2178 |
+
IEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNV
|
2179 |
+
BAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxT
|
2180 |
+
dGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMg
|
2181 |
+
Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
|
2182 |
+
AQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2
|
2183 |
+
h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4Pa
|
2184 |
+
hHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLP
|
2185 |
+
LJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFB
|
2186 |
+
rMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAwDwYDVR0TAQH/BAUw
|
2187 |
+
AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMA0GCSqG
|
2188 |
+
SIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMIbw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPP
|
2189 |
+
E95Dz+I0swSdHynVv/heyNXBve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTy
|
2190 |
+
xQGjhdByPq1zqwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd
|
2191 |
+
iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn0q23KXB56jza
|
2192 |
+
YyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCNsSi6
|
2193 |
+
-----END CERTIFICATE-----
|
2194 |
+
|
2195 |
+
AffirmTrust Commercial
|
2196 |
+
======================
|
2197 |
+
-----BEGIN CERTIFICATE-----
|
2198 |
+
MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCVVMxFDAS
|
2199 |
+
BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMB4XDTEw
|
2200 |
+
MDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly
|
2201 |
+
bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEF
|
2202 |
+
AAOCAQ8AMIIBCgKCAQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6Eqdb
|
2203 |
+
DuKPHx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yrba0F8PrV
|
2204 |
+
C8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPALMeIrJmqbTFeurCA+ukV6
|
2205 |
+
BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1yHp52UKqK39c/s4mT6NmgTWvRLpUHhww
|
2206 |
+
MmWd5jyTXlBOeuM61G7MGvv50jeuJCqrVwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNV
|
2207 |
+
HQ4EFgQUnZPGU4teyq8/nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
|
2208 |
+
AQYwDQYJKoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYGXUPG
|
2209 |
+
hi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNjvbz4YYCanrHOQnDi
|
2210 |
+
qX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivtZ8SOyUOyXGsViQK8YvxO8rUzqrJv
|
2211 |
+
0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9gN53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0kh
|
2212 |
+
sUlHRUe072o0EclNmsxZt9YCnlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8=
|
2213 |
+
-----END CERTIFICATE-----
|
2214 |
+
|
2215 |
+
AffirmTrust Networking
|
2216 |
+
======================
|
2217 |
+
-----BEGIN CERTIFICATE-----
|
2218 |
+
MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UEBhMCVVMxFDAS
|
2219 |
+
BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMB4XDTEw
|
2220 |
+
MDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly
|
2221 |
+
bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEF
|
2222 |
+
AAOCAQ8AMIIBCgKCAQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SE
|
2223 |
+
Hi3yYJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbuakCNrmreI
|
2224 |
+
dIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRLQESxG9fhwoXA3hA/Pe24
|
2225 |
+
/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gb
|
2226 |
+
h+0t+nvujArjqWaJGctB+d1ENmHP4ndGyH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNV
|
2227 |
+
HQ4EFgQUBx/S55zawm6iQLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
|
2228 |
+
AQYwDQYJKoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfOtDIu
|
2229 |
+
UFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzuQY0x2+c06lkh1QF6
|
2230 |
+
12S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZLgo/bNjR9eUJtGxUAArgFU2HdW23
|
2231 |
+
WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4uolu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9
|
2232 |
+
/ZFvgrG+CJPbFEfxojfHRZ48x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s=
|
2233 |
+
-----END CERTIFICATE-----
|
2234 |
+
|
2235 |
+
AffirmTrust Premium
|
2236 |
+
===================
|
2237 |
+
-----BEGIN CERTIFICATE-----
|
2238 |
+
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
|
2262 |
+
-----END CERTIFICATE-----
|
2263 |
+
|
2264 |
+
AffirmTrust Premium ECC
|
2265 |
+
=======================
|
2266 |
+
-----BEGIN CERTIFICATE-----
|
2267 |
+
MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMCVVMxFDASBgNV
|
2268 |
+
BAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQcmVtaXVtIEVDQzAeFw0xMDAx
|
2269 |
+
MjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJBgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1U
|
2270 |
+
cnVzdDEgMB4GA1UEAwwXQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQA
|
2271 |
+
IgNiAAQNMF4bFZ0D0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQ
|
2272 |
+
N8O9ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0GA1UdDgQW
|
2273 |
+
BBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAK
|
2274 |
+
BggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/VsaobgxCd05DhT1wV/GzTjxi+zygk8N53X
|
2275 |
+
57hG8f2h4nECMEJZh0PUUd+60wkyWs6Iflc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKM
|
2276 |
+
eQ==
|
2277 |
+
-----END CERTIFICATE-----
|
2278 |
+
|
2279 |
+
Certum Trusted Network CA
|
2280 |
+
=========================
|
2281 |
+
-----BEGIN CERTIFICATE-----
|
2282 |
+
MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBMMSIwIAYDVQQK
|
2283 |
+
ExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlv
|
2284 |
+
biBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBUcnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIy
|
2285 |
+
MTIwNzM3WhcNMjkxMjMxMTIwNzM3WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBU
|
2286 |
+
ZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5
|
2287 |
+
MSIwIAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC
|
2288 |
+
AQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rHUV+rpDKmYYe2bg+G0jAC
|
2289 |
+
l/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LMTXPb865Px1bVWqeWifrzq2jUI4ZZJ88J
|
2290 |
+
J7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVUBBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4
|
2291 |
+
fOQtf/WsX+sWn7Et0brMkUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0
|
2292 |
+
cvW0QM8xAcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNVHRMB
|
2293 |
+
Af8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYw
|
2294 |
+
DQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15ysHhE49wcrwn9I0j6vSrEuVUEtRCj
|
2295 |
+
jSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfLI9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1
|
2296 |
+
mS1FhIrlQgnXdAIv94nYmem8J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5aj
|
2297 |
+
Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI
|
2298 |
+
03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw=
|
2299 |
+
-----END CERTIFICATE-----
|
2300 |
+
|
2301 |
+
Certinomis - Autorité Racine
|
2302 |
+
=============================
|
2303 |
+
-----BEGIN CERTIFICATE-----
|
2304 |
+
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
|
2329 |
+
vgt2Fl43N+bYdJeimUV5
|
2330 |
+
-----END CERTIFICATE-----
|
2331 |
+
|
2332 |
+
Root CA Generalitat Valenciana
|
2333 |
+
==============================
|
2334 |
+
-----BEGIN CERTIFICATE-----
|
2335 |
+
MIIGizCCBXOgAwIBAgIEO0XlaDANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJFUzEfMB0GA1UE
|
2336 |
+
ChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290
|
2337 |
+
IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwHhcNMDEwNzA2MTYyMjQ3WhcNMjEwNzAxMTUyMjQ3
|
2338 |
+
WjBoMQswCQYDVQQGEwJFUzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UE
|
2339 |
+
CxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwggEiMA0G
|
2340 |
+
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGKqtXETcvIorKA3Qdyu0togu8M1JAJke+WmmmO3I2
|
2341 |
+
F0zo37i7L3bhQEZ0ZQKQUgi0/6iMweDHiVYQOTPvaLRfX9ptI6GJXiKjSgbwJ/BXufjpTjJ3Cj9B
|
2342 |
+
ZPPrZe52/lSqfR0grvPXdMIKX/UIKFIIzFVd0g/bmoGlu6GzwZTNVOAydTGRGmKy3nXiz0+J2ZGQ
|
2343 |
+
D0EbtFpKd71ng+CT516nDOeB0/RSrFOyA8dEJvt55cs0YFAQexvba9dHq198aMpunUEDEO5rmXte
|
2344 |
+
JajCq+TA81yc477OMUxkHl6AovWDfgzWyoxVjr7gvkkHD6MkQXpYHYTqWBLI4bft75PelAgxAgMB
|
2345 |
+
AAGjggM7MIIDNzAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnBraS5n
|
2346 |
+
dmEuZXMwEgYDVR0TAQH/BAgwBgEB/wIBAjCCAjQGA1UdIASCAiswggInMIICIwYKKwYBBAG/VQIB
|
2347 |
+
ADCCAhMwggHoBggrBgEFBQcCAjCCAdoeggHWAEEAdQB0AG8AcgBpAGQAYQBkACAAZABlACAAQwBl
|
2348 |
+
AHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAFIAYQDtAHoAIABkAGUAIABsAGEAIABHAGUAbgBlAHIA
|
2349 |
+
YQBsAGkAdABhAHQAIABWAGEAbABlAG4AYwBpAGEAbgBhAC4ADQAKAEwAYQAgAEQAZQBjAGwAYQBy
|
2350 |
+
AGEAYwBpAPMAbgAgAGQAZQAgAFAAcgDhAGMAdABpAGMAYQBzACAAZABlACAAQwBlAHIAdABpAGYA
|
2351 |
+
aQBjAGEAYwBpAPMAbgAgAHEAdQBlACAAcgBpAGcAZQAgAGUAbAAgAGYAdQBuAGMAaQBvAG4AYQBt
|
2352 |
+
AGkAZQBuAHQAbwAgAGQAZQAgAGwAYQAgAHAAcgBlAHMAZQBuAHQAZQAgAEEAdQB0AG8AcgBpAGQA
|
2353 |
+
YQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAHMAZQAgAGUAbgBjAHUAZQBu
|
2354 |
+
AHQAcgBhACAAZQBuACAAbABhACAAZABpAHIAZQBjAGMAaQDzAG4AIAB3AGUAYgAgAGgAdAB0AHAA
|
2355 |
+
OgAvAC8AdwB3AHcALgBwAGsAaQAuAGcAdgBhAC4AZQBzAC8AYwBwAHMwJQYIKwYBBQUHAgEWGWh0
|
2356 |
+
dHA6Ly93d3cucGtpLmd2YS5lcy9jcHMwHQYDVR0OBBYEFHs100DSHHgZZu90ECjcPk+yeAT8MIGV
|
2357 |
+
BgNVHSMEgY0wgYqAFHs100DSHHgZZu90ECjcPk+yeAT8oWykajBoMQswCQYDVQQGEwJFUzEfMB0G
|
2358 |
+
A1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5S
|
2359 |
+
b290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmGCBDtF5WgwDQYJKoZIhvcNAQEFBQADggEBACRh
|
2360 |
+
TvW1yEICKrNcda3FbcrnlD+laJWIwVTAEGmiEi8YPyVQqHxK6sYJ2fR1xkDar1CdPaUWu20xxsdz
|
2361 |
+
Ckj+IHLtb8zog2EWRpABlUt9jppSCS/2bxzkoXHPjCpaF3ODR00PNvsETUlR4hTJZGH71BTg9J63
|
2362 |
+
NI8KJr2XXPR5OkowGcytT6CYirQxlyric21+eLj4iIlPsSKRZEv1UN4D2+XFducTZnV+ZfsBn5OH
|
2363 |
+
iJ35Rld8TWCvmHMTI6QgkYH60GFmuH3Rr9ZvHmw96RH9qfmCIoaZM3Fa6hlXPZHNqcCjbgcTpsnt
|
2364 |
+
+GijnsNacgmHKNHEc8RzGF9QdRYxn7fofMM=
|
2365 |
+
-----END CERTIFICATE-----
|
2366 |
+
|
2367 |
+
TWCA Root Certification Authority
|
2368 |
+
=================================
|
2369 |
+
-----BEGIN CERTIFICATE-----
|
2370 |
+
MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJ
|
2371 |
+
VEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlmaWNh
|
2372 |
+
dGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMzWhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQG
|
2373 |
+
EwJUVzESMBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NB
|
2374 |
+
IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
|
2375 |
+
AoIBAQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFEAcK0HMMx
|
2376 |
+
QhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HHK3XLfJ+utdGdIzdjp9xC
|
2377 |
+
oi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeXRfwZVzsrb+RH9JlF/h3x+JejiB03HFyP
|
2378 |
+
4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/zrX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1r
|
2379 |
+
y+UPizgN7gr8/g+YnzAx3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIB
|
2380 |
+
BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkqhkiG
|
2381 |
+
9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeCMErJk/9q56YAf4lC
|
2382 |
+
mtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdlsXebQ79NqZp4VKIV66IIArB6nCWlW
|
2383 |
+
QtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62Dlhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVY
|
2384 |
+
T0bf+215WfKEIlKuD8z7fDvnaspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocny
|
2385 |
+
Yh0igzyXxfkZYiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw==
|
2386 |
+
-----END CERTIFICATE-----
|
2387 |
+
|
2388 |
+
Security Communication RootCA2
|
2389 |
+
==============================
|
2390 |
+
-----BEGIN CERTIFICATE-----
|
2391 |
+
MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc
|
2392 |
+
U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMeU2VjdXJpdHkgQ29tbXVuaWNh
|
2393 |
+
dGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoXDTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMC
|
2394 |
+
SlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3Vy
|
2395 |
+
aXR5IENvbW11bmljYXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
|
2396 |
+
ANAVOVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGrzbl+dp++
|
2397 |
+
+T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVMVAX3NuRFg3sUZdbcDE3R
|
2398 |
+
3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQhNBqyjoGADdH5H5XTz+L62e4iKrFvlNV
|
2399 |
+
spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K
|
2400 |
+
EOtOghY6rCcMU/Gt1SSwawNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8
|
2401 |
+
QIH4D5csOPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEB
|
2402 |
+
CwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpFcoJxDjrSzG+ntKEj
|
2403 |
+
u/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXcokgfGT+Ok+vx+hfuzU7jBBJV1uXk
|
2404 |
+
3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6q
|
2405 |
+
tnRGEmyR7jTV7JqR50S+kDFy1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29
|
2406 |
+
mvVXIwAHIRc/SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03
|
2407 |
+
-----END CERTIFICATE-----
|
2408 |
+
|
2409 |
+
EC-ACC
|
2410 |
+
======
|
2411 |
+
-----BEGIN CERTIFICATE-----
|
2412 |
+
MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB8zELMAkGA1UE
|
2413 |
+
BhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0w
|
2414 |
+
ODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYD
|
2415 |
+
VQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UE
|
2416 |
+
CxMsSmVyYXJxdWlhIEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMT
|
2417 |
+
BkVDLUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQGEwJFUzE7
|
2418 |
+
MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYt
|
2419 |
+
SSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZl
|
2420 |
+
Z2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJh
|
2421 |
+
cnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUND
|
2422 |
+
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R85iK
|
2423 |
+
w5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm4CgPukLjbo73FCeT
|
2424 |
+
ae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaVHMf5NLWUhdWZXqBIoH7nF2W4onW4
|
2425 |
+
HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNdQlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0a
|
2426 |
+
E9jD2z3Il3rucO2n5nzbcc8tlGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw
|
2427 |
+
0JDnJwIDAQABo4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E
|
2428 |
+
BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4opvpXY0wfwYD
|
2429 |
+
VR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBodHRwczovL3d3dy5jYXRjZXJ0
|
2430 |
+
Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5l
|
2431 |
+
dC92ZXJhcnJlbCAwDQYJKoZIhvcNAQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJ
|
2432 |
+
lF7W2u++AVtd0x7Y/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNa
|
2433 |
+
Al6kSBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhyRp/7SNVe
|
2434 |
+
l+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOSAgu+TGbrIP65y7WZf+a2
|
2435 |
+
E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xlnJ2lYJU6Un/10asIbvPuW/mIPX64b24D
|
2436 |
+
5EI=
|
2437 |
+
-----END CERTIFICATE-----
|
2438 |
+
|
2439 |
+
Hellenic Academic and Research Institutions RootCA 2011
|
2440 |
+
=======================================================
|
2441 |
+
-----BEGIN CERTIFICATE-----
|
2442 |
+
MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1IxRDBCBgNVBAoT
|
2443 |
+
O0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9y
|
2444 |
+
aXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z
|
2445 |
+
IFJvb3RDQSAyMDExMB4XDTExMTIwNjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYT
|
2446 |
+
AkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z
|
2447 |
+
IENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNo
|
2448 |
+
IEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
|
2449 |
+
AKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPzdYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI
|
2450 |
+
1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJfel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa
|
2451 |
+
71HFK9+WXesyHgLacEnsbgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u
|
2452 |
+
8yBRQlqD75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSPFEDH
|
2453 |
+
3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNVHRMBAf8EBTADAQH/
|
2454 |
+
MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp5dgTBCPuQSUwRwYDVR0eBEAwPqA8
|
2455 |
+
MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQub3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQu
|
2456 |
+
b3JnMA0GCSqGSIb3DQEBBQUAA4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVt
|
2457 |
+
XdMiKahsog2p6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8
|
2458 |
+
TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7dIsXRSZMFpGD
|
2459 |
+
/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8AcysNnq/onN694/BtZqhFLKPM58N
|
2460 |
+
7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXIl7WdmplNsDz4SgCbZN2fOUvRJ9e4
|
2461 |
+
-----END CERTIFICATE-----
|
2462 |
+
|
2463 |
+
Actalis Authentication Root CA
|
2464 |
+
==============================
|
2465 |
+
-----BEGIN CERTIFICATE-----
|
2466 |
+
MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCSVQxDjAM
|
2467 |
+
BgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UE
|
2468 |
+
AwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDky
|
2469 |
+
MjExMjIwMlowazELMAkGA1UEBhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlz
|
2470 |
+
IFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290
|
2471 |
+
IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNvUTufClrJ
|
2472 |
+
wkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX4ay8IMKx4INRimlNAJZa
|
2473 |
+
by/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9KK3giq0itFZljoZUj5NDKd45RnijMCO6
|
2474 |
+
zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1f
|
2475 |
+
YVEiVRvjRuPjPdA1YprbrxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2
|
2476 |
+
oxgkg4YQ51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2Fbe8l
|
2477 |
+
EfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxeKF+w6D9Fz8+vm2/7
|
2478 |
+
hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4Fv6MGn8i1zeQf1xcGDXqVdFUNaBr8
|
2479 |
+
EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbnfpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5
|
2480 |
+
jF66CyCU3nuDuP/jVo23Eek7jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLY
|
2481 |
+
iDrIn3hm7YnzezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt
|
2482 |
+
ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQALe3KHwGCmSUyI
|
2483 |
+
WOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70jsNjLiNmsGe+b7bAEzlgqqI0
|
2484 |
+
JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDzWochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKx
|
2485 |
+
K3JCaKygvU5a2hi/a5iB0P2avl4VSM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+
|
2486 |
+
Xlff1ANATIGk0k9jpwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC
|
2487 |
+
4yyXX04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+OkfcvHlXHo
|
2488 |
+
2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7RK4X9p2jIugErsWx0Hbhz
|
2489 |
+
lefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btUZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXem
|
2490 |
+
OR/qnuOf0GZvBeyqdn6/axag67XH/JJULysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9
|
2491 |
+
vwGYT7JZVEc+NHt4bVaTLnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg==
|
2492 |
+
-----END CERTIFICATE-----
|
2493 |
+
|
2494 |
+
Trustis FPS Root CA
|
2495 |
+
===================
|
2496 |
+
-----BEGIN CERTIFICATE-----
|
2497 |
+
MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQG
|
2498 |
+
EwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQLExNUcnVzdGlzIEZQUyBSb290
|
2499 |
+
IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTExMzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNV
|
2500 |
+
BAoTD1RydXN0aXMgTGltaXRlZDEcMBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJ
|
2501 |
+
KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQ
|
2502 |
+
RUN+AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihHiTHcDnlk
|
2503 |
+
H5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjjvSkCqPoc4Vu5g6hBSLwa
|
2504 |
+
cY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zt
|
2505 |
+
o3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlBOrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEA
|
2506 |
+
AaNTMFEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAd
|
2507 |
+
BgNVHQ4EFgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01GX2c
|
2508 |
+
GE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmWzaD+vkAMXBJV+JOC
|
2509 |
+
yinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP41BIy+Q7DsdwyhEQsb8tGD+pmQQ9P
|
2510 |
+
8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZEf1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHV
|
2511 |
+
l/9D7S3B2l0pKoU/rGXuhg8FjZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYl
|
2512 |
+
iB6XzCGcKQENZetX2fNXlrtIzYE=
|
2513 |
+
-----END CERTIFICATE-----
|
2514 |
+
|
2515 |
+
StartCom Certification Authority
|
2516 |
+
================================
|
2517 |
+
-----BEGIN CERTIFICATE-----
|
2518 |
+
MIIHhzCCBW+gAwIBAgIBLTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN
|
2519 |
+
U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu
|
2520 |
+
ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0
|
2521 |
+
NjM3WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk
|
2522 |
+
LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg
|
2523 |
+
U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
2524 |
+
ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y
|
2525 |
+
o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/
|
2526 |
+
Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d
|
2527 |
+
eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt
|
2528 |
+
2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z
|
2529 |
+
6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ
|
2530 |
+
osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/
|
2531 |
+
untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc
|
2532 |
+
UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT
|
2533 |
+
37uMdBNSSwIDAQABo4ICEDCCAgwwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD
|
2534 |
+
VR0OBBYEFE4L7xqkQFulF2mHMMo0aEPQQa7yMB8GA1UdIwQYMBaAFE4L7xqkQFulF2mHMMo0aEPQ
|
2535 |
+
Qa7yMIIBWgYDVR0gBIIBUTCCAU0wggFJBgsrBgEEAYG1NwEBATCCATgwLgYIKwYBBQUHAgEWImh0
|
2536 |
+
dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cu
|
2537 |
+
c3RhcnRzc2wuY29tL2ludGVybWVkaWF0ZS5wZGYwgc8GCCsGAQUFBwICMIHCMCcWIFN0YXJ0IENv
|
2538 |
+
bW1lcmNpYWwgKFN0YXJ0Q29tKSBMdGQuMAMCAQEagZZMaW1pdGVkIExpYWJpbGl0eSwgcmVhZCB0
|
2539 |
+
aGUgc2VjdGlvbiAqTGVnYWwgTGltaXRhdGlvbnMqIG9mIHRoZSBTdGFydENvbSBDZXJ0aWZpY2F0
|
2540 |
+
aW9uIEF1dGhvcml0eSBQb2xpY3kgYXZhaWxhYmxlIGF0IGh0dHA6Ly93d3cuc3RhcnRzc2wuY29t
|
2541 |
+
L3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilTdGFydENvbSBG
|
2542 |
+
cmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQsFAAOCAgEAjo/n3JR5
|
2543 |
+
fPGFf59Jb2vKXfuM/gTFwWLRfUKKvFO3lANmMD+x5wqnUCBVJX92ehQN6wQOQOY+2IirByeDqXWm
|
2544 |
+
N3PH/UvSTa0XQMhGvjt/UfzDtgUx3M2FIk5xt/JxXrAaxrqTi3iSSoX4eA+D/i+tLPfkpLst0OcN
|
2545 |
+
Org+zvZ49q5HJMqjNTbOx8aHmNrs++myziebiMMEofYLWWivydsQD032ZGNcpRJvkrKTlMeIFw6T
|
2546 |
+
tn5ii5B/q06f/ON1FE8qMt9bDeD1e5MNq6HPh+GlBEXoPBKlCcWw0bdT82AUuoVpaiF8H3VhFyAX
|
2547 |
+
e2w7QSlc4axa0c2Mm+tgHRns9+Ww2vl5GKVFP0lDV9LdJNUso/2RjSe15esUBppMeyG7Oq0wBhjA
|
2548 |
+
2MFrLH9ZXF2RsXAiV+uKa0hK1Q8p7MZAwC+ITGgBF3f0JBlPvfrhsiAhS90a2Cl9qrjeVOwhVYBs
|
2549 |
+
HvUwyKMQ5bLmKhQxw4UtjJixhlpPiVktucf3HMiKf8CdBUrmQk9io20ppB+Fq9vlgcitKj1MXVuE
|
2550 |
+
JnHEhV5xJMqlG2zYYdMa4FTbzrqpMrUi9nNBCV24F10OD5mQ1kfabwo6YigUZ4LZ8dCAWZvLMdib
|
2551 |
+
D4x3TrVoivJs9iQOLWxwxXPR3hTQcY+203sC9uO41Alua551hDnmfyWl8kgAwKQB2j8=
|
2552 |
+
-----END CERTIFICATE-----
|
2553 |
+
|
2554 |
+
StartCom Certification Authority G2
|
2555 |
+
===================================
|
2556 |
+
-----BEGIN CERTIFICATE-----
|
2557 |
+
MIIFYzCCA0ugAwIBAgIBOzANBgkqhkiG9w0BAQsFADBTMQswCQYDVQQGEwJJTDEWMBQGA1UEChMN
|
2558 |
+
U3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg
|
2559 |
+
RzIwHhcNMTAwMTAxMDEwMDAxWhcNMzkxMjMxMjM1OTAxWjBTMQswCQYDVQQGEwJJTDEWMBQGA1UE
|
2560 |
+
ChMNU3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3Jp
|
2561 |
+
dHkgRzIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2iTZbB7cgNr2Cu+EWIAOVeq8O
|
2562 |
+
o1XJJZlKxdBWQYeQTSFgpBSHO839sj60ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB5uNsDvfOpL9HG
|
2563 |
+
4A/LnooUCri99lZi8cVytjIl2bLzvWXFDSxu1ZJvGIsAQRSCb0AgJnooD/Uefyf3lLE3PbfHkffi
|
2564 |
+
Aez9lInhzG7TNtYKGXmu1zSCZf98Qru23QumNK9LYP5/Q0kGi4xDuFby2X8hQxfqp0iVAXV16iul
|
2565 |
+
Q5XqFYSdCI0mblWbq9zSOdIxHWDirMxWRST1HFSr7obdljKF+ExP6JV2tgXdNiNnvP8V4so75qbs
|
2566 |
+
O+wmETRIjfaAKxojAuuKHDp2KntWFhxyKrOq42ClAJ8Em+JvHhRYW6Vsi1g8w7pOOlz34ZYrPu8H
|
2567 |
+
vKTlXcxNnw3h3Kq74W4a7I/htkxNeXJdFzULHdfBR9qWJODQcqhaX2YtENwvKhOuJv4KHBnM0D4L
|
2568 |
+
nMgJLvlblnpHnOl68wVQdJVznjAJ85eCXuaPOQgeWeU1FEIT/wCc976qUM/iUUjXuG+v+E5+M5iS
|
2569 |
+
FGI6dWPPe/regjupuznixL0sAA7IF6wT700ljtizkC+p2il9Ha90OrInwMEePnWjFqmveiJdnxMa
|
2570 |
+
z6eg6+OGCtP95paV1yPIN93EfKo2rJgaErHgTuixO/XWb/Ew1wIDAQABo0IwQDAPBgNVHRMBAf8E
|
2571 |
+
BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUS8W0QGutHLOlHGVuRjaJhwUMDrYwDQYJ
|
2572 |
+
KoZIhvcNAQELBQADggIBAHNXPyzVlTJ+N9uWkusZXn5T50HsEbZH77Xe7XRcxfGOSeD8bpkTzZ+K
|
2573 |
+
2s06Ctg6Wgk/XzTQLwPSZh0avZyQN8gMjgdalEVGKua+etqhqaRpEpKwfTbURIfXUfEpY9Z1zRbk
|
2574 |
+
J4kd+MIySP3bmdCPX1R0zKxnNBFi2QwKN4fRoxdIjtIXHfbX/dtl6/2o1PXWT6RbdejF0mCy2wl+
|
2575 |
+
JYt7ulKSnj7oxXehPOBKc2thz4bcQ///If4jXSRK9dNtD2IEBVeC2m6kMyV5Sy5UGYvMLD0w6dEG
|
2576 |
+
/+gyRr61M3Z3qAFdlsHB1b6uJcDJHgoJIIihDsnzb02CVAAgp9KP5DlUFy6NHrgbuxu9mk47EDTc
|
2577 |
+
nIhT76IxW1hPkWLIwpqazRVdOKnWvvgTtZ8SafJQYqz7Fzf07rh1Z2AQ+4NQ+US1dZxAF7L+/Xld
|
2578 |
+
blhYXzD8AK6vM8EOTmy6p6ahfzLbOOCxchcKK5HsamMm7YnUeMx0HgX4a/6ManY5Ka5lIxKVCCIc
|
2579 |
+
l85bBu4M4ru8H0ST9tg4RQUh7eStqxK2A6RCLi3ECToDZ2mEmuFZkIoohdVddLHRDiBYmxOlsGOm
|
2580 |
+
7XtH/UVVMKTumtTm4ofvmMkyghEpIrwACjFeLQ/Ajulrso8uBtjRkcfGEvRM/TAXw8HaOFvjqerm
|
2581 |
+
obp573PYtlNXLfbQ4ddI
|
2582 |
+
-----END CERTIFICATE-----
|
2583 |
+
|
2584 |
+
Buypass Class 2 Root CA
|
2585 |
+
=======================
|
2586 |
+
-----BEGIN CERTIFICATE-----
|
2587 |
+
MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
|
2588 |
+
QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMiBSb290IENBMB4X
|
2589 |
+
DTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1owTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1
|
2590 |
+
eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIw
|
2591 |
+
DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1
|
2592 |
+
g1Lr6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPVL4O2fuPn
|
2593 |
+
9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC911K2GScuVr1QGbNgGE41b
|
2594 |
+
/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHxMlAQTn/0hpPshNOOvEu/XAFOBz3cFIqU
|
2595 |
+
CqTqc/sLUegTBxj6DvEr0VQVfTzh97QZQmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeff
|
2596 |
+
awrbD02TTqigzXsu8lkBarcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgI
|
2597 |
+
zRFo1clrUs3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLiFRhn
|
2598 |
+
Bkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRSP/TizPJhk9H9Z2vX
|
2599 |
+
Uq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN9SG9dKpN6nIDSdvHXx1iY8f93ZHs
|
2600 |
+
M+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxPAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD
|
2601 |
+
VR0OBBYEFMmAd+BikoL1RpzzuvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF
|
2602 |
+
AAOCAgEAU18h9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s
|
2603 |
+
A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3tOluwlN5E40EI
|
2604 |
+
osHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo+fsicdl9sz1Gv7SEr5AcD48S
|
2605 |
+
aq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYd
|
2606 |
+
DnkM/crqJIByw5c/8nerQyIKx+u2DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWD
|
2607 |
+
LfJ6v9r9jv6ly0UsH8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0
|
2608 |
+
oyLQI+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK75t98biGC
|
2609 |
+
wWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h3PFaTWwyI0PurKju7koS
|
2610 |
+
CTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPzY11aWOIv4x3kqdbQCtCev9eBCfHJxyYN
|
2611 |
+
rJgWVqA=
|
2612 |
+
-----END CERTIFICATE-----
|
2613 |
+
|
2614 |
+
Buypass Class 3 Root CA
|
2615 |
+
=======================
|
2616 |
+
-----BEGIN CERTIFICATE-----
|
2617 |
+
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
|
2641 |
+
Cp/HuZc=
|
2642 |
+
-----END CERTIFICATE-----
|
2643 |
+
|
2644 |
+
T-TeleSec GlobalRoot Class 3
|
2645 |
+
============================
|
2646 |
+
-----BEGIN CERTIFICATE-----
|
2647 |
+
MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM
|
2648 |
+
IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU
|
2649 |
+
cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgx
|
2650 |
+
MDAxMTAyOTU2WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz
|
2651 |
+
dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD
|
2652 |
+
ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0GCSqGSIb3
|
2653 |
+
DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN8ELg63iIVl6bmlQdTQyK
|
2654 |
+
9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/RLyTPWGrTs0NvvAgJ1gORH8EGoel15YU
|
2655 |
+
NpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZF
|
2656 |
+
iP0Zf3WHHx+xGwpzJFu5ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W
|
2657 |
+
0eDrXltMEnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGjQjBA
|
2658 |
+
MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1A/d2O2GCahKqGFPr
|
2659 |
+
AyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOyWL6ukK2YJ5f+AbGwUgC4TeQbIXQb
|
2660 |
+
fsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzT
|
2661 |
+
ucpH9sry9uetuUg/vBa3wW306gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7h
|
2662 |
+
P0HHRwA11fXT91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml
|
2663 |
+
e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4pTpPDpFQUWw==
|
2664 |
+
-----END CERTIFICATE-----
|
2665 |
+
|
2666 |
+
EE Certification Centre Root CA
|
2667 |
+
===============================
|
2668 |
+
-----BEGIN CERTIFICATE-----
|
2669 |
+
MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQG
|
2670 |
+
EwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2Vy
|
2671 |
+
dGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIw
|
2672 |
+
MTAxMDMwMTAxMDMwWhgPMjAzMDEyMTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlB
|
2673 |
+
UyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRy
|
2674 |
+
ZSBSb290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IB
|
2675 |
+
DwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUyeuuOF0+W2Ap7kaJjbMeM
|
2676 |
+
TC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvObntl8jixwKIy72KyaOBhU8E2lf/slLo2
|
2677 |
+
rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIwWFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw
|
2678 |
+
93X2PaRka9ZP585ArQ/dMtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtN
|
2679 |
+
P2MbRMNE1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYDVR0T
|
2680 |
+
AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/zQas8fElyalL1BSZ
|
2681 |
+
MEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYBBQUHAwMGCCsGAQUFBwMEBggrBgEF
|
2682 |
+
BQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEFBQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+Rj
|
2683 |
+
xY6hUFaTlrg4wCQiZrxTFGGVv9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqM
|
2684 |
+
lIpPnTX/dqQGE5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u
|
2685 |
+
uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIWiAYLtqZLICjU
|
2686 |
+
3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/vGVCJYMzpJJUPwssd8m92kMfM
|
2687 |
+
dcGWxZ0=
|
2688 |
+
-----END CERTIFICATE-----
|
2689 |
+
|
2690 |
+
TURKTRUST Certificate Services Provider Root 2007
|
2691 |
+
=================================================
|
2692 |
+
-----BEGIN CERTIFICATE-----
|
2693 |
+
MIIEPTCCAyWgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvzE/MD0GA1UEAww2VMOcUktUUlVTVCBF
|
2694 |
+
bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEP
|
2695 |
+
MA0GA1UEBwwGQW5rYXJhMV4wXAYDVQQKDFVUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUg
|
2696 |
+
QmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgQXJhbMSxayAyMDA3MB4X
|
2697 |
+
DTA3MTIyNTE4MzcxOVoXDTE3MTIyMjE4MzcxOVowgb8xPzA9BgNVBAMMNlTDnFJLVFJVU1QgRWxl
|
2698 |
+
a3Ryb25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTELMAkGA1UEBhMCVFIxDzAN
|
2699 |
+
BgNVBAcMBkFua2FyYTFeMFwGA1UECgxVVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp
|
2700 |
+
bGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7Fni4gKGMpIEFyYWzEsWsgMjAwNzCCASIw
|
2701 |
+
DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKu3PgqMyKVYFeaK7yc9SrToJdPNM8Ig3BnuiD9N
|
2702 |
+
YvDdE3ePYakqtdTyuTFYKTsvP2qcb3N2Je40IIDu6rfwxArNK4aUyeNgsURSsloptJGXg9i3phQv
|
2703 |
+
KUmi8wUG+7RP2qFsmmaf8EMJyupyj+sA1zU511YXRxcw9L6/P8JorzZAwan0qafoEGsIiveGHtya
|
2704 |
+
KhUG9qPw9ODHFNRRf8+0222vR5YXm3dx2KdxnSQM9pQ/hTEST7ruToK4uT6PIzdezKKqdfcYbwnT
|
2705 |
+
rqdUKDT74eA7YH2gvnmJhsifLfkKS8RQouf9eRbHegsYz85M733WB2+Y8a+xwXrXgTW4qhe04MsC
|
2706 |
+
AwEAAaNCMEAwHQYDVR0OBBYEFCnFkKslrxHkYb+j/4hhkeYO/pyBMA4GA1UdDwEB/wQEAwIBBjAP
|
2707 |
+
BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQAQDdr4Ouwo0RSVgrESLFF6QSU2TJ/s
|
2708 |
+
Px+EnWVUXKgWAkD6bho3hO9ynYYKVZ1WKKxmLNA6VpM0ByWtCLCPyA8JWcqdmBzlVPi5RX9ql2+I
|
2709 |
+
aE1KBiY3iAIOtsbWcpnOa3faYjGkVh+uX4132l32iPwa2Z61gfAyuOOI0JzzaqC5mxRZNTZPz/OO
|
2710 |
+
Xl0XrRWV2N2y1RVuAE6zS89mlOTgzbUF2mNXi+WzqtvALhyQRNsaXRik7r4EW5nVcV9VZWRi1aKb
|
2711 |
+
BFmGyGJ353yCRWo9F7/snXUMrqNvWtMvmDb08PUZqxFdyKbjKlhqQgnDvZImZjINXQhVdP+MmNAK
|
2712 |
+
poRq0Tl9
|
2713 |
+
-----END CERTIFICATE-----
|
2714 |
+
|
2715 |
+
D-TRUST Root Class 3 CA 2 2009
|
2716 |
+
==============================
|
2717 |
+
-----BEGIN CERTIFICATE-----
|
2718 |
+
MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQK
|
2719 |
+
DAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTAe
|
2720 |
+
Fw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NThaME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxE
|
2721 |
+
LVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIw
|
2722 |
+
DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOAD
|
2723 |
+
ER03UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42tSHKXzlA
|
2724 |
+
BF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9RySPocq60vFYJfxLLHLGv
|
2725 |
+
KZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsMlFqVlNpQmvH/pStmMaTJOKDfHR+4CS7z
|
2726 |
+
p+hnUquVH+BGPtikw8paxTGA6Eian5Rp/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUC
|
2727 |
+
AwEAAaOCARowggEWMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ
|
2728 |
+
4PGEMA4GA1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVjdG9y
|
2729 |
+
eS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUyMENBJTIwMiUyMDIw
|
2730 |
+
MDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3QwQ6BBoD+G
|
2731 |
+
PWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAw
|
2732 |
+
OS5jcmwwDQYJKoZIhvcNAQELBQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm
|
2733 |
+
2H6NMLVwMeniacfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0
|
2734 |
+
o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4KzCUqNQT4YJEV
|
2735 |
+
dT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8PIWmawomDeCTmGCufsYkl4ph
|
2736 |
+
X5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3YJohw1+qRzT65ysCQblrGXnRl11z+o+I=
|
2737 |
+
-----END CERTIFICATE-----
|
2738 |
+
|
2739 |
+
D-TRUST Root Class 3 CA 2 EV 2009
|
2740 |
+
=================================
|
2741 |
+
-----BEGIN CERTIFICATE-----
|
2742 |
+
MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK
|
2743 |
+
DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw
|
2744 |
+
OTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUwNDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK
|
2745 |
+
DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw
|
2746 |
+
OTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfS
|
2747 |
+
egpnljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM03TP1YtHh
|
2748 |
+
zRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6ZqQTMFexgaDbtCHu39b+T
|
2749 |
+
7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lRp75mpoo6Kr3HGrHhFPC+Oh25z1uxav60
|
2750 |
+
sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure35
|
2751 |
+
11H3a6UCAwEAAaOCASQwggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyv
|
2752 |
+
cop9NteaHNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFwOi8v
|
2753 |
+
ZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xhc3MlMjAzJTIwQ0El
|
2754 |
+
MjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1ERT9jZXJ0aWZpY2F0ZXJldm9jYXRp
|
2755 |
+
b25saXN0MEagRKBChkBodHRwOi8vd3d3LmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xh
|
2756 |
+
c3NfM19jYV8yX2V2XzIwMDkuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+
|
2757 |
+
PPoeUSbrh/Yp3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05
|
2758 |
+
nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNFCSuGdXzfX2lX
|
2759 |
+
ANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7naxpeG0ILD5EJt/rDiZE4OJudA
|
2760 |
+
NCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqXKVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVv
|
2761 |
+
w9y4AyHqnxbxLFS1
|
2762 |
+
-----END CERTIFICATE-----
|
2763 |
+
|
2764 |
+
PSCProcert
|
2765 |
+
==========
|
2766 |
+
-----BEGIN CERTIFICATE-----
|
2767 |
+
MIIJhjCCB26gAwIBAgIBCzANBgkqhkiG9w0BAQsFADCCAR4xPjA8BgNVBAMTNUF1dG9yaWRhZCBk
|
2768 |
+
ZSBDZXJ0aWZpY2FjaW9uIFJhaXogZGVsIEVzdGFkbyBWZW5lem9sYW5vMQswCQYDVQQGEwJWRTEQ
|
2769 |
+
MA4GA1UEBxMHQ2FyYWNhczEZMBcGA1UECBMQRGlzdHJpdG8gQ2FwaXRhbDE2MDQGA1UEChMtU2lz
|
2770 |
+
dGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMUMwQQYDVQQLEzpTdXBl
|
2771 |
+
cmludGVuZGVuY2lhIGRlIFNlcnZpY2lvcyBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMSUw
|
2772 |
+
IwYJKoZIhvcNAQkBFhZhY3JhaXpAc3VzY2VydGUuZ29iLnZlMB4XDTEwMTIyODE2NTEwMFoXDTIw
|
2773 |
+
MTIyNTIzNTk1OVowgdExJjAkBgkqhkiG9w0BCQEWF2NvbnRhY3RvQHByb2NlcnQubmV0LnZlMQ8w
|
2774 |
+
DQYDVQQHEwZDaGFjYW8xEDAOBgNVBAgTB01pcmFuZGExKjAoBgNVBAsTIVByb3ZlZWRvciBkZSBD
|
2775 |
+
ZXJ0aWZpY2Fkb3MgUFJPQ0VSVDE2MDQGA1UEChMtU2lzdGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZp
|
2776 |
+
Y2FjaW9uIEVsZWN0cm9uaWNhMQswCQYDVQQGEwJWRTETMBEGA1UEAxMKUFNDUHJvY2VydDCCAiIw
|
2777 |
+
DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANW39KOUM6FGqVVhSQ2oh3NekS1wwQYalNo97BVC
|
2778 |
+
wfWMrmoX8Yqt/ICV6oNEolt6Vc5Pp6XVurgfoCfAUFM+jbnADrgV3NZs+J74BCXfgI8Qhd19L3uA
|
2779 |
+
3VcAZCP4bsm+lU/hdezgfl6VzbHvvnpC2Mks0+saGiKLt38GieU89RLAu9MLmV+QfI4tL3czkkoh
|
2780 |
+
RqipCKzx9hEC2ZUWno0vluYC3XXCFCpa1sl9JcLB/KpnheLsvtF8PPqv1W7/U0HU9TI4seJfxPmO
|
2781 |
+
EO8GqQKJ/+MMbpfg353bIdD0PghpbNjU5Db4g7ayNo+c7zo3Fn2/omnXO1ty0K+qP1xmk6wKImG2
|
2782 |
+
0qCZyFSTXai20b1dCl53lKItwIKOvMoDKjSuc/HUtQy9vmebVOvh+qBa7Dh+PsHMosdEMXXqP+UH
|
2783 |
+
0quhJZb25uSgXTcYOWEAM11G1ADEtMo88aKjPvM6/2kwLkDd9p+cJsmWN63nOaK/6mnbVSKVUyqU
|
2784 |
+
td+tFjiBdWbjxywbk5yqjKPK2Ww8F22c3HxT4CAnQzb5EuE8XL1mv6JpIzi4mWCZDlZTOpx+FIyw
|
2785 |
+
Bm/xhnaQr/2v/pDGj59/i5IjnOcVdo/Vi5QTcmn7K2FjiO/mpF7moxdqWEfLcU8UC17IAggmosvp
|
2786 |
+
r2uKGcfLFFb14dq12fy/czja+eevbqQ34gcnAgMBAAGjggMXMIIDEzASBgNVHRMBAf8ECDAGAQH/
|
2787 |
+
AgEBMDcGA1UdEgQwMC6CD3N1c2NlcnRlLmdvYi52ZaAbBgVghl4CAqASDBBSSUYtRy0yMDAwNDAz
|
2788 |
+
Ni0wMB0GA1UdDgQWBBRBDxk4qpl/Qguk1yeYVKIXTC1RVDCCAVAGA1UdIwSCAUcwggFDgBStuyId
|
2789 |
+
xuDSAaj9dlBSk+2YwU2u06GCASakggEiMIIBHjE+MDwGA1UEAxM1QXV0b3JpZGFkIGRlIENlcnRp
|
2790 |
+
ZmljYWNpb24gUmFpeiBkZWwgRXN0YWRvIFZlbmV6b2xhbm8xCzAJBgNVBAYTAlZFMRAwDgYDVQQH
|
2791 |
+
EwdDYXJhY2FzMRkwFwYDVQQIExBEaXN0cml0byBDYXBpdGFsMTYwNAYDVQQKEy1TaXN0ZW1hIE5h
|
2792 |
+
Y2lvbmFsIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExQzBBBgNVBAsTOlN1cGVyaW50ZW5k
|
2793 |
+
ZW5jaWEgZGUgU2VydmljaW9zIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExJTAjBgkqhkiG
|
2794 |
+
9w0BCQEWFmFjcmFpekBzdXNjZXJ0ZS5nb2IudmWCAQowDgYDVR0PAQH/BAQDAgEGME0GA1UdEQRG
|
2795 |
+
MESCDnByb2NlcnQubmV0LnZloBUGBWCGXgIBoAwMClBTQy0wMDAwMDKgGwYFYIZeAgKgEgwQUklG
|
2796 |
+
LUotMzE2MzUzNzMtNzB2BgNVHR8EbzBtMEagRKBChkBodHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52
|
2797 |
+
ZS9sY3IvQ0VSVElGSUNBRE8tUkFJWi1TSEEzODRDUkxERVIuY3JsMCOgIaAfhh1sZGFwOi8vYWNy
|
2798 |
+
YWl6LnN1c2NlcnRlLmdvYi52ZTA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9v
|
2799 |
+
Y3NwLnN1c2NlcnRlLmdvYi52ZTBBBgNVHSAEOjA4MDYGBmCGXgMBAjAsMCoGCCsGAQUFBwIBFh5o
|
2800 |
+
dHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52ZS9kcGMwDQYJKoZIhvcNAQELBQADggIBACtZ6yKZu4Sq
|
2801 |
+
T96QxtGGcSOeSwORR3C7wJJg7ODU523G0+1ng3dS1fLld6c2suNUvtm7CpsR72H0xpkzmfWvADmN
|
2802 |
+
g7+mvTV+LFwxNG9s2/NkAZiqlCxB3RWGymspThbASfzXg0gTB1GEMVKIu4YXx2sviiCtxQuPcD4q
|
2803 |
+
uxtxj7mkoP3YldmvWb8lK5jpY5MvYB7Eqvh39YtsL+1+LrVPQA3uvFd359m21D+VJzog1eWuq2w1
|
2804 |
+
n8GhHVnchIHuTQfiSLaeS5UtQbHh6N5+LwUeaO6/u5BlOsju6rEYNxxik6SgMexxbJHmpHmJWhSn
|
2805 |
+
FFAFTKQAVzAswbVhltw+HoSvOULP5dAssSS830DD7X9jSr3hTxJkhpXzsOfIt+FTvZLm8wyWuevo
|
2806 |
+
5pLtp4EJFAv8lXrPj9Y0TzYS3F7RNHXGRoAvlQSMx4bEqCaJqD8Zm4G7UaRKhqsLEQ+xrmNTbSjq
|
2807 |
+
3TNWOByyrYDT13K9mmyZY+gAu0F2BbdbmRiKw7gSXFbPVgx96OLP7bx0R/vu0xdOIk9W/1DzLuY5
|
2808 |
+
poLWccret9W6aAjtmcz9opLLabid+Qqkpj5PkygqYWwHJgD/ll9ohri4zspV4KuxPX+Y1zMOWj3Y
|
2809 |
+
eMLEYC/HYvBhkdI4sPaeVdtAgAUSM84dkpvRabP/v/GSCmE1P93+hvS84Bpxs2Km
|
2810 |
+
-----END CERTIFICATE-----
|
2811 |
+
|
2812 |
+
China Internet Network Information Center EV Certificates Root
|
2813 |
+
==============================================================
|
2814 |
+
-----BEGIN CERTIFICATE-----
|
2815 |
+
MIID9zCCAt+gAwIBAgIESJ8AATANBgkqhkiG9w0BAQUFADCBijELMAkGA1UEBhMCQ04xMjAwBgNV
|
2816 |
+
BAoMKUNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyMUcwRQYDVQQDDD5D
|
2817 |
+
aGluYSBJbnRlcm5ldCBOZXR3b3JrIEluZm9ybWF0aW9uIENlbnRlciBFViBDZXJ0aWZpY2F0ZXMg
|
2818 |
+
Um9vdDAeFw0xMDA4MzEwNzExMjVaFw0zMDA4MzEwNzExMjVaMIGKMQswCQYDVQQGEwJDTjEyMDAG
|
2819 |
+
A1UECgwpQ2hpbmEgSW50ZXJuZXQgTmV0d29yayBJbmZvcm1hdGlvbiBDZW50ZXIxRzBFBgNVBAMM
|
2820 |
+
PkNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyIEVWIENlcnRpZmljYXRl
|
2821 |
+
cyBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm35z7r07eKpkQ0H1UN+U8i6y
|
2822 |
+
jUqORlTSIRLIOTJCBumD1Z9S7eVnAztUwYyZmczpwA//DdmEEbK40ctb3B75aDFk4Zv6dOtouSCV
|
2823 |
+
98YPjUesWgbdYavi7NifFy2cyjw1l1VxzUOFsUcW9SxTgHbP0wBkvUCZ3czY28Sf1hNfQYOL+Q2H
|
2824 |
+
klY0bBoQCxfVWhyXWIQ8hBouXJE0bhlffxdpxWXvayHG1VA6v2G5BY3vbzQ6sm8UY78WO5upKv23
|
2825 |
+
KzhmBsUs4qpnHkWnjQRmQvaPK++IIGmPMowUc9orhpFjIpryp9vOiYurXccUwVswah+xt54ugQEC
|
2826 |
+
7c+WXmPbqOY4twIDAQABo2MwYTAfBgNVHSMEGDAWgBR8cks5x8DbYqVPm6oYNJKiyoOCWTAPBgNV
|
2827 |
+
HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUfHJLOcfA22KlT5uqGDSSosqD
|
2828 |
+
glkwDQYJKoZIhvcNAQEFBQADggEBACrDx0M3j92tpLIM7twUbY8opJhJywyA6vPtI2Z1fcXTIWd5
|
2829 |
+
0XPFtQO3WKwMVC/GVhMPMdoG52U7HW8228gd+f2ABsqjPWYWqJ1MFn3AlUa1UeTiH9fqBk1jjZaM
|
2830 |
+
7+czV0I664zBechNdn3e9rG3geCg+aF4RhcaVpjwTj2rHO3sOdwHSPdj/gauwqRcalsyiMXHM4Ws
|
2831 |
+
ZkJHwlgkmeHlPuV1LI5D1l08eB6olYIpUNHRFrrvwb562bTYzB5MRuF3sTGrvSrIzo9uoV1/A3U0
|
2832 |
+
5K2JRVRevq4opbs/eHnrc7MKDf2+yfdWrPa37S+bISnHOLaVxATywy39FCqQmbkHzJ8=
|
2833 |
+
-----END CERTIFICATE-----
|
2834 |
+
|
2835 |
+
Swisscom Root CA 2
|
2836 |
+
==================
|
2837 |
+
-----BEGIN CERTIFICATE-----
|
2838 |
+
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
|
2864 |
+
5OfNeOI5wSsSnqaeG8XmDtkx2Q==
|
2865 |
+
-----END CERTIFICATE-----
|
2866 |
+
|
2867 |
+
Swisscom Root EV CA 2
|
2868 |
+
=====================
|
2869 |
+
-----BEGIN CERTIFICATE-----
|
2870 |
+
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
|
2896 |
+
l8PVP3wbI+2ksx0WckNLIOFZfsLorSa/ovc=
|
2897 |
+
-----END CERTIFICATE-----
|
2898 |
+
|
2899 |
+
CA Disig Root R1
|
2900 |
+
================
|
2901 |
+
-----BEGIN CERTIFICATE-----
|
2902 |
+
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
|
2926 |
+
a7+h89n07eLw4+1knj0vllJPgFOL
|
2927 |
+
-----END CERTIFICATE-----
|
2928 |
+
|
2929 |
+
CA Disig Root R2
|
2930 |
+
================
|
2931 |
+
-----BEGIN CERTIFICATE-----
|
2932 |
+
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
|
2956 |
+
7+ZtsH8tZ/3zbBt1RqPlShfppNcL
|
2957 |
+
-----END CERTIFICATE-----
|
2958 |
+
|
2959 |
+
ACCVRAIZ1
|
2960 |
+
=========
|
2961 |
+
-----BEGIN CERTIFICATE-----
|
2962 |
+
MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UEAwwJQUNDVlJB
|
2963 |
+
SVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQswCQYDVQQGEwJFUzAeFw0xMTA1
|
2964 |
+
MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQBgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwH
|
2965 |
+
UEtJQUNDVjENMAsGA1UECgwEQUNDVjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4IC
|
2966 |
+
DwAwggIKAoICAQCbqau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gM
|
2967 |
+
jmoYHtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWoG2ioPej0
|
2968 |
+
RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpAlHPrzg5XPAOBOp0KoVdD
|
2969 |
+
aaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhrIA8wKFSVf+DuzgpmndFALW4ir50awQUZ
|
2970 |
+
0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDG
|
2971 |
+
WuzndN9wrqODJerWx5eHk6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs7
|
2972 |
+
8yM2x/474KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMOm3WR
|
2973 |
+
5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpacXpkatcnYGMN285J
|
2974 |
+
9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPluUsXQA+xtrn13k/c4LOsOxFwYIRK
|
2975 |
+
Q26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYIKwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRw
|
2976 |
+
Oi8vd3d3LmFjY3YuZXMvZmlsZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEu
|
2977 |
+
Y3J0MB8GCCsGAQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2
|
2978 |
+
VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeTVfZW6oHlNsyM
|
2979 |
+
Hj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIGCCsGAQUFBwICMIIBFB6CARAA
|
2980 |
+
QQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUAcgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBh
|
2981 |
+
AO0AegAgAGQAZQAgAGwAYQAgAEEAQwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUA
|
2982 |
+
YwBuAG8AbABvAGcA7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBj
|
2983 |
+
AHQAcgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAAQwBQAFMA
|
2984 |
+
IABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUAczAwBggrBgEFBQcCARYk
|
2985 |
+
aHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2MuaHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0
|
2986 |
+
dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRtaW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2
|
2987 |
+
MV9kZXIuY3JsMA4GA1UdDwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZI
|
2988 |
+
hvcNAQEFBQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdpD70E
|
2989 |
+
R9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gUJyCpZET/LtZ1qmxN
|
2990 |
+
YEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+mAM/EKXMRNt6GGT6d7hmKG9Ww7Y49
|
2991 |
+
nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepDvV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJ
|
2992 |
+
TS+xJlsndQAJxGJ3KQhfnlmstn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3
|
2993 |
+
sCPdK6jT2iWH7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h
|
2994 |
+
I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szAh1xA2syVP1Xg
|
2995 |
+
Nce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xFd3+YJ5oyXSrjhO7FmGYvliAd
|
2996 |
+
3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2HpPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3p
|
2997 |
+
EfbRD0tVNEYqi4Y7
|
2998 |
+
-----END CERTIFICATE-----
|
2999 |
+
|
3000 |
+
TWCA Global Root CA
|
3001 |
+
===================
|
3002 |
+
-----BEGIN CERTIFICATE-----
|
3003 |
+
MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcxEjAQBgNVBAoT
|
3004 |
+
CVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMTVFdDQSBHbG9iYWwgUm9vdCBD
|
3005 |
+
QTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQK
|
3006 |
+
EwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3Qg
|
3007 |
+
Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2C
|
3008 |
+
nJfF10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz0ALfUPZV
|
3009 |
+
r2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfChMBwqoJimFb3u/Rk28OKR
|
3010 |
+
Q4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbHzIh1HrtsBv+baz4X7GGqcXzGHaL3SekV
|
3011 |
+
tTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1W
|
3012 |
+
KKD+u4ZqyPpcC1jcxkt2yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99
|
3013 |
+
sy2sbZCilaLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYPoA/p
|
3014 |
+
yJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQABDzfuBSO6N+pjWxn
|
3015 |
+
kjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcEqYSjMq+u7msXi7Kx/mzhkIyIqJdI
|
3016 |
+
zshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMC
|
3017 |
+
AQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6g
|
3018 |
+
cFGn90xHNcgL1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn
|
3019 |
+
LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WFH6vPNOw/KP4M
|
3020 |
+
8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNoRI2T9GRwoD2dKAXDOXC4Ynsg
|
3021 |
+
/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlg
|
3022 |
+
lPx4mI88k1HtQJAH32RjJMtOcQWh15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryP
|
3023 |
+
A9gK8kxkRr05YuWW6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3m
|
3024 |
+
i4TWnsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5jwa19hAM8
|
3025 |
+
EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWzaGHQRiapIVJpLesux+t3
|
3026 |
+
zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmyKwbQBM0=
|
3027 |
+
-----END CERTIFICATE-----
|
3028 |
+
|
3029 |
+
TeliaSonera Root CA v1
|
3030 |
+
======================
|
3031 |
+
-----BEGIN CERTIFICATE-----
|
3032 |
+
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
|
3055 |
+
WWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY=
|
3056 |
+
-----END CERTIFICATE-----
|
3057 |
+
|
3058 |
+
E-Tugra Certification Authority
|
3059 |
+
===============================
|
3060 |
+
-----BEGIN CERTIFICATE-----
|
3061 |
+
MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNVBAYTAlRSMQ8w
|
3062 |
+
DQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamls
|
3063 |
+
ZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN
|
3064 |
+
ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMw
|
3065 |
+
NTEyMDk0OFoXDTIzMDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmEx
|
3066 |
+
QDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxl
|
3067 |
+
cmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQD
|
3068 |
+
DB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A
|
3069 |
+
MIICCgKCAgEA4vU/kwVRHoViVF56C/UYB4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vd
|
3070 |
+
hQd2h8y/L5VMzH2nPbxHD5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5K
|
3071 |
+
CKpbknSFQ9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEoq1+g
|
3072 |
+
ElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3Dk14opz8n8Y4e0ypQ
|
3073 |
+
BaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcHfC425lAcP9tDJMW/hkd5s3kc91r0
|
3074 |
+
E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsutdEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gz
|
3075 |
+
rt48Ue7LE3wBf4QOXVGUnhMMti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAq
|
3076 |
+
jqFGOjGY5RH8zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn
|
3077 |
+
rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUXU8u3Zg5mTPj5
|
3078 |
+
dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6Jyr+zE7S6E5UMA8GA1UdEwEB
|
3079 |
+
/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEG
|
3080 |
+
MA0GCSqGSIb3DQEBCwUAA4ICAQAFNzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAK
|
3081 |
+
kEh47U6YA5n+KGCRHTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jO
|
3082 |
+
XKqYGwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c77NCR807
|
3083 |
+
VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3+GbHeJAAFS6LrVE1Uweo
|
3084 |
+
a2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WKvJUawSg5TB9D0pH0clmKuVb8P7Sd2nCc
|
3085 |
+
dlqMQ1DujjByTd//SffGqWfZbawCEeI6FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEV
|
3086 |
+
KV0jq9BgoRJP3vQXzTLlyb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gT
|
3087 |
+
Dx4JnW2PAJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpDy4Q0
|
3088 |
+
8ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8dNL/+I5c30jn6PQ0G
|
3089 |
+
C7TbO6Orb1wdtn7os4I07QZcJA==
|
3090 |
+
-----END CERTIFICATE-----
|
3091 |
+
|
3092 |
+
T-TeleSec GlobalRoot Class 2
|
3093 |
+
============================
|
3094 |
+
-----BEGIN CERTIFICATE-----
|
3095 |
+
MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM
|
3096 |
+
IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU
|
3097 |
+
cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgx
|
3098 |
+
MDAxMTA0MDE0WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz
|
3099 |
+
dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD
|
3100 |
+
ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0GCSqGSIb3
|
3101 |
+
DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUdAqSzm1nzHoqvNK38DcLZ
|
3102 |
+
SBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiCFoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/F
|
3103 |
+
vudocP05l03Sx5iRUKrERLMjfTlH6VJi1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx970
|
3104 |
+
2cu+fjOlbpSD8DT6IavqjnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGV
|
3105 |
+
WOHAD3bZwI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGjQjBA
|
3106 |
+
MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/WSA2AHmgoCJrjNXy
|
3107 |
+
YdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhyNsZt+U2e+iKo4YFWz827n+qrkRk4
|
3108 |
+
r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPACuvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNf
|
3109 |
+
vNoBYimipidx5joifsFvHZVwIEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR
|
3110 |
+
3p1m0IvVVGb6g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN
|
3111 |
+
9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlPBSeOE6Fuwg==
|
3112 |
+
-----END CERTIFICATE-----
|
3113 |
+
|
3114 |
+
Atos TrustedRoot 2011
|
3115 |
+
=====================
|
3116 |
+
-----BEGIN CERTIFICATE-----
|
3117 |
+
MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UEAwwVQXRvcyBU
|
3118 |
+
cnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0xMTA3MDcxNDU4
|
3119 |
+
MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMMFUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsG
|
3120 |
+
A1UECgwEQXRvczELMAkGA1UEBhMCREUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCV
|
3121 |
+
hTuXbyo7LjvPpvMpNb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr
|
3122 |
+
54rMVD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+SZFhyBH+
|
3123 |
+
DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ4J7sVaE3IqKHBAUsR320
|
3124 |
+
HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0Lcp2AMBYHlT8oDv3FdU9T1nSatCQujgKR
|
3125 |
+
z3bFmx5VdJx4IbHwLfELn8LVlhgf8FQieowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7R
|
3126 |
+
l+lwrrw7GWzbITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZ
|
3127 |
+
bNshMBgGA1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB
|
3128 |
+
CwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8jvZfza1zv7v1Apt+h
|
3129 |
+
k6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kPDpFrdRbhIfzYJsdHt6bPWHJxfrrh
|
3130 |
+
TZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pcmaHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a9
|
3131 |
+
61qn8FYiqTxlVMYVqL2Gns2Dlmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G
|
3132 |
+
3mB/ufNPRJLvKrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed
|
3133 |
+
-----END CERTIFICATE-----
|
3134 |
+
|
3135 |
+
QuoVadis Root CA 1 G3
|
3136 |
+
=====================
|
3137 |
+
-----BEGIN CERTIFICATE-----
|
3138 |
+
MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQELBQAwSDELMAkG
|
3139 |
+
A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
|
3140 |
+
b3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJN
|
3141 |
+
MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEg
|
3142 |
+
RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakE
|
3143 |
+
PBtVwedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWerNrwU8lm
|
3144 |
+
PNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF34168Xfuw6cwI2H44g4hWf6
|
3145 |
+
Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh4Pw5qlPafX7PGglTvF0FBM+hSo+LdoIN
|
3146 |
+
ofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXpUhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/l
|
3147 |
+
g6AnhF4EwfWQvTA9xO+oabw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV
|
3148 |
+
7qJZjqlc3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/GKubX
|
3149 |
+
9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSthfbZxbGL0eUQMk1f
|
3150 |
+
iyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KOTk0k+17kBL5yG6YnLUlamXrXXAkg
|
3151 |
+
t3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOtzCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
|
3152 |
+
AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZI
|
3153 |
+
hvcNAQELBQADggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC
|
3154 |
+
MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2cDMT/uFPpiN3
|
3155 |
+
GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUNqXsCHKnQO18LwIE6PWThv6ct
|
3156 |
+
Tr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP
|
3157 |
+
+V04ikkwj+3x6xn0dxoxGE1nVGwvb2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh
|
3158 |
+
3jRJjehZrJ3ydlo28hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fa
|
3159 |
+
wx/kNSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNjZgKAvQU6
|
3160 |
+
O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhpq1467HxpvMc7hU6eFbm0
|
3161 |
+
FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFtnh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOV
|
3162 |
+
hMJKzRwuJIczYOXD
|
3163 |
+
-----END CERTIFICATE-----
|
3164 |
+
|
3165 |
+
QuoVadis Root CA 2 G3
|
3166 |
+
=====================
|
3167 |
+
-----BEGIN CERTIFICATE-----
|
3168 |
+
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
|
3192 |
+
O3jtZsSOeWmD3n+M
|
3193 |
+
-----END CERTIFICATE-----
|
3194 |
+
|
3195 |
+
QuoVadis Root CA 3 G3
|
3196 |
+
=====================
|
3197 |
+
-----BEGIN CERTIFICATE-----
|
3198 |
+
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
|
3222 |
+
PpxxVJkES/1Y+Zj0
|
3223 |
+
-----END CERTIFICATE-----
|
3224 |
+
|
3225 |
+
DigiCert Assured ID Root G2
|
3226 |
+
===========================
|
3227 |
+
-----BEGIN CERTIFICATE-----
|
3228 |
+
MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQG
|
3229 |
+
EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw
|
3230 |
+
IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgw
|
3231 |
+
MTE1MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL
|
3232 |
+
ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIw
|
3233 |
+
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSAn61UQbVH
|
3234 |
+
35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4HteccbiJVMWWXvdMX0h5i89vq
|
3235 |
+
bFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9HpEgjAALAcKxHad3A2m67OeYfcgnDmCXRw
|
3236 |
+
VWmvo2ifv922ebPynXApVfSr/5Vh88lAbx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OP
|
3237 |
+
YLfykqGxvYmJHzDNw6YuYjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+Rn
|
3238 |
+
lTGNAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTO
|
3239 |
+
w0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPIQW5pJ6d1Ee88hjZv
|
3240 |
+
0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I0jJmwYrA8y8678Dj1JGG0VDjA9tz
|
3241 |
+
d29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4GnilmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAW
|
3242 |
+
hsI6yLETcDbYz+70CjTVW0z9B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0M
|
3243 |
+
jomZmWzwPDCvON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo
|
3244 |
+
IhNzbM8m9Yop5w==
|
3245 |
+
-----END CERTIFICATE-----
|
3246 |
+
|
3247 |
+
DigiCert Assured ID Root G3
|
3248 |
+
===========================
|
3249 |
+
-----BEGIN CERTIFICATE-----
|
3250 |
+
MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV
|
3251 |
+
UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYD
|
3252 |
+
VQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1
|
3253 |
+
MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
3254 |
+
d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQ
|
3255 |
+
BgcqhkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJfZn4f5dwb
|
3256 |
+
RXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17QRSAPWXYQ1qAk8C3eNvJs
|
3257 |
+
KTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgF
|
3258 |
+
UaFNN6KDec6NHSrkhDAKBggqhkjOPQQDAwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5Fy
|
3259 |
+
YZ5eEJJZVrmDxxDnOOlYJjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy
|
3260 |
+
1vUhZscv6pZjamVFkpUBtA==
|
3261 |
+
-----END CERTIFICATE-----
|
3262 |
+
|
3263 |
+
DigiCert Global Root G2
|
3264 |
+
=======================
|
3265 |
+
-----BEGIN CERTIFICATE-----
|
3266 |
+
MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG
|
3267 |
+
EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw
|
3268 |
+
HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx
|
3269 |
+
MjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3
|
3270 |
+
dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq
|
3271 |
+
hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ
|
3272 |
+
kTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO
|
3273 |
+
3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV
|
3274 |
+
BJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM
|
3275 |
+
UNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB
|
3276 |
+
o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu
|
3277 |
+
5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr
|
3278 |
+
F9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U
|
3279 |
+
WTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH
|
3280 |
+
QRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/
|
3281 |
+
iyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl
|
3282 |
+
MrY=
|
3283 |
+
-----END CERTIFICATE-----
|
3284 |
+
|
3285 |
+
DigiCert Global Root G3
|
3286 |
+
=======================
|
3287 |
+
-----BEGIN CERTIFICATE-----
|
3288 |
+
MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV
|
3289 |
+
UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD
|
3290 |
+
VQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw
|
3291 |
+
MDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k
|
3292 |
+
aWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C
|
3293 |
+
AQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O
|
3294 |
+
YwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP
|
3295 |
+
BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp
|
3296 |
+
Yim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y
|
3297 |
+
3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34
|
3298 |
+
VOKa5Vt8sycX
|
3299 |
+
-----END CERTIFICATE-----
|
3300 |
+
|
3301 |
+
DigiCert Trusted Root G4
|
3302 |
+
========================
|
3303 |
+
-----BEGIN CERTIFICATE-----
|
3304 |
+
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
|
3329 |
+
82Z+
|
3330 |
+
-----END CERTIFICATE-----
|
3331 |
+
|
3332 |
+
WoSign
|
3333 |
+
======
|
3334 |
+
-----BEGIN CERTIFICATE-----
|
3335 |
+
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
|
3360 |
+
-----END CERTIFICATE-----
|
3361 |
+
|
3362 |
+
WoSign China
|
3363 |
+
============
|
3364 |
+
-----BEGIN CERTIFICATE-----
|
3365 |
+
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
|
3389 |
+
kI26oQ==
|
3390 |
+
-----END CERTIFICATE-----
|
3391 |
+
|
3392 |
+
COMODO RSA Certification Authority
|
3393 |
+
==================================
|
3394 |
+
-----BEGIN CERTIFICATE-----
|
3395 |
+
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
|
3421 |
+
LaZRfyHBNVOFBkpdn627G190
|
3422 |
+
-----END CERTIFICATE-----
|
3423 |
+
|
3424 |
+
USERTrust RSA Certification Authority
|
3425 |
+
=====================================
|
3426 |
+
-----BEGIN CERTIFICATE-----
|
3427 |
+
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
|
3453 |
+
Q+6IHdfGjjxDah2nGN59PRbxYvnKkKj9
|
3454 |
+
-----END CERTIFICATE-----
|
3455 |
+
|
3456 |
+
USERTrust ECC Certification Authority
|
3457 |
+
=====================================
|
3458 |
+
-----BEGIN CERTIFICATE-----
|
3459 |
+
MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDELMAkGA1UEBhMC
|
3460 |
+
VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU
|
3461 |
+
aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv
|
3462 |
+
biBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMC
|
3463 |
+
VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU
|
3464 |
+
aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv
|
3465 |
+
biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqfloI+d61SRvU8Za2EurxtW2
|
3466 |
+
0eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinngo4N+LZfQYcTxmdwlkWOrfzCjtHDix6Ez
|
3467 |
+
nPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0GA1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNV
|
3468 |
+
HQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBB
|
3469 |
+
HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu
|
3470 |
+
9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg=
|
3471 |
+
-----END CERTIFICATE-----
|
3472 |
+
|
3473 |
+
GlobalSign ECC Root CA - R4
|
3474 |
+
===========================
|
3475 |
+
-----BEGIN CERTIFICATE-----
|
3476 |
+
MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEkMCIGA1UECxMb
|
3477 |
+
R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
|
3478 |
+
EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb
|
3479 |
+
R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
|
3480 |
+
EwpHbG9iYWxTaWduMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprl
|
3481 |
+
OQcJFspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAwDgYDVR0P
|
3482 |
+
AQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61FuOJAf/sKbvu+M8k8o4TV
|
3483 |
+
MAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGXkPoUVy0D7O48027KqGx2vKLeuwIgJ6iF
|
3484 |
+
JzWbVsaj8kfSt24bAgAXqmemFZHe+pTsewv4n4Q=
|
3485 |
+
-----END CERTIFICATE-----
|
3486 |
+
|
3487 |
+
GlobalSign ECC Root CA - R5
|
3488 |
+
===========================
|
3489 |
+
-----BEGIN CERTIFICATE-----
|
3490 |
+
MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEkMCIGA1UECxMb
|
3491 |
+
R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
|
3492 |
+
EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb
|
3493 |
+
R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
|
3494 |
+
EwpHbG9iYWxTaWduMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6
|
3495 |
+
SFkc8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8kehOvRnkmS
|
3496 |
+
h5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd
|
3497 |
+
BgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYIKoZIzj0EAwMDaAAwZQIxAOVpEslu28Yx
|
3498 |
+
uglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7
|
3499 |
+
yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3
|
3500 |
+
-----END CERTIFICATE-----
|
3501 |
+
|
3502 |
+
Staat der Nederlanden Root CA - G3
|
3503 |
+
==================================
|
3504 |
+
-----BEGIN CERTIFICATE-----
|
3505 |
+
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
|
3530 |
+
-----END CERTIFICATE-----
|
3531 |
+
|
3532 |
+
Staat der Nederlanden EV Root CA
|
3533 |
+
================================
|
3534 |
+
-----BEGIN CERTIFICATE-----
|
3535 |
+
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
|
3559 |
+
eUN51q1veieQA6TqJIc/2b3Z6fJfUEkc7uzXLg==
|
3560 |
+
-----END CERTIFICATE-----
|
3561 |
+
|
3562 |
+
IdenTrust Commercial Root CA 1
|
3563 |
+
==============================
|
3564 |
+
-----BEGIN CERTIFICATE-----
|
3565 |
+
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
|
3589 |
+
cGzM7vRX+Bi6hG6H
|
3590 |
+
-----END CERTIFICATE-----
|
3591 |
+
|
3592 |
+
IdenTrust Public Sector Root CA 1
|
3593 |
+
=================================
|
3594 |
+
-----BEGIN CERTIFICATE-----
|
3595 |
+
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
|
3619 |
+
3Wl9af0AVqW3rLatt8o+Ae+c
|
3620 |
+
-----END CERTIFICATE-----
|
3621 |
+
|
3622 |
+
Entrust Root Certification Authority - G2
|
3623 |
+
=========================================
|
3624 |
+
-----BEGIN CERTIFICATE-----
|
3625 |
+
MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMCVVMxFjAUBgNV
|
3626 |
+
BAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVy
|
3627 |
+
bXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ug
|
3628 |
+
b25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIw
|
3629 |
+
HhcNMDkwNzA3MTcyNTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoT
|
3630 |
+
DUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMx
|
3631 |
+
OTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25s
|
3632 |
+
eTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwggEi
|
3633 |
+
MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP
|
3634 |
+
/vaCeb9zYQYKpSfYs1/TRU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXz
|
3635 |
+
HHfV1IWNcCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hWwcKU
|
3636 |
+
s/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1U1+cPvQXLOZprE4y
|
3637 |
+
TGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0jaWvYkxN4FisZDQSA/i2jZRjJKRx
|
3638 |
+
AgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ6
|
3639 |
+
0B7vfec7aVHUbI2fkBJmqzANBgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5Z
|
3640 |
+
iXMRrEPR9RP/jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ
|
3641 |
+
Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v1fN2D807iDgi
|
3642 |
+
nWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4RnAuknZoh8/CbCzB428Hch0P+
|
3643 |
+
vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmHVHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xO
|
3644 |
+
e4pIb4tF9g==
|
3645 |
+
-----END CERTIFICATE-----
|
3646 |
+
|
3647 |
+
Entrust Root Certification Authority - EC1
|
3648 |
+
==========================================
|
3649 |
+
-----BEGIN CERTIFICATE-----
|
3650 |
+
MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkGA1UEBhMCVVMx
|
3651 |
+
FjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVn
|
3652 |
+
YWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXpl
|
3653 |
+
ZCB1c2Ugb25seTEzMDEGA1UEAxMqRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5
|
3654 |
+
IC0gRUMxMB4XDTEyMTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYw
|
3655 |
+
FAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2Fs
|
3656 |
+
LXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQg
|
3657 |
+
dXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt
|
3658 |
+
IEVDMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHy
|
3659 |
+
AsWfoPZb1YsGGYZPUxBtByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef
|
3660 |
+
9eNi1KlHBz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE
|
3661 |
+
FLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVCR98crlOZF7ZvHH3h
|
3662 |
+
vxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nXhTcGtXsI/esni0qU+eH6p44mCOh8
|
3663 |
+
kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G
|
3664 |
+
-----END CERTIFICATE-----
|
3665 |
+
|
3666 |
+
CFCA EV ROOT
|
3667 |
+
============
|
3668 |
+
-----BEGIN CERTIFICATE-----
|
3669 |
+
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
|
3694 |
+
-----END CERTIFICATE-----
|
3695 |
+
|
3696 |
+
TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5
|
3697 |
+
=========================================================
|
3698 |
+
-----BEGIN CERTIFICATE-----
|
3699 |
+
MIIEJzCCAw+gAwIBAgIHAI4X/iQggTANBgkqhkiG9w0BAQsFADCBsTELMAkGA1UEBhMCVFIxDzAN
|
3700 |
+
BgNVBAcMBkFua2FyYTFNMEsGA1UECgxEVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp
|
3701 |
+
bGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7Fni4xQjBABgNVBAMMOVTDnFJLVFJVU1Qg
|
3702 |
+
RWxla3Ryb25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSBINTAeFw0xMzA0MzAw
|
3703 |
+
ODA3MDFaFw0yMzA0MjgwODA3MDFaMIGxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMU0w
|
3704 |
+
SwYDVQQKDERUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnE
|
3705 |
+
n2kgSGl6bWV0bGVyaSBBLsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBFbGVrdHJvbmlrIFNlcnRp
|
3706 |
+
ZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIEg1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
3707 |
+
CgKCAQEApCUZ4WWe60ghUEoI5RHwWrom/4NZzkQqL/7hzmAD/I0Dpe3/a6i6zDQGn1k19uwsu537
|
3708 |
+
jVJp45wnEFPzpALFp/kRGml1bsMdi9GYjZOHp3GXDSHHmflS0yxjXVW86B8BSLlg/kJK9siArs1m
|
3709 |
+
ep5Fimh34khon6La8eHBEJ/rPCmBp+EyCNSgBbGM+42WAA4+Jd9ThiI7/PS98wl+d+yG6w8z5UNP
|
3710 |
+
9FR1bSmZLmZaQ9/LXMrI5Tjxfjs1nQ/0xVqhzPMggCTTV+wVunUlm+hkS7M0hO8EuPbJbKoCPrZV
|
3711 |
+
4jI3X/xml1/N1p7HIL9Nxqw/dV8c7TKcfGkAaZHjIxhT6QIDAQABo0IwQDAdBgNVHQ4EFgQUVpkH
|
3712 |
+
HtOsDGlktAxQR95DLL4gwPswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZI
|
3713 |
+
hvcNAQELBQADggEBAJ5FdnsXSDLyOIspve6WSk6BGLFRRyDN0GSxDsnZAdkJzsiZ3GglE9Rc8qPo
|
3714 |
+
BP5yCccLqh0lVX6Wmle3usURehnmp349hQ71+S4pL+f5bFgWV1Al9j4uPqrtd3GqqpmWRgqujuwq
|
3715 |
+
URawXs3qZwQcWDD1YIq9pr1N5Za0/EKJAWv2cMhQOQwt1WbZyNKzMrcbGW3LM/nfpeYVhDfwwvJl
|
3716 |
+
lpKQd/Ct9JDpEXjXk4nAPQu6KfTomZ1yju2dL+6SfaHx/126M2CFYv4HAqGEVka+lgqaE9chTLd8
|
3717 |
+
B59OTj+RdPsnnRHM3eaxynFNExc5JsUpISuTKWqW+qtB4Uu2NQvAmxU=
|
3718 |
+
-----END CERTIFICATE-----
|
3719 |
+
|
3720 |
+
TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H6
|
3721 |
+
=========================================================
|
3722 |
+
-----BEGIN CERTIFICATE-----
|
3723 |
+
MIIEJjCCAw6gAwIBAgIGfaHyZeyKMA0GCSqGSIb3DQEBCwUAMIGxMQswCQYDVQQGEwJUUjEPMA0G
|
3724 |
+
A1UEBwwGQW5rYXJhMU0wSwYDVQQKDERUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmls
|
3725 |
+
acWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBF
|
3726 |
+
bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIEg2MB4XDTEzMTIxODA5
|
3727 |
+
MDQxMFoXDTIzMTIxNjA5MDQxMFowgbExCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExTTBL
|
3728 |
+
BgNVBAoMRFTDnFJLVFJVU1QgQmlsZ2kgxLBsZXRpxZ9pbSB2ZSBCaWxpxZ9pbSBHw7x2ZW5sacSf
|
3729 |
+
aSBIaXptZXRsZXJpIEEuxZ4uMUIwQAYDVQQDDDlUw5xSS1RSVVNUIEVsZWt0cm9uaWsgU2VydGlm
|
3730 |
+
aWthIEhpem1ldCBTYcSfbGF5xLFjxLFzxLEgSDYwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
|
3731 |
+
AoIBAQCdsGjW6L0UlqMACprx9MfMkU1xeHe59yEmFXNRFpQJRwXiM/VomjX/3EsvMsew7eKC5W/a
|
3732 |
+
2uqsxgbPJQ1BgfbBOCK9+bGlprMBvD9QFyv26WZV1DOzXPhDIHiTVRZwGTLmiddk671IUP320EED
|
3733 |
+
wnS3/faAz1vFq6TWlRKb55cTMgPp1KtDWxbtMyJkKbbSk60vbNg9tvYdDjTu0n2pVQ8g9P0pu5Fb
|
3734 |
+
HH3GQjhtQiht1AH7zYiXSX6484P4tZgvsycLSF5W506jM7NE1qXyGJTtHB6plVxiSvgNZ1GpryHV
|
3735 |
+
+DKdeboaX+UEVU0TRv/yz3THGmNtwx8XEsMeED5gCLMxAgMBAAGjQjBAMB0GA1UdDgQWBBTdVRcT
|
3736 |
+
9qzoSCHK77Wv0QAy7Z6MtTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG
|
3737 |
+
9w0BAQsFAAOCAQEAb1gNl0OqFlQ+v6nfkkU/hQu7VtMMUszIv3ZnXuaqs6fvuay0EBQNdH49ba3R
|
3738 |
+
fdCaqaXKGDsCQC4qnFAUi/5XfldcEQlLNkVS9z2sFP1E34uXI9TDwe7UU5X+LEr+DXCqu4svLcsy
|
3739 |
+
o4LyVN/Y8t3XSHLuSqMplsNEzm61kod2pLv0kmzOLBQJZo6NrRa1xxsJYTvjIKIDgI6tflEATseW
|
3740 |
+
hvtDmHd9KMeP2Cpu54Rvl0EpABZeTeIT6lnAY2c6RPuY/ATTMHKm9ocJV612ph1jmv3XZch4gyt1
|
3741 |
+
O6VbuA1df74jrlZVlFjvH4GMKrLN5ptjnhi85WsGtAuYSyher4hYyw==
|
3742 |
+
-----END CERTIFICATE-----
|
3743 |
+
|
3744 |
+
Certinomis - Root CA
|
3745 |
+
====================
|
3746 |
+
-----BEGIN CERTIFICATE-----
|
3747 |
+
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
|
3772 |
+
hkIGuUE=
|
3773 |
+
-----END CERTIFICATE-----
|
3774 |
+
|
3775 |
+
OISTE WISeKey Global Root GB CA
|
3776 |
+
===============================
|
3777 |
+
-----BEGIN CERTIFICATE-----
|
3778 |
+
MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBtMQswCQYDVQQG
|
3779 |
+
EwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl
|
3780 |
+
ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAw
|
3781 |
+
MzJaFw0zOTEyMDExNTEwMzFaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYD
|
3782 |
+
VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEds
|
3783 |
+
b2JhbCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3HEokKtaX
|
3784 |
+
scriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGxWuR51jIjK+FTzJlFXHtP
|
3785 |
+
rby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk
|
3786 |
+
9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNku7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4o
|
3787 |
+
Qnc/nSMbsrY9gBQHTC5P99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvg
|
3788 |
+
GUpuuy9rM2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB
|
3789 |
+
/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZI
|
3790 |
+
hvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrghcViXfa43FK8+5/ea4n32cZiZBKpD
|
3791 |
+
dHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0
|
3792 |
+
VQreUGdNZtGn//3ZwLWoo4rOZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEui
|
3793 |
+
HZeeevJuQHHfaPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic
|
3794 |
+
Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM=
|
3795 |
+
-----END CERTIFICATE-----
|
3796 |
+
|
3797 |
+
Certification Authority of WoSign G2
|
3798 |
+
====================================
|
3799 |
+
-----BEGIN CERTIFICATE-----
|
3800 |
+
MIIDfDCCAmSgAwIBAgIQayXaioidfLwPBbOxemFFRDANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQG
|
3801 |
+
EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxLTArBgNVBAMTJENlcnRpZmljYXRpb24g
|
3802 |
+
QXV0aG9yaXR5IG9mIFdvU2lnbiBHMjAeFw0xNDExMDgwMDU4NThaFw00NDExMDgwMDU4NThaMFgx
|
3803 |
+
CzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEtMCsGA1UEAxMkQ2VydGlm
|
3804 |
+
aWNhdGlvbiBBdXRob3JpdHkgb2YgV29TaWduIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
3805 |
+
CgKCAQEAvsXEoCKASU+/2YcRxlPhuw+9YH+v9oIOH9ywjj2X4FA8jzrvZjtFB5sg+OPXJYY1kBai
|
3806 |
+
XW8wGQiHC38Gsp1ij96vkqVg1CuAmlI/9ZqD6TRay9nVYlzmDuDfBpgOgHzKtB0TiGsOqCR3A9Du
|
3807 |
+
W/PKaZE1OVbFbeP3PU9ekzgkyhjpJMuSA93MHD0JcOQg5PGurLtzaaNjOg9FD6FKmsLRY6zLEPg9
|
3808 |
+
5k4ot+vElbGs/V6r+kHLXZ1L3PR8du9nfwB6jdKgGlxNIuG12t12s9R23164i5jIFFTMaxeSt+BK
|
3809 |
+
v0mUYQs4kI9dJGwlezt52eJ+na2fmKEG/HgUYFf47oB3sQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC
|
3810 |
+
AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU+mCp62XF3RYUCE4MD42b4Pdkr2cwDQYJKoZI
|
3811 |
+
hvcNAQELBQADggEBAFfDejaCnI2Y4qtAqkePx6db7XznPWZaOzG73/MWM5H8fHulwqZm46qwtyeY
|
3812 |
+
P0nXYGdnPzZPSsvxFPpahygc7Y9BMsaV+X3avXtbwrAh449G3CE4Q3RM+zD4F3LBMvzIkRfEzFg3
|
3813 |
+
TgvMWvchNSiDbGAtROtSjFA9tWwS1/oJu2yySrHFieT801LYYRf+epSEj3m2M1m6D8QL4nCgS3gu
|
3814 |
+
+sif/a+RZQp4OBXllxcU3fngLDT4ONCEIgDAFFEYKwLcMFrw6AF8NTojrwjkr6qOKEJJLvD1mTS+
|
3815 |
+
7Q9LGOHSJDy7XUe3IfKN0QqZjuNuPq1w4I+5ysxugTH2e5x6eeRncRg=
|
3816 |
+
-----END CERTIFICATE-----
|
3817 |
+
|
3818 |
+
CA WoSign ECC Root
|
3819 |
+
==================
|
3820 |
+
-----BEGIN CERTIFICATE-----
|
3821 |
+
MIICCTCCAY+gAwIBAgIQaEpYcIBr8I8C+vbe6LCQkDAKBggqhkjOPQQDAzBGMQswCQYDVQQGEwJD
|
3822 |
+
TjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxGzAZBgNVBAMTEkNBIFdvU2lnbiBFQ0MgUm9v
|
3823 |
+
dDAeFw0xNDExMDgwMDU4NThaFw00NDExMDgwMDU4NThaMEYxCzAJBgNVBAYTAkNOMRowGAYDVQQK
|
3824 |
+
ExFXb1NpZ24gQ0EgTGltaXRlZDEbMBkGA1UEAxMSQ0EgV29TaWduIEVDQyBSb290MHYwEAYHKoZI
|
3825 |
+
zj0CAQYFK4EEACIDYgAE4f2OuEMkq5Z7hcK6C62N4DrjJLnSsb6IOsq/Srj57ywvr1FQPEd1bPiU
|
3826 |
+
t5v8KB7FVMxjnRZLU8HnIKvNrCXSf4/CwVqCXjCLelTOA7WRf6qU0NGKSMyCBSah1VES1ns2o0Iw
|
3827 |
+
QDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUqv3VWqP2h4syhf3R
|
3828 |
+
MluARZPzA7gwCgYIKoZIzj0EAwMDaAAwZQIxAOSkhLCB1T2wdKyUpOgOPQB0TKGXa/kNUTyh2Tv0
|
3829 |
+
Daupn75OcsqF1NnstTJFGG+rrQIwfcf3aWMvoeGY7xMQ0Xk/0f7qO3/eVvSQsRUR2LIiFdAvwyYu
|
3830 |
+
a/GRspBl9JrmkO5K
|
3831 |
+
-----END CERTIFICATE-----
|
3832 |
+
|
3833 |
+
SZAFIR ROOT CA2
|
3834 |
+
===============
|
3835 |
+
-----BEGIN CERTIFICATE-----
|
3836 |
+
MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQELBQAwUTELMAkG
|
3837 |
+
A1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6ZW5pb3dhIFMuQS4xGDAWBgNV
|
3838 |
+
BAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkwNzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJ
|
3839 |
+
BgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYD
|
3840 |
+
VQQDDA9TWkFGSVIgUk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5Q
|
3841 |
+
qEvNQLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT3PSQ1hNK
|
3842 |
+
DJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw3gAeqDRHu5rr/gsUvTaE
|
3843 |
+
2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr63fE9biCloBK0TXC5ztdyO4mTp4CEHCdJ
|
3844 |
+
ckm1/zuVnsHMyAHs6A6KCpbns6aH5db5BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwi
|
3845 |
+
ieDhZNRnvDF5YTy7ykHNXGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0P
|
3846 |
+
AQH/BAQDAgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsFAAOC
|
3847 |
+
AQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw8PRBEew/R40/cof5
|
3848 |
+
O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOGnXkZ7/e7DDWQw4rtTw/1zBLZpD67
|
3849 |
+
oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCPoky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul
|
3850 |
+
4+vJhaAlIDf7js4MNIThPIGyd05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6
|
3851 |
+
+/NNIxuZMzSgLvWpCz/UXeHPhJ/iGcJfitYgHuNztw==
|
3852 |
+
-----END CERTIFICATE-----
|
3853 |
+
|
3854 |
+
Certum Trusted Network CA 2
|
3855 |
+
===========================
|
3856 |
+
-----BEGIN CERTIFICATE-----
|
3857 |
+
MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCBgDELMAkGA1UE
|
3858 |
+
BhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMuQS4xJzAlBgNVBAsTHkNlcnR1
|
3859 |
+
bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIGA1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29y
|
3860 |
+
ayBDQSAyMCIYDzIwMTExMDA2MDgzOTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQ
|
3861 |
+
TDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENl
|
3862 |
+
cnRpZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENB
|
3863 |
+
IDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWADGSdhhuWZGc/IjoedQF9
|
3864 |
+
7/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+o
|
3865 |
+
CgCXhVqqndwpyeI1B+twTUrWwbNWuKFBOJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40b
|
3866 |
+
Rr5HMNUuctHFY9rnY3lEfktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2p
|
3867 |
+
uTRZCr+ESv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1mo130
|
3868 |
+
GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02isx7QBlrd9pPPV3WZ
|
3869 |
+
9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOWOZV7bIBaTxNyxtd9KXpEulKkKtVB
|
3870 |
+
Rgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgezTv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pye
|
3871 |
+
hizKV/Ma5ciSixqClnrDvFASadgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vM
|
3872 |
+
BhBgu4M1t15n3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
|
3873 |
+
AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZI
|
3874 |
+
hvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQF/xlhMcQSZDe28cmk4gmb3DW
|
3875 |
+
Al45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTfCVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuA
|
3876 |
+
L55MYIR4PSFk1vtBHxgP58l1cb29XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMo
|
3877 |
+
clm2q8KMZiYcdywmdjWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tM
|
3878 |
+
pkT/WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jbAoJnwTnb
|
3879 |
+
w3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksqP/ujmv5zMnHCnsZy4Ypo
|
3880 |
+
J/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Kob7a6bINDd82Kkhehnlt4Fj1F4jNy3eFm
|
3881 |
+
ypnTycUm/Q1oBEauttmbjL4ZvrHG8hnjXALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLX
|
3882 |
+
is7VmFxWlgPF7ncGNf/P5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7
|
3883 |
+
zAYspsbiDrW5viSP
|
3884 |
+
-----END CERTIFICATE-----
|
app/code/community/Webinterpret/Connector/Lib/composer/ca-bundle/src/CaBundle.php
ADDED
@@ -0,0 +1,291 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* This file is part of composer/ca-bundle.
|
5 |
+
*
|
6 |
+
* (c) Composer <https://github.com/composer>
|
7 |
+
*
|
8 |
+
* For the full copyright and license information, please view
|
9 |
+
* the LICENSE file that was distributed with this source code.
|
10 |
+
*/
|
11 |
+
|
12 |
+
namespace Composer\CaBundle;
|
13 |
+
|
14 |
+
use Psr\Log\LoggerInterface;
|
15 |
+
use Symfony\Component\Process\PhpProcess;
|
16 |
+
|
17 |
+
/**
|
18 |
+
* @author Chris Smith <chris@cs278.org>
|
19 |
+
* @author Jordi Boggiano <j.boggiano@seld.be>
|
20 |
+
*/
|
21 |
+
class CaBundle
|
22 |
+
{
|
23 |
+
private static $caPath;
|
24 |
+
private static $caFileValidity = array();
|
25 |
+
private static $useOpensslParse;
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Returns the system CA bundle path, or a path to the bundled one
|
29 |
+
*
|
30 |
+
* This method was adapted from Sslurp.
|
31 |
+
* https://github.com/EvanDotPro/Sslurp
|
32 |
+
*
|
33 |
+
* (c) Evan Coury <me@evancoury.com>
|
34 |
+
*
|
35 |
+
* For the full copyright and license information, please see below:
|
36 |
+
*
|
37 |
+
* Copyright (c) 2013, Evan Coury
|
38 |
+
* All rights reserved.
|
39 |
+
*
|
40 |
+
* Redistribution and use in source and binary forms, with or without modification,
|
41 |
+
* are permitted provided that the following conditions are met:
|
42 |
+
*
|
43 |
+
* * Redistributions of source code must retain the above copyright notice,
|
44 |
+
* this list of conditions and the following disclaimer.
|
45 |
+
*
|
46 |
+
* * Redistributions in binary form must reproduce the above copyright notice,
|
47 |
+
* this list of conditions and the following disclaimer in the documentation
|
48 |
+
* and/or other materials provided with the distribution.
|
49 |
+
*
|
50 |
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
51 |
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
52 |
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
53 |
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
54 |
+
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
55 |
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
56 |
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
57 |
+
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
58 |
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
59 |
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
60 |
+
*
|
61 |
+
* @param LoggerInterface $logger optional logger for information about which CA files were loaded
|
62 |
+
* @return string path to a CA bundle file or directory
|
63 |
+
*/
|
64 |
+
public static function getSystemCaRootBundlePath(LoggerInterface $logger = null)
|
65 |
+
{
|
66 |
+
if (self::$caPath !== null) {
|
67 |
+
return self::$caPath;
|
68 |
+
}
|
69 |
+
|
70 |
+
// If SSL_CERT_FILE env variable points to a valid certificate/bundle, use that.
|
71 |
+
// This mimics how OpenSSL uses the SSL_CERT_FILE env variable.
|
72 |
+
$envCertFile = getenv('SSL_CERT_FILE');
|
73 |
+
if ($envCertFile && is_readable($envCertFile) && static::validateCaFile($envCertFile, $logger)) {
|
74 |
+
return self::$caPath = $envCertFile;
|
75 |
+
}
|
76 |
+
|
77 |
+
// If SSL_CERT_DIR env variable points to a valid certificate/bundle, use that.
|
78 |
+
// This mimics how OpenSSL uses the SSL_CERT_FILE env variable.
|
79 |
+
$envCertDir = getenv('SSL_CERT_DIR');
|
80 |
+
if ($envCertDir && is_dir($envCertDir) && is_readable($envCertDir)) {
|
81 |
+
return self::$caPath = $envCertDir;
|
82 |
+
}
|
83 |
+
|
84 |
+
$configured = ini_get('openssl.cafile');
|
85 |
+
if ($configured && strlen($configured) > 0 && is_readable($configured) && static::validateCaFile($configured, $logger)) {
|
86 |
+
return self::$caPath = $configured;
|
87 |
+
}
|
88 |
+
|
89 |
+
$configured = ini_get('openssl.capath');
|
90 |
+
if ($configured && is_dir($configured) && is_readable($configured)) {
|
91 |
+
return self::$caPath = $configured;
|
92 |
+
}
|
93 |
+
|
94 |
+
$caBundlePaths = array(
|
95 |
+
'/etc/pki/tls/certs/ca-bundle.crt', // Fedora, RHEL, CentOS (ca-certificates package)
|
96 |
+
'/etc/ssl/certs/ca-certificates.crt', // Debian, Ubuntu, Gentoo, Arch Linux (ca-certificates package)
|
97 |
+
'/etc/ssl/ca-bundle.pem', // SUSE, openSUSE (ca-certificates package)
|
98 |
+
'/usr/local/share/certs/ca-root-nss.crt', // FreeBSD (ca_root_nss_package)
|
99 |
+
'/usr/ssl/certs/ca-bundle.crt', // Cygwin
|
100 |
+
'/opt/local/share/curl/curl-ca-bundle.crt', // OS X macports, curl-ca-bundle package
|
101 |
+
'/usr/local/share/curl/curl-ca-bundle.crt', // Default cURL CA bunde path (without --with-ca-bundle option)
|
102 |
+
'/usr/share/ssl/certs/ca-bundle.crt', // Really old RedHat?
|
103 |
+
'/etc/ssl/cert.pem', // OpenBSD
|
104 |
+
'/usr/local/etc/ssl/cert.pem', // FreeBSD 10.x
|
105 |
+
'/usr/local/etc/openssl/cert.pem', // OS X homebrew, openssl package
|
106 |
+
);
|
107 |
+
|
108 |
+
foreach ($caBundlePaths as $caBundle) {
|
109 |
+
if (@is_readable($caBundle) && static::validateCaFile($caBundle, $logger)) {
|
110 |
+
return self::$caPath = $caBundle;
|
111 |
+
}
|
112 |
+
}
|
113 |
+
|
114 |
+
foreach ($caBundlePaths as $caBundle) {
|
115 |
+
$caBundle = dirname($caBundle);
|
116 |
+
if (@is_dir($caBundle) && glob($caBundle.'/*')) {
|
117 |
+
return self::$caPath = $caBundle;
|
118 |
+
}
|
119 |
+
}
|
120 |
+
|
121 |
+
return self::$caPath = static::getBundledCaBundlePath(); // Bundled CA file, last resort
|
122 |
+
}
|
123 |
+
|
124 |
+
/**
|
125 |
+
* Returns the path to the bundled CA file
|
126 |
+
*
|
127 |
+
* In case you don't want to trust the user or the system, you can use this directly
|
128 |
+
*
|
129 |
+
* @return string path to a CA bundle file
|
130 |
+
*/
|
131 |
+
public static function getBundledCaBundlePath()
|
132 |
+
{
|
133 |
+
return __DIR__.'/../res/cacert.pem';
|
134 |
+
}
|
135 |
+
|
136 |
+
/**
|
137 |
+
* Validates a CA file using opensl_x509_parse only if it is safe to use
|
138 |
+
*
|
139 |
+
* @param string $filename
|
140 |
+
* @param LoggerInterface $logger optional logger for information about which CA files were loaded
|
141 |
+
*
|
142 |
+
* @return bool
|
143 |
+
*/
|
144 |
+
public static function validateCaFile($filename, LoggerInterface $logger = null)
|
145 |
+
{
|
146 |
+
static $warned = false;
|
147 |
+
|
148 |
+
if (isset(self::$caFileValidity[$filename])) {
|
149 |
+
return self::$caFileValidity[$filename];
|
150 |
+
}
|
151 |
+
|
152 |
+
$contents = file_get_contents($filename);
|
153 |
+
|
154 |
+
// assume the CA is valid if php is vulnerable to
|
155 |
+
// https://www.sektioneins.de/advisories/advisory-012013-php-openssl_x509_parse-memory-corruption-vulnerability.html
|
156 |
+
if (!static::isOpensslParseSafe()) {
|
157 |
+
if (!$warned && $logger) {
|
158 |
+
$logger->warning(sprintf(
|
159 |
+
'Your version of PHP, %s, is affected by CVE-2013-6420 and cannot safely perform certificate validation, we strongly suggest you upgrade.',
|
160 |
+
PHP_VERSION
|
161 |
+
));
|
162 |
+
$warned = true;
|
163 |
+
}
|
164 |
+
|
165 |
+
$isValid = !empty($contents);
|
166 |
+
} else {
|
167 |
+
$isValid = (bool) openssl_x509_parse($contents);
|
168 |
+
}
|
169 |
+
|
170 |
+
if ($logger) {
|
171 |
+
$logger->debug('Checked CA file '.realpath($filename).': '.($isValid ? 'valid' : 'invalid'));
|
172 |
+
}
|
173 |
+
|
174 |
+
return self::$caFileValidity[$filename] = $isValid;
|
175 |
+
}
|
176 |
+
|
177 |
+
/**
|
178 |
+
* Test if it is safe to use the PHP function openssl_x509_parse().
|
179 |
+
*
|
180 |
+
* This checks if OpenSSL extensions is vulnerable to remote code execution
|
181 |
+
* via the exploit documented as CVE-2013-6420.
|
182 |
+
*
|
183 |
+
* @return bool
|
184 |
+
*/
|
185 |
+
public static function isOpensslParseSafe()
|
186 |
+
{
|
187 |
+
if (null !== self::$useOpensslParse) {
|
188 |
+
return self::$useOpensslParse;
|
189 |
+
}
|
190 |
+
|
191 |
+
if (PHP_VERSION_ID >= 50600) {
|
192 |
+
return self::$useOpensslParse = true;
|
193 |
+
}
|
194 |
+
|
195 |
+
// Vulnerable:
|
196 |
+
// PHP 5.3.0 - PHP 5.3.27
|
197 |
+
// PHP 5.4.0 - PHP 5.4.22
|
198 |
+
// PHP 5.5.0 - PHP 5.5.6
|
199 |
+
if (
|
200 |
+
(PHP_VERSION_ID < 50400 && PHP_VERSION_ID >= 50328)
|
201 |
+
|| (PHP_VERSION_ID < 50500 && PHP_VERSION_ID >= 50423)
|
202 |
+
|| (PHP_VERSION_ID < 50600 && PHP_VERSION_ID >= 50507)
|
203 |
+
) {
|
204 |
+
// This version of PHP has the fix for CVE-2013-6420 applied.
|
205 |
+
return self::$useOpensslParse = true;
|
206 |
+
}
|
207 |
+
|
208 |
+
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
|
209 |
+
// Windows is probably insecure in this case.
|
210 |
+
return self::$useOpensslParse = false;
|
211 |
+
}
|
212 |
+
|
213 |
+
$compareDistroVersionPrefix = function ($prefix, $fixedVersion) {
|
214 |
+
$regex = '{^'.preg_quote($prefix).'([0-9]+)$}';
|
215 |
+
|
216 |
+
if (preg_match($regex, PHP_VERSION, $m)) {
|
217 |
+
return ((int) $m[1]) >= $fixedVersion;
|
218 |
+
}
|
219 |
+
|
220 |
+
return false;
|
221 |
+
};
|
222 |
+
|
223 |
+
// Hard coded list of PHP distributions with the fix backported.
|
224 |
+
if (
|
225 |
+
$compareDistroVersionPrefix('5.3.3-7+squeeze', 18) // Debian 6 (Squeeze)
|
226 |
+
|| $compareDistroVersionPrefix('5.4.4-14+deb7u', 7) // Debian 7 (Wheezy)
|
227 |
+
|| $compareDistroVersionPrefix('5.3.10-1ubuntu3.', 9) // Ubuntu 12.04 (Precise)
|
228 |
+
) {
|
229 |
+
return self::$useOpensslParse = true;
|
230 |
+
}
|
231 |
+
|
232 |
+
// Symfony Process component is missing so we assume it is unsafe at this point
|
233 |
+
if (!class_exists('Symfony\Component\Process\PhpProcess')) {
|
234 |
+
return self::$useOpensslParse = false;
|
235 |
+
}
|
236 |
+
|
237 |
+
// This is where things get crazy, because distros backport security
|
238 |
+
// fixes the chances are on NIX systems the fix has been applied but
|
239 |
+
// it's not possible to verify that from the PHP version.
|
240 |
+
//
|
241 |
+
// To verify exec a new PHP process and run the issue testcase with
|
242 |
+
// known safe input that replicates the bug.
|
243 |
+
|
244 |
+
// Based on testcase in https://github.com/php/php-src/commit/c1224573c773b6845e83505f717fbf820fc18415
|
245 |
+
// changes in https://github.com/php/php-src/commit/76a7fd893b7d6101300cc656058704a73254d593
|
246 |
+
$cert = 'LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUVwRENDQTR5Z0F3SUJBZ0lKQUp6dThyNnU2ZUJjTUEwR0NTcUdTSWIzRFFFQkJRVUFNSUhETVFzd0NRWUQKVlFRR0V3SkVSVEVjTUJvR0ExVUVDQXdUVG05eVpISm9aV2x1TFZkbGMzUm1ZV3hsYmpFUU1BNEdBMVVFQnd3SApTOE9Ed3Jac2JqRVVNQklHQTFVRUNnd0xVMlZyZEdsdmJrVnBibk14SHpBZEJnTlZCQXNNRmsxaGJHbGphVzkxCmN5QkRaWEowSUZObFkzUnBiMjR4SVRBZkJnTlZCQU1NR0cxaGJHbGphVzkxY3k1elpXdDBhVzl1WldsdWN5NWsKWlRFcU1DZ0dDU3FHU0liM0RRRUpBUlliYzNSbFptRnVMbVZ6YzJWeVFITmxhM1JwYjI1bGFXNXpMbVJsTUhVWQpaREU1TnpBd01UQXhNREF3TURBd1dnQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBCkFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUEKQUFBQUFBQVhEVEUwTVRFeU9ERXhNemt6TlZvd2djTXhDekFKQmdOVkJBWVRBa1JGTVJ3d0dnWURWUVFJREJOTwpiM0prY21obGFXNHRWMlZ6ZEdaaGJHVnVNUkF3RGdZRFZRUUhEQWRMdzRQQ3RteHVNUlF3RWdZRFZRUUtEQXRUClpXdDBhVzl1UldsdWN6RWZNQjBHQTFVRUN3d1dUV0ZzYVdOcGIzVnpJRU5sY25RZ1UyVmpkR2x2YmpFaE1COEcKQTFVRUF3d1liV0ZzYVdOcGIzVnpMbk5sYTNScGIyNWxhVzV6TG1SbE1Tb3dLQVlKS29aSWh2Y05BUWtCRmh0egpkR1ZtWVc0dVpYTnpaWEpBYzJWcmRHbHZibVZwYm5NdVpHVXdnZ0VpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElCCkR3QXdnZ0VLQW9JQkFRRERBZjNobDdKWTBYY0ZuaXlFSnBTU0RxbjBPcUJyNlFQNjV1c0pQUnQvOFBhRG9xQnUKd0VZVC9OYSs2ZnNnUGpDMHVLOURaZ1dnMnRIV1dvYW5TYmxBTW96NVBINlorUzRTSFJaN2UyZERJalBqZGhqaAowbUxnMlVNTzV5cDBWNzk3R2dzOWxOdDZKUmZIODFNTjJvYlhXczROdHp0TE11RDZlZ3FwcjhkRGJyMzRhT3M4CnBrZHVpNVVhd1Raa3N5NXBMUEhxNWNNaEZHbTA2djY1Q0xvMFYyUGQ5K0tBb2tQclBjTjVLTEtlYno3bUxwazYKU01lRVhPS1A0aWRFcXh5UTdPN2ZCdUhNZWRzUWh1K3ByWTNzaTNCVXlLZlF0UDVDWm5YMmJwMHdLSHhYMTJEWAoxbmZGSXQ5RGJHdkhUY3lPdU4rblpMUEJtM3ZXeG50eUlJdlZBZ01CQUFHalFqQkFNQWtHQTFVZEV3UUNNQUF3CkVRWUpZSVpJQVliNFFnRUJCQVFEQWdlQU1Bc0dBMVVkRHdRRUF3SUZvREFUQmdOVkhTVUVEREFLQmdnckJnRUYKQlFjREFqQU5CZ2txaGtpRzl3MEJBUVVGQUFPQ0FRRUFHMGZaWVlDVGJkajFYWWMrMVNub2FQUit2SThDOENhRAo4KzBVWWhkbnlVNGdnYTBCQWNEclk5ZTk0ZUVBdTZacXljRjZGakxxWFhkQWJvcHBXb2NyNlQ2R0QxeDMzQ2tsClZBcnpHL0t4UW9oR0QySmVxa2hJTWxEb214SE83a2EzOStPYThpMnZXTFZ5alU4QVp2V01BcnVIYTRFRU55RzcKbFcyQWFnYUZLRkNyOVRuWFRmcmR4R1ZFYnY3S1ZRNmJkaGc1cDVTanBXSDErTXEwM3VSM1pYUEJZZHlWODMxOQpvMGxWajFLRkkyRENML2xpV2lzSlJvb2YrMWNSMzVDdGQwd1lCY3BCNlRac2xNY09QbDc2ZHdLd0pnZUpvMlFnClpzZm1jMnZDMS9xT2xOdU5xLzBUenprVkd2OEVUVDNDZ2FVK1VYZTRYT1Z2a2NjZWJKbjJkZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K';
|
247 |
+
$script = <<<'EOT'
|
248 |
+
|
249 |
+
error_reporting(-1);
|
250 |
+
$info = openssl_x509_parse(base64_decode('%s'));
|
251 |
+
var_dump(PHP_VERSION, $info['issuer']['emailAddress'], $info['validFrom_time_t']);
|
252 |
+
|
253 |
+
EOT;
|
254 |
+
$script = '<'."?php\n".sprintf($script, $cert);
|
255 |
+
|
256 |
+
try {
|
257 |
+
$process = new PhpProcess($script);
|
258 |
+
$process->mustRun();
|
259 |
+
} catch (\Exception $e) {
|
260 |
+
// In the case of any exceptions just accept it is not possible to
|
261 |
+
// determine the safety of openssl_x509_parse and bail out.
|
262 |
+
return self::$useOpensslParse = false;
|
263 |
+
}
|
264 |
+
|
265 |
+
$output = preg_split('{\r?\n}', trim($process->getOutput()));
|
266 |
+
$errorOutput = trim($process->getErrorOutput());
|
267 |
+
|
268 |
+
if (
|
269 |
+
count($output) === 3
|
270 |
+
&& $output[0] === sprintf('string(%d) "%s"', strlen(PHP_VERSION), PHP_VERSION)
|
271 |
+
&& $output[1] === 'string(27) "stefan.esser@sektioneins.de"'
|
272 |
+
&& $output[2] === 'int(-1)'
|
273 |
+
&& preg_match('{openssl_x509_parse\(\): illegal (?:ASN1 data type for|length in) timestamp in - on line \d+}', $errorOutput)
|
274 |
+
) {
|
275 |
+
// This PHP has the fix backported probably by a distro security team.
|
276 |
+
return self::$useOpensslParse = true;
|
277 |
+
}
|
278 |
+
|
279 |
+
return self::$useOpensslParse = false;
|
280 |
+
}
|
281 |
+
|
282 |
+
/**
|
283 |
+
* Resets the static caches
|
284 |
+
*/
|
285 |
+
public static function reset()
|
286 |
+
{
|
287 |
+
self::$caFileValidity = array();
|
288 |
+
self::$caPath = null;
|
289 |
+
self::$useOpensslParse = null;
|
290 |
+
}
|
291 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/composer/installed.json
ADDED
@@ -0,0 +1,263 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{
|
3 |
+
"name": "kriswallsmith/buzz",
|
4 |
+
"version": "v0.15",
|
5 |
+
"version_normalized": "0.15.0.0",
|
6 |
+
"source": {
|
7 |
+
"type": "git",
|
8 |
+
"url": "https://github.com/kriswallsmith/Buzz.git",
|
9 |
+
"reference": "d4041666c3ffb379af02a92dabe81c904b35fab8"
|
10 |
+
},
|
11 |
+
"dist": {
|
12 |
+
"type": "zip",
|
13 |
+
"url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/d4041666c3ffb379af02a92dabe81c904b35fab8",
|
14 |
+
"reference": "d4041666c3ffb379af02a92dabe81c904b35fab8",
|
15 |
+
"shasum": ""
|
16 |
+
},
|
17 |
+
"require": {
|
18 |
+
"php": ">=5.3.0"
|
19 |
+
},
|
20 |
+
"require-dev": {
|
21 |
+
"phpunit/phpunit": "3.7.*"
|
22 |
+
},
|
23 |
+
"suggest": {
|
24 |
+
"ext-curl": "*"
|
25 |
+
},
|
26 |
+
"time": "2015-06-25 17:26:56",
|
27 |
+
"type": "library",
|
28 |
+
"installation-source": "dist",
|
29 |
+
"autoload": {
|
30 |
+
"psr-0": {
|
31 |
+
"Buzz": "lib/"
|
32 |
+
}
|
33 |
+
},
|
34 |
+
"notification-url": "https://packagist.org/downloads/",
|
35 |
+
"license": [
|
36 |
+
"MIT"
|
37 |
+
],
|
38 |
+
"authors": [
|
39 |
+
{
|
40 |
+
"name": "Kris Wallsmith",
|
41 |
+
"email": "kris.wallsmith@gmail.com",
|
42 |
+
"homepage": "http://kriswallsmith.net/"
|
43 |
+
}
|
44 |
+
],
|
45 |
+
"description": "Lightweight HTTP client",
|
46 |
+
"homepage": "https://github.com/kriswallsmith/Buzz",
|
47 |
+
"keywords": [
|
48 |
+
"curl",
|
49 |
+
"http client"
|
50 |
+
]
|
51 |
+
},
|
52 |
+
{
|
53 |
+
"name": "composer/ca-bundle",
|
54 |
+
"version": "1.0.4",
|
55 |
+
"version_normalized": "1.0.4.0",
|
56 |
+
"source": {
|
57 |
+
"type": "git",
|
58 |
+
"url": "https://github.com/composer/ca-bundle.git",
|
59 |
+
"reference": "ec21a59414b99501e723b63fd664aa8ead9c5680"
|
60 |
+
},
|
61 |
+
"dist": {
|
62 |
+
"type": "zip",
|
63 |
+
"url": "https://api.github.com/repos/composer/ca-bundle/zipball/ec21a59414b99501e723b63fd664aa8ead9c5680",
|
64 |
+
"reference": "ec21a59414b99501e723b63fd664aa8ead9c5680",
|
65 |
+
"shasum": ""
|
66 |
+
},
|
67 |
+
"require": {
|
68 |
+
"ext-openssl": "*",
|
69 |
+
"ext-pcre": "*",
|
70 |
+
"php": "^5.3.2 || ^7.0"
|
71 |
+
},
|
72 |
+
"require-dev": {
|
73 |
+
"psr/log": "^1.0",
|
74 |
+
"symfony/process": "^2.5 || ^3.0"
|
75 |
+
},
|
76 |
+
"suggest": {
|
77 |
+
"symfony/process": "This is necessary to reliably check whether openssl_x509_parse is vulnerable on older php versions, but can be ignored on PHP 5.5.6+"
|
78 |
+
},
|
79 |
+
"time": "2016-09-04 19:00:06",
|
80 |
+
"type": "library",
|
81 |
+
"extra": {
|
82 |
+
"branch-alias": {
|
83 |
+
"dev-master": "1.x-dev"
|
84 |
+
}
|
85 |
+
},
|
86 |
+
"installation-source": "dist",
|
87 |
+
"autoload": {
|
88 |
+
"psr-4": {
|
89 |
+
"Composer\\CaBundle\\": "src"
|
90 |
+
}
|
91 |
+
},
|
92 |
+
"notification-url": "https://packagist.org/downloads/",
|
93 |
+
"license": [
|
94 |
+
"MIT"
|
95 |
+
],
|
96 |
+
"authors": [
|
97 |
+
{
|
98 |
+
"name": "Jordi Boggiano",
|
99 |
+
"email": "j.boggiano@seld.be",
|
100 |
+
"homepage": "http://seld.be"
|
101 |
+
}
|
102 |
+
],
|
103 |
+
"description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
|
104 |
+
"keywords": [
|
105 |
+
"cabundle",
|
106 |
+
"cacert",
|
107 |
+
"certificate",
|
108 |
+
"ssl",
|
109 |
+
"tls"
|
110 |
+
]
|
111 |
+
},
|
112 |
+
{
|
113 |
+
"name": "maxmind/web-service-common",
|
114 |
+
"version": "v0.3.1",
|
115 |
+
"version_normalized": "0.3.1.0",
|
116 |
+
"source": {
|
117 |
+
"type": "git",
|
118 |
+
"url": "https://github.com/maxmind/web-service-common-php.git",
|
119 |
+
"reference": "1fe780bcd6a9038b7e36b13fa0aeeeeca4cdb0a4"
|
120 |
+
},
|
121 |
+
"dist": {
|
122 |
+
"type": "zip",
|
123 |
+
"url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/1fe780bcd6a9038b7e36b13fa0aeeeeca4cdb0a4",
|
124 |
+
"reference": "1fe780bcd6a9038b7e36b13fa0aeeeeca4cdb0a4",
|
125 |
+
"shasum": ""
|
126 |
+
},
|
127 |
+
"require": {
|
128 |
+
"composer/ca-bundle": "^1.0.3",
|
129 |
+
"ext-curl": "*",
|
130 |
+
"ext-json": "*",
|
131 |
+
"php": ">=5.3"
|
132 |
+
},
|
133 |
+
"require-dev": {
|
134 |
+
"phpunit/phpunit": "4.*",
|
135 |
+
"squizlabs/php_codesniffer": "2.*"
|
136 |
+
},
|
137 |
+
"time": "2016-08-18 16:36:52",
|
138 |
+
"type": "library",
|
139 |
+
"installation-source": "dist",
|
140 |
+
"autoload": {
|
141 |
+
"psr-4": {
|
142 |
+
"MaxMind\\": "src"
|
143 |
+
}
|
144 |
+
},
|
145 |
+
"notification-url": "https://packagist.org/downloads/",
|
146 |
+
"license": [
|
147 |
+
"Apache-2.0"
|
148 |
+
],
|
149 |
+
"authors": [
|
150 |
+
{
|
151 |
+
"name": "Gregory Oschwald",
|
152 |
+
"email": "goschwald@maxmind.com"
|
153 |
+
}
|
154 |
+
],
|
155 |
+
"description": "Internal MaxMind Web Service API",
|
156 |
+
"homepage": "https://github.com/maxmind/mm-web-service-api-php"
|
157 |
+
},
|
158 |
+
{
|
159 |
+
"name": "maxmind-db/reader",
|
160 |
+
"version": "v1.1.1",
|
161 |
+
"version_normalized": "1.1.1.0",
|
162 |
+
"source": {
|
163 |
+
"type": "git",
|
164 |
+
"url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
|
165 |
+
"reference": "8da3b4fcd439779d4b16bba0a4ba98365f78d788"
|
166 |
+
},
|
167 |
+
"dist": {
|
168 |
+
"type": "zip",
|
169 |
+
"url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/8da3b4fcd439779d4b16bba0a4ba98365f78d788",
|
170 |
+
"reference": "8da3b4fcd439779d4b16bba0a4ba98365f78d788",
|
171 |
+
"shasum": ""
|
172 |
+
},
|
173 |
+
"require": {
|
174 |
+
"php": ">=5.3.1"
|
175 |
+
},
|
176 |
+
"require-dev": {
|
177 |
+
"phpunit/phpunit": "4.2.*",
|
178 |
+
"satooshi/php-coveralls": "1.0.*",
|
179 |
+
"squizlabs/php_codesniffer": "2.*"
|
180 |
+
},
|
181 |
+
"time": "2016-09-15 21:26:50",
|
182 |
+
"type": "library",
|
183 |
+
"installation-source": "dist",
|
184 |
+
"autoload": {
|
185 |
+
"psr-0": {
|
186 |
+
"MaxMind": "src/"
|
187 |
+
}
|
188 |
+
},
|
189 |
+
"notification-url": "https://packagist.org/downloads/",
|
190 |
+
"license": [
|
191 |
+
"Apache-2.0"
|
192 |
+
],
|
193 |
+
"authors": [
|
194 |
+
{
|
195 |
+
"name": "Gregory J. Oschwald",
|
196 |
+
"email": "goschwald@maxmind.com",
|
197 |
+
"homepage": "http://www.maxmind.com/"
|
198 |
+
}
|
199 |
+
],
|
200 |
+
"description": "MaxMind DB Reader API",
|
201 |
+
"homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
|
202 |
+
"keywords": [
|
203 |
+
"database",
|
204 |
+
"geoip",
|
205 |
+
"geoip2",
|
206 |
+
"geolocation",
|
207 |
+
"maxmind"
|
208 |
+
]
|
209 |
+
},
|
210 |
+
{
|
211 |
+
"name": "geoip2/geoip2",
|
212 |
+
"version": "v2.4.4",
|
213 |
+
"version_normalized": "2.4.4.0",
|
214 |
+
"source": {
|
215 |
+
"type": "git",
|
216 |
+
"url": "https://github.com/maxmind/GeoIP2-php.git",
|
217 |
+
"reference": "57e0384a83d0935db4c4cdb3f411aa131481ae80"
|
218 |
+
},
|
219 |
+
"dist": {
|
220 |
+
"type": "zip",
|
221 |
+
"url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/57e0384a83d0935db4c4cdb3f411aa131481ae80",
|
222 |
+
"reference": "57e0384a83d0935db4c4cdb3f411aa131481ae80",
|
223 |
+
"shasum": ""
|
224 |
+
},
|
225 |
+
"require": {
|
226 |
+
"maxmind-db/reader": "~1.0",
|
227 |
+
"maxmind/web-service-common": "~0.3",
|
228 |
+
"php": ">=5.3.1"
|
229 |
+
},
|
230 |
+
"require-dev": {
|
231 |
+
"phpunit/phpunit": "4.2.*",
|
232 |
+
"squizlabs/php_codesniffer": "2.*"
|
233 |
+
},
|
234 |
+
"time": "2016-10-11 21:58:42",
|
235 |
+
"type": "library",
|
236 |
+
"installation-source": "dist",
|
237 |
+
"autoload": {
|
238 |
+
"psr-4": {
|
239 |
+
"GeoIp2\\": "src"
|
240 |
+
}
|
241 |
+
},
|
242 |
+
"notification-url": "https://packagist.org/downloads/",
|
243 |
+
"license": [
|
244 |
+
"Apache-2.0"
|
245 |
+
],
|
246 |
+
"authors": [
|
247 |
+
{
|
248 |
+
"name": "Gregory J. Oschwald",
|
249 |
+
"email": "goschwald@maxmind.com",
|
250 |
+
"homepage": "http://www.maxmind.com/"
|
251 |
+
}
|
252 |
+
],
|
253 |
+
"description": "MaxMind GeoIP2 PHP API",
|
254 |
+
"homepage": "https://github.com/maxmind/GeoIP2-php",
|
255 |
+
"keywords": [
|
256 |
+
"IP",
|
257 |
+
"geoip",
|
258 |
+
"geoip2",
|
259 |
+
"geolocation",
|
260 |
+
"maxmind"
|
261 |
+
]
|
262 |
+
}
|
263 |
+
]
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/.gitmodules
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
[submodule "maxmind-db"]
|
2 |
+
path = maxmind-db
|
3 |
+
url = git://github.com/maxmind/MaxMind-DB.git
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/CHANGELOG.md
ADDED
@@ -0,0 +1,224 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CHANGELOG
|
2 |
+
=========
|
3 |
+
|
4 |
+
2.4.4 (2016-10-11)
|
5 |
+
------------------
|
6 |
+
|
7 |
+
* `isset()` on `mostSpecificSubdivision` attribute now returns the
|
8 |
+
correct value. Reported by Juan Francisco Giordana. GitHub #81.
|
9 |
+
|
10 |
+
2.4.3 (2016-10-11)
|
11 |
+
------------------
|
12 |
+
|
13 |
+
* `isset()` on `name` attribute now returns the correct value. Reported by
|
14 |
+
Juan Francisco Giordana. GitHub #79.
|
15 |
+
|
16 |
+
2.4.2 (2016-08-17)
|
17 |
+
------------------
|
18 |
+
|
19 |
+
* Updated documentation to clarify what the accuracy radius refers to.
|
20 |
+
* Upgraded `maxmind/web-service-common` to 0.3.0. This version uses
|
21 |
+
`composer/ca-bundle` rather than our own CA bundle. GitHub #75.
|
22 |
+
* Improved PHP documentation generation.
|
23 |
+
|
24 |
+
2.4.1 (2016-06-10)
|
25 |
+
------------------
|
26 |
+
|
27 |
+
* Corrected type annotations in documentation. GitHub #66.
|
28 |
+
* Updated documentation to reflect that the accuracy radius is now included
|
29 |
+
in City.
|
30 |
+
* Upgraded web service client, which supports setting a proxy. GitHub #59.
|
31 |
+
|
32 |
+
2.4.0 (2016-04-15)
|
33 |
+
------------------
|
34 |
+
|
35 |
+
* Added support for the GeoIP2 Enterprise database.
|
36 |
+
|
37 |
+
2.3.3 (2015-09-24)
|
38 |
+
------------------
|
39 |
+
|
40 |
+
* Corrected case on `JsonSerializable` interface. Reported by Axel Etcheverry.
|
41 |
+
GitHub #56.
|
42 |
+
|
43 |
+
2.3.2 (2015-09-23)
|
44 |
+
------------------
|
45 |
+
|
46 |
+
* `JsonSerializable` compatibility interface was moved to `GeoIp2\Compat`
|
47 |
+
rather than the global namespace to prevent autoloading issues. Reported by
|
48 |
+
Tomas Buteler. GitHub #54.
|
49 |
+
* Missing documentation for the `$postal` property was added to the
|
50 |
+
`GeoIp2\Model\City` class. Fix by Roy Sindre Norangshol. GitHub #51.
|
51 |
+
* In the Phar distribution, source files for this module no longer have their
|
52 |
+
documentation stripped, allowing IDE introspection to work properly.
|
53 |
+
Reported by Dominic Black. GitHub #52.
|
54 |
+
|
55 |
+
2.3.1 (2015-06-30)
|
56 |
+
------------------
|
57 |
+
|
58 |
+
* Updated `maxmind/web-service-common` to version with fixes for PHP 5.3 and
|
59 |
+
5.4.
|
60 |
+
|
61 |
+
2.3.0 (2015-06-29)
|
62 |
+
------------------
|
63 |
+
|
64 |
+
* Support for demographics fields `averageIncome` and `populationDensity` in
|
65 |
+
the `Location` record, returned by the Insights endpoint.
|
66 |
+
* The `isAnonymousProxy` and `isSatelliteProvider` properties on
|
67 |
+
`GeoIP2\Record\Traits` have been deprecated. Please use our [GeoIP2
|
68 |
+
Anonymous IP database](https://www.maxmind.com/en/geoip2-anonymous-ip-database)
|
69 |
+
to determine whether an IP address is used by an anonymizing service.
|
70 |
+
|
71 |
+
2.2.0-beta1 (2015-06-09)
|
72 |
+
------------------------
|
73 |
+
|
74 |
+
* Typo fix in documentation.
|
75 |
+
|
76 |
+
2.2.0-alpha2 (2015-06-01)
|
77 |
+
-------------------------
|
78 |
+
|
79 |
+
* `maxmind-ws/web-service-common` was renamed to `maxmind/web-service-common`.
|
80 |
+
|
81 |
+
2.2.0-alpha1 (2015-05-22)
|
82 |
+
-------------------------
|
83 |
+
|
84 |
+
* The library no longer uses Guzzle and instead uses curl directly.
|
85 |
+
* Support for `timeout` and `connectTimout` were added to the `$options` array
|
86 |
+
passed to the `GeoIp2\WebService\Client` constructor. Pull request by Will
|
87 |
+
Bradley. GitHub #36.
|
88 |
+
|
89 |
+
2.1.1 (2014-12-03)
|
90 |
+
------------------
|
91 |
+
|
92 |
+
* The 2.1.0 Phar builds included a shebang line, causing issues when loading
|
93 |
+
it as a library. This has been corrected. GitHub #33.
|
94 |
+
|
95 |
+
2.1.0 (2014-10-29)
|
96 |
+
------------------
|
97 |
+
|
98 |
+
* Update ApiGen dependency to version that isn't broken on case sensitive
|
99 |
+
file systems.
|
100 |
+
* Added support for the GeoIP2 Anonymous IP database. The
|
101 |
+
`GeoIP2\Database\Reader` class now has an `anonymousIp` method which returns
|
102 |
+
a `GeoIP2\Model\AnonymousIp` object.
|
103 |
+
* Boolean attributes like those in the `GeoIP2\Record\Traits` class now return
|
104 |
+
`false` instead of `null` when they were not true.
|
105 |
+
|
106 |
+
2.0.0 (2014-09-22)
|
107 |
+
------------------
|
108 |
+
|
109 |
+
* First production release.
|
110 |
+
|
111 |
+
0.9.0 (2014-09-15)
|
112 |
+
------------------
|
113 |
+
|
114 |
+
* IMPORTANT: The deprecated `omni()` and `cityIspOrg()` methods have been
|
115 |
+
removed from `GeoIp2\WebService\Client`.
|
116 |
+
|
117 |
+
0.8.1 (2014-09-12)
|
118 |
+
------------------
|
119 |
+
|
120 |
+
* The check added to the `GeoIP2\Database\Reader` lookup methods in 0.8.0 did
|
121 |
+
not work with the GeoIP2 City Database Subset by Continent with World
|
122 |
+
Countries. This has been fixed. Fixes GitHub issue #23.
|
123 |
+
|
124 |
+
0.8.0 (2014-09-10)
|
125 |
+
------------------
|
126 |
+
|
127 |
+
* The `GeoIp2\Database\Reader` lookup methods (e.g., `city()`, `isp()`) now
|
128 |
+
throw a `BadMethodCallException` if they are used with a database that
|
129 |
+
does not match the method. In particular, doing a `city()` lookup on a
|
130 |
+
GeoIP2 Country database will result in an exception, and vice versa.
|
131 |
+
* A `metadata()` method has been added to the `GeoIP2\Database\Reader` class.
|
132 |
+
This returns a `MaxMind\Db\Reader\Metadata` class with information about the
|
133 |
+
database.
|
134 |
+
* The name attribute was missing from the RepresentedCountry class.
|
135 |
+
|
136 |
+
0.7.0 (2014-07-22)
|
137 |
+
------------------
|
138 |
+
|
139 |
+
* The web service client API has been updated for the v2.1 release of the web
|
140 |
+
service. In particular, the `cityIspOrg` and `omni` methods on
|
141 |
+
`GeoIp2\WebService\Client` should be considered deprecated. The `city`
|
142 |
+
method now provides all of the data formerly provided by `cityIspOrg`, and
|
143 |
+
the `omni` method has been replaced by the `insights` method.
|
144 |
+
* Support was added for GeoIP2 Connection Type, Domain and ISP databases.
|
145 |
+
|
146 |
+
|
147 |
+
0.6.3 (2014-05-12)
|
148 |
+
------------------
|
149 |
+
|
150 |
+
* With the previous Phar builds, some users received `phar error: invalid url
|
151 |
+
or non-existent phar` errors. The correct alias is now used for the Phar,
|
152 |
+
and this should no longer be an issue.
|
153 |
+
|
154 |
+
0.6.2 (2014-05-08)
|
155 |
+
------------------
|
156 |
+
|
157 |
+
* The Phar build was broken with Guzzle 3.9.0+. This has been fixed.
|
158 |
+
|
159 |
+
0.6.1 (2014-05-01)
|
160 |
+
------------------
|
161 |
+
|
162 |
+
* This API now officially supports HHVM.
|
163 |
+
* The `maxmind-db/reader` dependency was updated to a version that does not
|
164 |
+
require BC Math.
|
165 |
+
* The Composer compatibility autoload rules are now targeted more narrowly.
|
166 |
+
* A `box.json` file is included to build a Phar package.
|
167 |
+
|
168 |
+
0.6.0 (2014-02-19)
|
169 |
+
------------------
|
170 |
+
|
171 |
+
* This API is now licensed under the Apache License, Version 2.0.
|
172 |
+
* Model and record classes now implement `JsonSerializable`.
|
173 |
+
* `isset` now works with model and record classes.
|
174 |
+
|
175 |
+
0.5.0 (2013-10-21)
|
176 |
+
------------------
|
177 |
+
|
178 |
+
* Renamed $languages constructor parameters to $locales for both the Client
|
179 |
+
and Reader classes.
|
180 |
+
* Documentation and code clean-up (Ben Morel).
|
181 |
+
* Added the interface `GeoIp2\ProviderInterface`, which is implemented by both
|
182 |
+
`\GeoIp2\Database\Reader` and `\GeoIp2\WebService\Client`.
|
183 |
+
|
184 |
+
0.4.0 (2013-07-16)
|
185 |
+
------------------
|
186 |
+
|
187 |
+
* This is the first release with the GeoIP2 database reader. Please see the
|
188 |
+
`README.md` file and the `\GeoIp2\Database\Reader` class.
|
189 |
+
* The general exception classes were replaced with specific exception classes
|
190 |
+
representing particular types of errors, such as an authentication error.
|
191 |
+
|
192 |
+
0.3.0 (2013-07-12)
|
193 |
+
------------------
|
194 |
+
|
195 |
+
* In namespaces and class names, "GeoIP2" was renamed to "GeoIp2" to improve
|
196 |
+
consistency.
|
197 |
+
|
198 |
+
0.2.1 (2013-06-10)
|
199 |
+
------------------
|
200 |
+
|
201 |
+
* First official beta release.
|
202 |
+
* Documentation updates and corrections.
|
203 |
+
|
204 |
+
0.2.0 (2013-05-29)
|
205 |
+
------------------
|
206 |
+
|
207 |
+
* `GenericException` was renamed to `GeoIP2Exception`.
|
208 |
+
* We now support more languages. The new languages are de, es, fr, and pt-BR.
|
209 |
+
* The REST API now returns a record with data about your account. There is
|
210 |
+
a new `GeoIP\Records\MaxMind` class for this data.
|
211 |
+
* The `continentCode` attribute on `Continent` was renamed to `code`.
|
212 |
+
* Documentation updates.
|
213 |
+
|
214 |
+
0.1.1 (2013-05-14)
|
215 |
+
------------------
|
216 |
+
|
217 |
+
* Updated Guzzle version requirement.
|
218 |
+
* Fixed Composer example in README.md.
|
219 |
+
|
220 |
+
|
221 |
+
0.1.0 (2013-05-13)
|
222 |
+
------------------
|
223 |
+
|
224 |
+
* Initial release.
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
Apache License
|
3 |
+
Version 2.0, January 2004
|
4 |
+
http://www.apache.org/licenses/
|
5 |
+
|
6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7 |
+
|
8 |
+
1. Definitions.
|
9 |
+
|
10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
12 |
+
|
13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14 |
+
the copyright owner that is granting the License.
|
15 |
+
|
16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
17 |
+
other entities that control, are controlled by, or are under common
|
18 |
+
control with that entity. For the purposes of this definition,
|
19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
20 |
+
direction or management of such entity, whether by contract or
|
21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23 |
+
|
24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25 |
+
exercising permissions granted by this License.
|
26 |
+
|
27 |
+
"Source" form shall mean the preferred form for making modifications,
|
28 |
+
including but not limited to software source code, documentation
|
29 |
+
source, and configuration files.
|
30 |
+
|
31 |
+
"Object" form shall mean any form resulting from mechanical
|
32 |
+
transformation or translation of a Source form, including but
|
33 |
+
not limited to compiled object code, generated documentation,
|
34 |
+
and conversions to other media types.
|
35 |
+
|
36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
37 |
+
Object form, made available under the License, as indicated by a
|
38 |
+
copyright notice that is included in or attached to the work
|
39 |
+
(an example is provided in the Appendix below).
|
40 |
+
|
41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42 |
+
form, that is based on (or derived from) the Work and for which the
|
43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
45 |
+
of this License, Derivative Works shall not include works that remain
|
46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47 |
+
the Work and Derivative Works thereof.
|
48 |
+
|
49 |
+
"Contribution" shall mean any work of authorship, including
|
50 |
+
the original version of the Work and any modifications or additions
|
51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
55 |
+
means any form of electronic, verbal, or written communication sent
|
56 |
+
to the Licensor or its representatives, including but not limited to
|
57 |
+
communication on electronic mailing lists, source code control systems,
|
58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
60 |
+
excluding communication that is conspicuously marked or otherwise
|
61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
62 |
+
|
63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
65 |
+
subsequently incorporated within the Work.
|
66 |
+
|
67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
72 |
+
Work and such Derivative Works in Source or Object form.
|
73 |
+
|
74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77 |
+
(except as stated in this section) patent license to make, have made,
|
78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79 |
+
where such license applies only to those patent claims licensable
|
80 |
+
by such Contributor that are necessarily infringed by their
|
81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
83 |
+
institute patent litigation against any entity (including a
|
84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85 |
+
or a Contribution incorporated within the Work constitutes direct
|
86 |
+
or contributory patent infringement, then any patent licenses
|
87 |
+
granted to You under this License for that Work shall terminate
|
88 |
+
as of the date such litigation is filed.
|
89 |
+
|
90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
91 |
+
Work or Derivative Works thereof in any medium, with or without
|
92 |
+
modifications, and in Source or Object form, provided that You
|
93 |
+
meet the following conditions:
|
94 |
+
|
95 |
+
(a) You must give any other recipients of the Work or
|
96 |
+
Derivative Works a copy of this License; and
|
97 |
+
|
98 |
+
(b) You must cause any modified files to carry prominent notices
|
99 |
+
stating that You changed the files; and
|
100 |
+
|
101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
102 |
+
that You distribute, all copyright, patent, trademark, and
|
103 |
+
attribution notices from the Source form of the Work,
|
104 |
+
excluding those notices that do not pertain to any part of
|
105 |
+
the Derivative Works; and
|
106 |
+
|
107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108 |
+
distribution, then any Derivative Works that You distribute must
|
109 |
+
include a readable copy of the attribution notices contained
|
110 |
+
within such NOTICE file, excluding those notices that do not
|
111 |
+
pertain to any part of the Derivative Works, in at least one
|
112 |
+
of the following places: within a NOTICE text file distributed
|
113 |
+
as part of the Derivative Works; within the Source form or
|
114 |
+
documentation, if provided along with the Derivative Works; or,
|
115 |
+
within a display generated by the Derivative Works, if and
|
116 |
+
wherever such third-party notices normally appear. The contents
|
117 |
+
of the NOTICE file are for informational purposes only and
|
118 |
+
do not modify the License. You may add Your own attribution
|
119 |
+
notices within Derivative Works that You distribute, alongside
|
120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
121 |
+
that such additional attribution notices cannot be construed
|
122 |
+
as modifying the License.
|
123 |
+
|
124 |
+
You may add Your own copyright statement to Your modifications and
|
125 |
+
may provide additional or different license terms and conditions
|
126 |
+
for use, reproduction, or distribution of Your modifications, or
|
127 |
+
for any such Derivative Works as a whole, provided Your use,
|
128 |
+
reproduction, and distribution of the Work otherwise complies with
|
129 |
+
the conditions stated in this License.
|
130 |
+
|
131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
133 |
+
by You to the Licensor shall be under the terms and conditions of
|
134 |
+
this License, without any additional terms or conditions.
|
135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136 |
+
the terms of any separate license agreement you may have executed
|
137 |
+
with Licensor regarding such Contributions.
|
138 |
+
|
139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
141 |
+
except as required for reasonable and customary use in describing the
|
142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
143 |
+
|
144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145 |
+
agreed to in writing, Licensor provides the Work (and each
|
146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148 |
+
implied, including, without limitation, any warranties or conditions
|
149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151 |
+
appropriateness of using or redistributing the Work and assume any
|
152 |
+
risks associated with Your exercise of permissions under this License.
|
153 |
+
|
154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
155 |
+
whether in tort (including negligence), contract, or otherwise,
|
156 |
+
unless required by applicable law (such as deliberate and grossly
|
157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158 |
+
liable to You for damages, including any direct, indirect, special,
|
159 |
+
incidental, or consequential damages of any character arising as a
|
160 |
+
result of this License or out of the use or inability to use the
|
161 |
+
Work (including but not limited to damages for loss of goodwill,
|
162 |
+
work stoppage, computer failure or malfunction, or any and all
|
163 |
+
other commercial damages or losses), even if such Contributor
|
164 |
+
has been advised of the possibility of such damages.
|
165 |
+
|
166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169 |
+
or other liability obligations and/or rights consistent with this
|
170 |
+
License. However, in accepting such obligations, You may act only
|
171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172 |
+
of any other Contributor, and only if You agree to indemnify,
|
173 |
+
defend, and hold each Contributor harmless for any liability
|
174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
175 |
+
of your accepting any such warranty or additional liability.
|
176 |
+
|
177 |
+
END OF TERMS AND CONDITIONS
|
178 |
+
|
179 |
+
APPENDIX: How to apply the Apache License to your work.
|
180 |
+
|
181 |
+
To apply the Apache License to your work, attach the following
|
182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183 |
+
replaced with your own identifying information. (Don't include
|
184 |
+
the brackets!) The text should be enclosed in the appropriate
|
185 |
+
comment syntax for the file format. We also recommend that a
|
186 |
+
file or class name and description of purpose be included on the
|
187 |
+
same "printed page" as the copyright notice for easier
|
188 |
+
identification within third-party archives.
|
189 |
+
|
190 |
+
Copyright [yyyy] [name of copyright owner]
|
191 |
+
|
192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193 |
+
you may not use this file except in compliance with the License.
|
194 |
+
You may obtain a copy of the License at
|
195 |
+
|
196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
197 |
+
|
198 |
+
Unless required by applicable law or agreed to in writing, software
|
199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201 |
+
See the License for the specific language governing permissions and
|
202 |
+
limitations under the License.
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/README.md
ADDED
@@ -0,0 +1,383 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# GeoIP2 PHP API #
|
2 |
+
|
3 |
+
## Description ##
|
4 |
+
|
5 |
+
This package provides an API for the GeoIP2
|
6 |
+
[web services](http://dev.maxmind.com/geoip/geoip2/web-services) and
|
7 |
+
[databases](http://dev.maxmind.com/geoip/geoip2/downloadable). The API also
|
8 |
+
works with the free
|
9 |
+
[GeoLite2 databases](http://dev.maxmind.com/geoip/geoip2/geolite2/).
|
10 |
+
|
11 |
+
## Install via Composer ##
|
12 |
+
|
13 |
+
We recommend installing this package with [Composer](http://getcomposer.org/).
|
14 |
+
|
15 |
+
### Download Composer ###
|
16 |
+
|
17 |
+
To download Composer, run in the root directory of your project:
|
18 |
+
|
19 |
+
```bash
|
20 |
+
curl -sS https://getcomposer.org/installer | php
|
21 |
+
```
|
22 |
+
|
23 |
+
You should now have the file `composer.phar` in your project directory.
|
24 |
+
|
25 |
+
### Install Dependencies ###
|
26 |
+
|
27 |
+
Run in your project root:
|
28 |
+
|
29 |
+
```
|
30 |
+
php composer.phar require geoip2/geoip2:~2.0
|
31 |
+
```
|
32 |
+
|
33 |
+
You should now have the files `composer.json` and `composer.lock` as well as
|
34 |
+
the directory `vendor` in your project directory. If you use a version control
|
35 |
+
system, `composer.json` should be added to it.
|
36 |
+
|
37 |
+
### Require Autoloader ###
|
38 |
+
|
39 |
+
After installing the dependencies, you need to require the Composer autoloader
|
40 |
+
from your code:
|
41 |
+
|
42 |
+
```php
|
43 |
+
require 'vendor/autoload.php';
|
44 |
+
```
|
45 |
+
|
46 |
+
## Install via Phar ##
|
47 |
+
|
48 |
+
Although we strongly recommend using Composer, we also provide a
|
49 |
+
[phar archive](http://php.net/manual/en/book.phar.php) containing all of the
|
50 |
+
dependencies for GeoIP2. Our latest phar archive is available on
|
51 |
+
[our releases page](https://github.com/maxmind/GeoIP2-php/releases).
|
52 |
+
|
53 |
+
To use the archive, just require it from your script:
|
54 |
+
|
55 |
+
```php
|
56 |
+
require 'geoip2.phar';
|
57 |
+
```
|
58 |
+
|
59 |
+
## Optional C Extension ##
|
60 |
+
|
61 |
+
The [MaxMind DB API](https://github.com/maxmind/MaxMind-DB-Reader-php)
|
62 |
+
includes an optional C extension that you may install to dramatically increase
|
63 |
+
the performance of lookups in GeoIP2 or GeoLite2 databases. To install, please
|
64 |
+
follow the instructions included with that API.
|
65 |
+
|
66 |
+
The extension has no effect on web-service lookups.
|
67 |
+
|
68 |
+
## IP Geolocation Usage ##
|
69 |
+
|
70 |
+
IP geolocation is inherently imprecise. Locations are often near the center of
|
71 |
+
the population. Any location provided by a GeoIP2 database or web service
|
72 |
+
should not be used to identify a particular address or household.
|
73 |
+
|
74 |
+
## Database Reader ##
|
75 |
+
|
76 |
+
### Usage ###
|
77 |
+
|
78 |
+
To use this API, you must create a new `\GeoIp2\Database\Reader` object with
|
79 |
+
the path to the database file as the first argument to the constructor. You
|
80 |
+
may then call the method corresponding to the database you are using.
|
81 |
+
|
82 |
+
If the lookup succeeds, the method call will return a model class for the
|
83 |
+
record in the database. This model in turn contains multiple container
|
84 |
+
classes for the different parts of the data such as the city in which the
|
85 |
+
IP address is located.
|
86 |
+
|
87 |
+
If the record is not found, a `\GeoIp2\Exception\AddressNotFoundException`
|
88 |
+
is thrown. If the database is invalid or corrupt, a
|
89 |
+
`\MaxMind\Db\InvalidDatabaseException` will be thrown.
|
90 |
+
|
91 |
+
See the API documentation for more details.
|
92 |
+
|
93 |
+
### City Example ###
|
94 |
+
|
95 |
+
```php
|
96 |
+
<?php
|
97 |
+
require_once 'vendor/autoload.php';
|
98 |
+
use GeoIp2\Database\Reader;
|
99 |
+
|
100 |
+
// This creates the Reader object, which should be reused across
|
101 |
+
// lookups.
|
102 |
+
$reader = new Reader('/usr/local/share/GeoIP/GeoIP2-City.mmdb');
|
103 |
+
|
104 |
+
// Replace "city" with the appropriate method for your database, e.g.,
|
105 |
+
// "country".
|
106 |
+
$record = $reader->city('128.101.101.101');
|
107 |
+
|
108 |
+
print($record->country->isoCode . "\n"); // 'US'
|
109 |
+
print($record->country->name . "\n"); // 'United States'
|
110 |
+
print($record->country->names['zh-CN'] . "\n"); // '美国'
|
111 |
+
|
112 |
+
print($record->mostSpecificSubdivision->name . "\n"); // 'Minnesota'
|
113 |
+
print($record->mostSpecificSubdivision->isoCode . "\n"); // 'MN'
|
114 |
+
|
115 |
+
print($record->city->name . "\n"); // 'Minneapolis'
|
116 |
+
|
117 |
+
print($record->postal->code . "\n"); // '55455'
|
118 |
+
|
119 |
+
print($record->location->latitude . "\n"); // 44.9733
|
120 |
+
print($record->location->longitude . "\n"); // -93.2323
|
121 |
+
|
122 |
+
```
|
123 |
+
|
124 |
+
### Anonymous IP Example ###
|
125 |
+
|
126 |
+
```php
|
127 |
+
<?php
|
128 |
+
require_once 'vendor/autoload.php';
|
129 |
+
use GeoIp2\Database\Reader;
|
130 |
+
|
131 |
+
// This creates the Reader object, which should be reused across
|
132 |
+
// lookups.
|
133 |
+
$reader = new Reader('/usr/local/share/GeoIP/GeoIP2-Anonymous-IP.mmdb');
|
134 |
+
|
135 |
+
$record = $reader->anonymousIp('128.101.101.101');
|
136 |
+
|
137 |
+
if ($record->isAnonymous) { print "anon\n"; }
|
138 |
+
print($record->ipAddress . "\n"); // '128.101.101.101'
|
139 |
+
|
140 |
+
```
|
141 |
+
|
142 |
+
### Connection-Type Example ###
|
143 |
+
|
144 |
+
```php
|
145 |
+
<?php
|
146 |
+
require_once 'vendor/autoload.php';
|
147 |
+
use GeoIp2\Database\Reader;
|
148 |
+
|
149 |
+
// This creates the Reader object, which should be reused across
|
150 |
+
// lookups.
|
151 |
+
$reader = new Reader('/usr/local/share/GeoIP/GeoIP2-Connection-Type.mmdb');
|
152 |
+
|
153 |
+
$record = $reader->connectionType('128.101.101.101');
|
154 |
+
|
155 |
+
print($record->connectionType . "\n"); // 'Corporate'
|
156 |
+
print($record->ipAddress . "\n"); // '128.101.101.101'
|
157 |
+
|
158 |
+
```
|
159 |
+
|
160 |
+
### Domain Example ###
|
161 |
+
|
162 |
+
```php
|
163 |
+
<?php
|
164 |
+
require_once 'vendor/autoload.php';
|
165 |
+
use GeoIp2\Database\Reader;
|
166 |
+
|
167 |
+
// This creates the Reader object, which should be reused across
|
168 |
+
// lookups.
|
169 |
+
$reader = new Reader('/usr/local/share/GeoIP/GeoIP2-Domain.mmdb');
|
170 |
+
|
171 |
+
$record = $reader->domain('128.101.101.101');
|
172 |
+
|
173 |
+
print($record->domain . "\n"); // 'umn.edu'
|
174 |
+
print($record->ipAddress . "\n"); // '128.101.101.101'
|
175 |
+
|
176 |
+
```
|
177 |
+
|
178 |
+
### Enterprise Example ###
|
179 |
+
|
180 |
+
```php
|
181 |
+
<?php
|
182 |
+
require_once 'vendor/autoload.php';
|
183 |
+
use GeoIp2\Database\Reader;
|
184 |
+
|
185 |
+
// This creates the Reader object, which should be reused across
|
186 |
+
// lookups.
|
187 |
+
$reader = new Reader('/usr/local/share/GeoIP/GeoIP2-Enterprise.mmdb');
|
188 |
+
|
189 |
+
// Use the ->enterprise method to do a lookup in the Enterprise database
|
190 |
+
$record = $reader->enterprise('128.101.101.101');
|
191 |
+
|
192 |
+
print($record->country->confidence . "\n"); // 99
|
193 |
+
print($record->country->isoCode . "\n"); // 'US'
|
194 |
+
print($record->country->name . "\n"); // 'United States'
|
195 |
+
print($record->country->names['zh-CN'] . "\n"); // '美国'
|
196 |
+
|
197 |
+
print($record->mostSpecificSubdivision->confidence . "\n"); // 77
|
198 |
+
print($record->mostSpecificSubdivision->name . "\n"); // 'Minnesota'
|
199 |
+
print($record->mostSpecificSubdivision->isoCode . "\n"); // 'MN'
|
200 |
+
|
201 |
+
print($record->city->confidence . "\n"); // 60
|
202 |
+
print($record->city->name . "\n"); // 'Minneapolis'
|
203 |
+
|
204 |
+
print($record->postal->code . "\n"); // '55455'
|
205 |
+
|
206 |
+
print($record->location->accuracy_radius . "\n"); // 50
|
207 |
+
print($record->location->latitude . "\n"); // 44.9733
|
208 |
+
print($record->location->longitude . "\n"); // -93.2323
|
209 |
+
|
210 |
+
```
|
211 |
+
|
212 |
+
### ISP Example ###
|
213 |
+
|
214 |
+
```php
|
215 |
+
<?php
|
216 |
+
require_once 'vendor/autoload.php';
|
217 |
+
use GeoIp2\Database\Reader;
|
218 |
+
|
219 |
+
// This creates the Reader object, which should be reused across
|
220 |
+
// lookups.
|
221 |
+
$reader = new Reader('/usr/local/share/GeoIP/GeoIP2-ISP.mmdb');
|
222 |
+
|
223 |
+
$record = $reader->isp('128.101.101.101');
|
224 |
+
|
225 |
+
print($record->autonomousSystemNumber . "\n"); // 217
|
226 |
+
print($record->autonomousSystemOrganization . "\n"); // 'University of Minnesota'
|
227 |
+
print($record->isp . "\n"); // 'University of Minnesota'
|
228 |
+
print($record->organization . "\n"); // 'University of Minnesota'
|
229 |
+
|
230 |
+
print($record->ipAddress . "\n"); // '128.101.101.101'
|
231 |
+
|
232 |
+
```
|
233 |
+
|
234 |
+
## Web Service Client ##
|
235 |
+
|
236 |
+
### Usage ###
|
237 |
+
|
238 |
+
To use this API, you must create a new `\GeoIp2\WebService\Client`
|
239 |
+
object with your `$userId` and `$licenseKey`, then you call the method
|
240 |
+
corresponding to a specific end point, passing it the IP address you want to
|
241 |
+
look up.
|
242 |
+
|
243 |
+
If the request succeeds, the method call will return a model class for the end
|
244 |
+
point you called. This model in turn contains multiple record classes, each of
|
245 |
+
which represents part of the data returned by the web service.
|
246 |
+
|
247 |
+
If there is an error, a structured exception is thrown.
|
248 |
+
|
249 |
+
See the API documentation for more details.
|
250 |
+
|
251 |
+
### Example ###
|
252 |
+
|
253 |
+
```php
|
254 |
+
<?php
|
255 |
+
require_once 'vendor/autoload.php';
|
256 |
+
use GeoIp2\WebService\Client;
|
257 |
+
|
258 |
+
// This creates a Client object that can be reused across requests.
|
259 |
+
// Replace "42" with your user ID and "license_key" with your license
|
260 |
+
// key.
|
261 |
+
$client = new Client(42, 'abcdef123456');
|
262 |
+
|
263 |
+
// Replace "city" with the method corresponding to the web service that
|
264 |
+
// you are using, e.g., "country", "insights".
|
265 |
+
$record = $client->city('128.101.101.101');
|
266 |
+
|
267 |
+
print($record->country->isoCode . "\n"); // 'US'
|
268 |
+
print($record->country->name . "\n"); // 'United States'
|
269 |
+
print($record->country->names['zh-CN'] . "\n"); // '美国'
|
270 |
+
|
271 |
+
print($record->mostSpecificSubdivision->name . "\n"); // 'Minnesota'
|
272 |
+
print($record->mostSpecificSubdivision->isoCode . "\n"); // 'MN'
|
273 |
+
|
274 |
+
print($record->city->name . "\n"); // 'Minneapolis'
|
275 |
+
|
276 |
+
print($record->postal->code . "\n"); // '55455'
|
277 |
+
|
278 |
+
print($record->location->latitude . "\n"); // 44.9733
|
279 |
+
print($record->location->longitude . "\n"); // -93.2323
|
280 |
+
|
281 |
+
```
|
282 |
+
|
283 |
+
## Values to use for Database or Array Keys ##
|
284 |
+
|
285 |
+
**We strongly discourage you from using a value from any `names` property as
|
286 |
+
a key in a database or array.**
|
287 |
+
|
288 |
+
These names may change between releases. Instead we recommend using one of the
|
289 |
+
following:
|
290 |
+
|
291 |
+
* `GeoIp2\Record\City` - `$city->geonameId`
|
292 |
+
* `GeoIp2\Record\Continent` - `$continent->code` or `$continent->geonameId`
|
293 |
+
* `GeoIp2\Record\Country` and `GeoIp2\Record\RepresentedCountry` -
|
294 |
+
`$country->isoCode` or `$country->geonameId`
|
295 |
+
* `GeoIp2\Record\Subdivision` - `$subdivision->isoCode` or `$subdivision->geonameId`
|
296 |
+
|
297 |
+
### What data is returned? ###
|
298 |
+
|
299 |
+
While many of the end points return the same basic records, the attributes
|
300 |
+
which can be populated vary between end points. In addition, while an end
|
301 |
+
point may offer a particular piece of data, MaxMind does not always have every
|
302 |
+
piece of data for any given IP address.
|
303 |
+
|
304 |
+
Because of these factors, it is possible for any end point to return a record
|
305 |
+
where some or all of the attributes are unpopulated.
|
306 |
+
|
307 |
+
See the
|
308 |
+
[GeoIP2 Precision web service docs](http://dev.maxmind.com/geoip/geoip2/web-services)
|
309 |
+
for details on what data each end point may return.
|
310 |
+
|
311 |
+
The only piece of data which is always returned is the `ipAddress`
|
312 |
+
attribute in the `GeoIp2\Record\Traits` record.
|
313 |
+
|
314 |
+
## Integration with GeoNames ##
|
315 |
+
|
316 |
+
[GeoNames](http://www.geonames.org/) offers web services and downloadable
|
317 |
+
databases with data on geographical features around the world, including
|
318 |
+
populated places. They offer both free and paid premium data. Each
|
319 |
+
feature is unique identified by a `geonameId`, which is an integer.
|
320 |
+
|
321 |
+
Many of the records returned by the GeoIP2 web services and databases
|
322 |
+
include a `geonameId` property. This is the ID of a geographical feature
|
323 |
+
(city, region, country, etc.) in the GeoNames database.
|
324 |
+
|
325 |
+
Some of the data that MaxMind provides is also sourced from GeoNames. We
|
326 |
+
source things like place names, ISO codes, and other similar data from
|
327 |
+
the GeoNames premium data set.
|
328 |
+
|
329 |
+
## Reporting data problems ##
|
330 |
+
|
331 |
+
If the problem you find is that an IP address is incorrectly mapped,
|
332 |
+
please
|
333 |
+
[submit your correction to MaxMind](http://www.maxmind.com/en/correction).
|
334 |
+
|
335 |
+
If you find some other sort of mistake, like an incorrect spelling,
|
336 |
+
please check the [GeoNames site](http://www.geonames.org/) first. Once
|
337 |
+
you've searched for a place and found it on the GeoNames map view, there
|
338 |
+
are a number of links you can use to correct data ("move", "edit",
|
339 |
+
"alternate names", etc.). Once the correction is part of the GeoNames
|
340 |
+
data set, it will be automatically incorporated into future MaxMind
|
341 |
+
releases.
|
342 |
+
|
343 |
+
If you are a paying MaxMind customer and you're not sure where to submit
|
344 |
+
a correction, please
|
345 |
+
[contact MaxMind support](http://www.maxmind.com/en/support) for help.
|
346 |
+
|
347 |
+
## Other Support ##
|
348 |
+
|
349 |
+
Please report all issues with this code using the
|
350 |
+
[GitHub issue tracker](https://github.com/maxmind/GeoIP2-php/issues).
|
351 |
+
|
352 |
+
If you are having an issue with a MaxMind service that is not specific
|
353 |
+
to the client API, please see
|
354 |
+
[our support page](http://www.maxmind.com/en/support).
|
355 |
+
|
356 |
+
## Requirements ##
|
357 |
+
|
358 |
+
This code requires PHP 5.3 or greater. Older versions of PHP are not
|
359 |
+
supported. This library works and is tested with HHVM.
|
360 |
+
|
361 |
+
This library also relies on the [MaxMind DB Reader](https://github.com/maxmind/MaxMind-DB-Reader-php).
|
362 |
+
|
363 |
+
If you are using PHP 5.3 with an autoloader besides Composer, you must load
|
364 |
+
`JsonSerializable.php` in the `compat` directory.
|
365 |
+
|
366 |
+
## Contributing ##
|
367 |
+
|
368 |
+
Patches and pull requests are encouraged. All code should follow the PSR-2
|
369 |
+
style guidelines. Please include unit tests whenever possible. You may obtain
|
370 |
+
the test data for the maxmind-db folder by running `git submodule update
|
371 |
+
--init --recursive` or adding `--recursive` to your initial clone, or from
|
372 |
+
https://github.com/maxmind/MaxMind-DB
|
373 |
+
|
374 |
+
## Versioning ##
|
375 |
+
|
376 |
+
The GeoIP2 PHP API uses [Semantic Versioning](http://semver.org/).
|
377 |
+
|
378 |
+
## Copyright and License ##
|
379 |
+
|
380 |
+
This software is Copyright (c) 2013-2016 by MaxMind, Inc.
|
381 |
+
|
382 |
+
This is free software, licensed under the Apache License, Version 2.0.
|
383 |
+
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/composer.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "geoip2/geoip2",
|
3 |
+
"description": "MaxMind GeoIP2 PHP API",
|
4 |
+
"keywords": ["geoip", "geoip2", "geolocation", "ip", "maxmind"],
|
5 |
+
"homepage": "https://github.com/maxmind/GeoIP2-php",
|
6 |
+
"type": "library",
|
7 |
+
"license": "Apache-2.0",
|
8 |
+
"authors": [
|
9 |
+
{
|
10 |
+
"name": "Gregory J. Oschwald",
|
11 |
+
"email": "goschwald@maxmind.com",
|
12 |
+
"homepage": "http://www.maxmind.com/"
|
13 |
+
}
|
14 |
+
],
|
15 |
+
"require": {
|
16 |
+
"maxmind-db/reader": "~1.0",
|
17 |
+
"maxmind/web-service-common": "~0.3",
|
18 |
+
"php": ">=5.3.1"
|
19 |
+
},
|
20 |
+
"require-dev": {
|
21 |
+
"phpunit/phpunit": "4.2.*",
|
22 |
+
"squizlabs/php_codesniffer": "2.*"
|
23 |
+
},
|
24 |
+
"autoload": {
|
25 |
+
"psr-4": {
|
26 |
+
"GeoIp2\\": "src"
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Compat/JsonSerializable.php
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Compat;
|
4 |
+
|
5 |
+
// @codingStandardsIgnoreFile
|
6 |
+
|
7 |
+
/**
|
8 |
+
* This interface exists to provide backwards compatibility with PHP 5.3
|
9 |
+
*
|
10 |
+
* This should _not_ be used by any third-party code.
|
11 |
+
*
|
12 |
+
* @ignore
|
13 |
+
*/
|
14 |
+
if (interface_exists('JsonSerializable')) {
|
15 |
+
interface JsonSerializable extends \JsonSerializable
|
16 |
+
{
|
17 |
+
}
|
18 |
+
} else {
|
19 |
+
interface JsonSerializable
|
20 |
+
{
|
21 |
+
/**
|
22 |
+
* Returns data that can be serialized by json_encode
|
23 |
+
* @ignore
|
24 |
+
*/
|
25 |
+
public function jsonSerialize();
|
26 |
+
}
|
27 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Database/Reader.php
ADDED
@@ -0,0 +1,246 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Database;
|
4 |
+
|
5 |
+
use GeoIp2\Exception\AddressNotFoundException;
|
6 |
+
use GeoIp2\ProviderInterface;
|
7 |
+
use MaxMind\Db\Reader as DbReader;
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Instances of this class provide a reader for the GeoIP2 database format.
|
11 |
+
* IP addresses can be looked up using the database specific methods.
|
12 |
+
*
|
13 |
+
* ## Usage ##
|
14 |
+
*
|
15 |
+
* The basic API for this class is the same for every database. First, you
|
16 |
+
* create a reader object, specifying a file name. You then call the method
|
17 |
+
* corresponding to the specific database, passing it the IP address you want
|
18 |
+
* to look up.
|
19 |
+
*
|
20 |
+
* If the request succeeds, the method call will return a model class for
|
21 |
+
* the method you called. This model in turn contains multiple record classes,
|
22 |
+
* each of which represents part of the data returned by the database. If
|
23 |
+
* the database does not contain the requested information, the attributes
|
24 |
+
* on the record class will have a `null` value.
|
25 |
+
*
|
26 |
+
* If the address is not in the database, an
|
27 |
+
* {@link \GeoIp2\Exception\AddressNotFoundException} exception will be
|
28 |
+
* thrown. If an invalid IP address is passed to one of the methods, a
|
29 |
+
* SPL {@link \InvalidArgumentException} will be thrown. If the database is
|
30 |
+
* corrupt or invalid, a {@link \MaxMind\Db\Reader\InvalidDatabaseException}
|
31 |
+
* will be thrown.
|
32 |
+
*
|
33 |
+
*/
|
34 |
+
class Reader implements ProviderInterface
|
35 |
+
{
|
36 |
+
private $dbReader;
|
37 |
+
private $locales;
|
38 |
+
|
39 |
+
/**
|
40 |
+
* Constructor.
|
41 |
+
*
|
42 |
+
* @param string $filename The path to the GeoIP2 database file.
|
43 |
+
* @param array $locales List of locale codes to use in name property
|
44 |
+
* from most preferred to least preferred.
|
45 |
+
* @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database
|
46 |
+
* is corrupt or invalid
|
47 |
+
*/
|
48 |
+
public function __construct(
|
49 |
+
$filename,
|
50 |
+
$locales = array('en')
|
51 |
+
) {
|
52 |
+
$this->dbReader = new DbReader($filename);
|
53 |
+
$this->locales = $locales;
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* This method returns a GeoIP2 City model.
|
58 |
+
*
|
59 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string.
|
60 |
+
*
|
61 |
+
* @return \GeoIp2\Model\City
|
62 |
+
*
|
63 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address is
|
64 |
+
* not in the database.
|
65 |
+
* @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database
|
66 |
+
* is corrupt or invalid
|
67 |
+
*/
|
68 |
+
public function city($ipAddress)
|
69 |
+
{
|
70 |
+
return $this->modelFor('City', 'City', $ipAddress);
|
71 |
+
}
|
72 |
+
|
73 |
+
/**
|
74 |
+
* This method returns a GeoIP2 Country model.
|
75 |
+
*
|
76 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string.
|
77 |
+
*
|
78 |
+
* @return \GeoIp2\Model\Country
|
79 |
+
*
|
80 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address is
|
81 |
+
* not in the database.
|
82 |
+
* @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database
|
83 |
+
* is corrupt or invalid
|
84 |
+
*/
|
85 |
+
public function country($ipAddress)
|
86 |
+
{
|
87 |
+
return $this->modelFor('Country', 'Country', $ipAddress);
|
88 |
+
}
|
89 |
+
|
90 |
+
/**
|
91 |
+
* This method returns a GeoIP2 Anonymous IP model.
|
92 |
+
*
|
93 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string.
|
94 |
+
*
|
95 |
+
* @return \GeoIp2\Model\AnonymousIp
|
96 |
+
*
|
97 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address is
|
98 |
+
* not in the database.
|
99 |
+
* @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database
|
100 |
+
* is corrupt or invalid
|
101 |
+
*/
|
102 |
+
public function anonymousIp($ipAddress)
|
103 |
+
{
|
104 |
+
return $this->flatModelFor(
|
105 |
+
'AnonymousIp',
|
106 |
+
'GeoIP2-Anonymous-IP',
|
107 |
+
$ipAddress
|
108 |
+
);
|
109 |
+
}
|
110 |
+
|
111 |
+
/**
|
112 |
+
* This method returns a GeoIP2 Connection Type model.
|
113 |
+
*
|
114 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string.
|
115 |
+
*
|
116 |
+
* @return \GeoIp2\Model\ConnectionType
|
117 |
+
*
|
118 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address is
|
119 |
+
* not in the database.
|
120 |
+
* @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database
|
121 |
+
* is corrupt or invalid
|
122 |
+
*/
|
123 |
+
public function connectionType($ipAddress)
|
124 |
+
{
|
125 |
+
return $this->flatModelFor(
|
126 |
+
'ConnectionType',
|
127 |
+
'GeoIP2-Connection-Type',
|
128 |
+
$ipAddress
|
129 |
+
);
|
130 |
+
}
|
131 |
+
|
132 |
+
/**
|
133 |
+
* This method returns a GeoIP2 Domain model.
|
134 |
+
*
|
135 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string.
|
136 |
+
*
|
137 |
+
* @return \GeoIp2\Model\Domain
|
138 |
+
*
|
139 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address is
|
140 |
+
* not in the database.
|
141 |
+
* @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database
|
142 |
+
* is corrupt or invalid
|
143 |
+
*/
|
144 |
+
public function domain($ipAddress)
|
145 |
+
{
|
146 |
+
return $this->flatModelFor(
|
147 |
+
'Domain',
|
148 |
+
'GeoIP2-Domain',
|
149 |
+
$ipAddress
|
150 |
+
);
|
151 |
+
}
|
152 |
+
|
153 |
+
/**
|
154 |
+
* This method returns a GeoIP2 Enterprise model.
|
155 |
+
*
|
156 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string.
|
157 |
+
*
|
158 |
+
* @return \GeoIp2\Model\Enterprise
|
159 |
+
*
|
160 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address is
|
161 |
+
* not in the database.
|
162 |
+
* @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database
|
163 |
+
* is corrupt or invalid
|
164 |
+
*/
|
165 |
+
public function enterprise($ipAddress)
|
166 |
+
{
|
167 |
+
return $this->modelFor('Enterprise', 'Enterprise', $ipAddress);
|
168 |
+
}
|
169 |
+
|
170 |
+
/**
|
171 |
+
* This method returns a GeoIP2 ISP model.
|
172 |
+
*
|
173 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string.
|
174 |
+
*
|
175 |
+
* @return \GeoIp2\Model\Isp
|
176 |
+
*
|
177 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address is
|
178 |
+
* not in the database.
|
179 |
+
* @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database
|
180 |
+
* is corrupt or invalid
|
181 |
+
*/
|
182 |
+
public function isp($ipAddress)
|
183 |
+
{
|
184 |
+
return $this->flatModelFor(
|
185 |
+
'Isp',
|
186 |
+
'GeoIP2-ISP',
|
187 |
+
$ipAddress
|
188 |
+
);
|
189 |
+
}
|
190 |
+
|
191 |
+
private function modelFor($class, $type, $ipAddress)
|
192 |
+
{
|
193 |
+
$record = $this->getRecord($class, $type, $ipAddress);
|
194 |
+
|
195 |
+
$record['traits']['ip_address'] = $ipAddress;
|
196 |
+
$class = "GeoIp2\\Model\\" . $class;
|
197 |
+
|
198 |
+
return new $class($record, $this->locales);
|
199 |
+
}
|
200 |
+
|
201 |
+
private function flatModelFor($class, $type, $ipAddress)
|
202 |
+
{
|
203 |
+
$record = $this->getRecord($class, $type, $ipAddress);
|
204 |
+
|
205 |
+
$record['ip_address'] = $ipAddress;
|
206 |
+
$class = "GeoIp2\\Model\\" . $class;
|
207 |
+
|
208 |
+
return new $class($record);
|
209 |
+
}
|
210 |
+
|
211 |
+
private function getRecord($class, $type, $ipAddress)
|
212 |
+
{
|
213 |
+
if (strpos($this->metadata()->databaseType, $type) === false) {
|
214 |
+
$method = lcfirst($class);
|
215 |
+
throw new \BadMethodCallException(
|
216 |
+
"The $method method cannot be used to open a "
|
217 |
+
. $this->metadata()->databaseType . " database"
|
218 |
+
);
|
219 |
+
}
|
220 |
+
$record = $this->dbReader->get($ipAddress);
|
221 |
+
if ($record === null) {
|
222 |
+
throw new AddressNotFoundException(
|
223 |
+
"The address $ipAddress is not in the database."
|
224 |
+
);
|
225 |
+
}
|
226 |
+
return $record;
|
227 |
+
}
|
228 |
+
|
229 |
+
/**
|
230 |
+
* @throws \InvalidArgumentException if arguments are passed to the method.
|
231 |
+
* @throws \BadMethodCallException if the database has been closed.
|
232 |
+
* @return \MaxMind\Db\Reader\Metadata object for the database.
|
233 |
+
*/
|
234 |
+
public function metadata()
|
235 |
+
{
|
236 |
+
return $this->dbReader->metadata();
|
237 |
+
}
|
238 |
+
|
239 |
+
/**
|
240 |
+
* Closes the GeoIP2 database and returns the resources to the system.
|
241 |
+
*/
|
242 |
+
public function close()
|
243 |
+
{
|
244 |
+
$this->dbReader->close();
|
245 |
+
}
|
246 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/AddressNotFoundException.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents a generic error.
|
7 |
+
*/
|
8 |
+
class AddressNotFoundException extends GeoIp2Exception
|
9 |
+
{
|
10 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/AuthenticationException.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents a generic error.
|
7 |
+
*/
|
8 |
+
class AuthenticationException extends GeoIp2Exception
|
9 |
+
{
|
10 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/GeoIp2Exception.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents a generic error.
|
7 |
+
*/
|
8 |
+
class GeoIp2Exception extends \Exception
|
9 |
+
{
|
10 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/HttpException.php
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents an HTTP transport error.
|
7 |
+
*/
|
8 |
+
|
9 |
+
class HttpException extends GeoIp2Exception
|
10 |
+
{
|
11 |
+
/**
|
12 |
+
* The URI queried
|
13 |
+
*/
|
14 |
+
public $uri;
|
15 |
+
|
16 |
+
public function __construct(
|
17 |
+
$message,
|
18 |
+
$httpStatus,
|
19 |
+
$uri,
|
20 |
+
\Exception $previous = null
|
21 |
+
) {
|
22 |
+
$this->uri = $uri;
|
23 |
+
parent::__construct($message, $httpStatus, $previous);
|
24 |
+
}
|
25 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/InvalidRequestException.php
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents an error returned by MaxMind's GeoIP2
|
7 |
+
* web service.
|
8 |
+
*/
|
9 |
+
class InvalidRequestException extends HttpException
|
10 |
+
{
|
11 |
+
/**
|
12 |
+
* The code returned by the MaxMind web service
|
13 |
+
*/
|
14 |
+
public $error;
|
15 |
+
|
16 |
+
public function __construct(
|
17 |
+
$message,
|
18 |
+
$error,
|
19 |
+
$httpStatus,
|
20 |
+
$uri,
|
21 |
+
\Exception $previous = null
|
22 |
+
) {
|
23 |
+
$this->error = $error;
|
24 |
+
parent::__construct($message, $httpStatus, $uri, $previous);
|
25 |
+
}
|
26 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Exception/OutOfQueriesException.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents a generic error.
|
7 |
+
*/
|
8 |
+
class OutOfQueriesException extends GeoIp2Exception
|
9 |
+
{
|
10 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/AbstractModel.php
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Model;
|
4 |
+
|
5 |
+
use GeoIp2\Compat\JsonSerializable;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* @ignore
|
9 |
+
*/
|
10 |
+
abstract class AbstractModel implements JsonSerializable
|
11 |
+
{
|
12 |
+
protected $raw;
|
13 |
+
|
14 |
+
/**
|
15 |
+
* @ignore
|
16 |
+
*/
|
17 |
+
public function __construct($raw)
|
18 |
+
{
|
19 |
+
$this->raw = $raw;
|
20 |
+
}
|
21 |
+
|
22 |
+
/**
|
23 |
+
* @ignore
|
24 |
+
*/
|
25 |
+
protected function get($field)
|
26 |
+
{
|
27 |
+
if (isset($this->raw[$field])) {
|
28 |
+
return $this->raw[$field];
|
29 |
+
} else {
|
30 |
+
if (preg_match('/^is_/', $field)) {
|
31 |
+
return false;
|
32 |
+
} else {
|
33 |
+
return null;
|
34 |
+
}
|
35 |
+
}
|
36 |
+
}
|
37 |
+
|
38 |
+
/**
|
39 |
+
* @ignore
|
40 |
+
*/
|
41 |
+
public function __get($attr)
|
42 |
+
{
|
43 |
+
if ($attr != "instance" && property_exists($this, $attr)) {
|
44 |
+
return $this->$attr;
|
45 |
+
}
|
46 |
+
|
47 |
+
throw new \RuntimeException("Unknown attribute: $attr");
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* @ignore
|
52 |
+
*/
|
53 |
+
public function __isset($attr)
|
54 |
+
{
|
55 |
+
return $attr != "instance" && isset($this->$attr);
|
56 |
+
}
|
57 |
+
|
58 |
+
public function jsonSerialize()
|
59 |
+
{
|
60 |
+
return $this->raw;
|
61 |
+
}
|
62 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/AnonymousIp.php
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Model;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class provides the GeoIP2 Anonymous IP model.
|
7 |
+
*
|
8 |
+
* @property-read boolean $isAnonymous This is true if the IP address belongs to
|
9 |
+
* any sort of anonymous network.
|
10 |
+
*
|
11 |
+
* @property-read boolean $isAnonymousVpn This is true if the IP address belongs to
|
12 |
+
* an anonymous VPN system.
|
13 |
+
*
|
14 |
+
* @property-read boolean $isHostingProvider This is true if the IP address belongs
|
15 |
+
* to a hosting provider.
|
16 |
+
*
|
17 |
+
* @property-read boolean $isPublicProxy This is true if the IP address belongs to
|
18 |
+
* a public proxy.
|
19 |
+
*
|
20 |
+
* @property-read boolean $isTorExitNode This is true if the IP address is a Tor
|
21 |
+
* exit node.
|
22 |
+
*
|
23 |
+
* @property-read string $ipAddress The IP address that the data in the model is
|
24 |
+
* for.
|
25 |
+
*
|
26 |
+
*/
|
27 |
+
class AnonymousIp extends AbstractModel
|
28 |
+
{
|
29 |
+
protected $isAnonymous;
|
30 |
+
protected $isAnonymousVpn;
|
31 |
+
protected $isHostingProvider;
|
32 |
+
protected $isPublicProxy;
|
33 |
+
protected $isTorExitNode;
|
34 |
+
protected $ipAddress;
|
35 |
+
|
36 |
+
/**
|
37 |
+
* @ignore
|
38 |
+
*/
|
39 |
+
public function __construct($raw)
|
40 |
+
{
|
41 |
+
parent::__construct($raw);
|
42 |
+
|
43 |
+
$this->isAnonymous = $this->get('is_anonymous');
|
44 |
+
$this->isAnonymousVpn = $this->get('is_anonymous_vpn');
|
45 |
+
$this->isHostingProvider = $this->get('is_hosting_provider');
|
46 |
+
$this->isPublicProxy = $this->get('is_public_proxy');
|
47 |
+
$this->isTorExitNode = $this->get('is_tor_exit_node');
|
48 |
+
$this->ipAddress = $this->get('ip_address');
|
49 |
+
}
|
50 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/City.php
ADDED
@@ -0,0 +1,136 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Model;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Model class for the data returned by GeoIP2 City web service and database.
|
7 |
+
*
|
8 |
+
* The only difference between the City and Insights model classes is which
|
9 |
+
* fields in each record may be populated. See
|
10 |
+
* http://dev.maxmind.com/geoip/geoip2/web-services more details.
|
11 |
+
*
|
12 |
+
* @property-read \GeoIp2\Record\City $city City data for the requested IP
|
13 |
+
* address.
|
14 |
+
*
|
15 |
+
* @property-read \GeoIp2\Record\Continent $continent Continent data for the
|
16 |
+
* requested IP address.
|
17 |
+
*
|
18 |
+
* @property-read \GeoIp2\Record\Country $country Country data for the requested
|
19 |
+
* IP address. This object represents the country where MaxMind believes the
|
20 |
+
* end user is located.
|
21 |
+
*
|
22 |
+
* @property-read \GeoIp2\Record\Location $location Location data for the
|
23 |
+
* requested IP address.
|
24 |
+
*
|
25 |
+
* @property-read \GeoIp2\Record\Postal $postal Postal data for the
|
26 |
+
* requested IP address.
|
27 |
+
*
|
28 |
+
* @property-read \GeoIp2\Record\MaxMind $maxmind Data related to your MaxMind
|
29 |
+
* account.
|
30 |
+
*
|
31 |
+
* @property-read \GeoIp2\Record\Country $registeredCountry Registered country
|
32 |
+
* data for the requested IP address. This record represents the country
|
33 |
+
* where the ISP has registered a given IP block and may differ from the
|
34 |
+
* user's country.
|
35 |
+
*
|
36 |
+
* @property-read \GeoIp2\Record\RepresentedCountry $representedCountry
|
37 |
+
* Represented country data for the requested IP address. The represented
|
38 |
+
* country is used for things like military bases. It is only present when
|
39 |
+
* the represented country differs from the country.
|
40 |
+
*
|
41 |
+
* @property-read array $subdivisions An array of {@link \GeoIp2\Record\Subdivision}
|
42 |
+
* objects representing the country subdivisions for the requested IP
|
43 |
+
* address. The number and type of subdivisions varies by country, but a
|
44 |
+
* subdivision is typically a state, province, county, etc. Subdivisions
|
45 |
+
* are ordered from most general (largest) to most specific (smallest).
|
46 |
+
* If the response did not contain any subdivisions, this method returns
|
47 |
+
* an empty array.
|
48 |
+
*
|
49 |
+
* @property-read \GeoIp2\Record\Subdivision $mostSpecificSubdivision An object
|
50 |
+
* representing the most specific subdivision returned. If the response
|
51 |
+
* did not contain any subdivisions, this method returns an empty
|
52 |
+
* {@link \GeoIp2\Record\Subdivision} object.
|
53 |
+
*
|
54 |
+
* @property-read \GeoIp2\Record\Traits $traits Data for the traits of the
|
55 |
+
* requested IP address.
|
56 |
+
*/
|
57 |
+
class City extends Country
|
58 |
+
{
|
59 |
+
/**
|
60 |
+
* @ignore
|
61 |
+
*/
|
62 |
+
protected $city;
|
63 |
+
/**
|
64 |
+
* @ignore
|
65 |
+
*/
|
66 |
+
protected $location;
|
67 |
+
/**
|
68 |
+
* @ignore
|
69 |
+
*/
|
70 |
+
protected $postal;
|
71 |
+
/**
|
72 |
+
* @ignore
|
73 |
+
*/
|
74 |
+
protected $subdivisions = array();
|
75 |
+
|
76 |
+
/**
|
77 |
+
* @ignore
|
78 |
+
*/
|
79 |
+
public function __construct($raw, $locales = array('en'))
|
80 |
+
{
|
81 |
+
parent::__construct($raw, $locales);
|
82 |
+
|
83 |
+
$this->city = new \GeoIp2\Record\City($this->get('city'), $locales);
|
84 |
+
$this->location = new \GeoIp2\Record\Location($this->get('location'));
|
85 |
+
$this->postal = new \GeoIp2\Record\Postal($this->get('postal'));
|
86 |
+
|
87 |
+
$this->createSubdivisions($raw, $locales);
|
88 |
+
}
|
89 |
+
|
90 |
+
private function createSubdivisions($raw, $locales)
|
91 |
+
{
|
92 |
+
if (!isset($raw['subdivisions'])) {
|
93 |
+
return;
|
94 |
+
}
|
95 |
+
|
96 |
+
foreach ($raw['subdivisions'] as $sub) {
|
97 |
+
array_push(
|
98 |
+
$this->subdivisions,
|
99 |
+
new \GeoIp2\Record\Subdivision($sub, $locales)
|
100 |
+
);
|
101 |
+
}
|
102 |
+
}
|
103 |
+
|
104 |
+
/**
|
105 |
+
* @ignore
|
106 |
+
*/
|
107 |
+
public function __get($attr)
|
108 |
+
{
|
109 |
+
if ($attr == 'mostSpecificSubdivision') {
|
110 |
+
return $this->$attr();
|
111 |
+
} else {
|
112 |
+
return parent::__get($attr);
|
113 |
+
}
|
114 |
+
}
|
115 |
+
|
116 |
+
/**
|
117 |
+
* @ignore
|
118 |
+
*/
|
119 |
+
public function __isset($attr)
|
120 |
+
{
|
121 |
+
if ($attr == 'mostSpecificSubdivision') {
|
122 |
+
// We always return a mostSpecificSubdivision, even if it is the
|
123 |
+
// empty subdivision
|
124 |
+
return true;
|
125 |
+
} else {
|
126 |
+
return parent::__isset($attr);
|
127 |
+
}
|
128 |
+
}
|
129 |
+
|
130 |
+
private function mostSpecificSubdivision()
|
131 |
+
{
|
132 |
+
return empty($this->subdivisions) ?
|
133 |
+
new \GeoIp2\Record\Subdivision(array(), $this->locales) :
|
134 |
+
end($this->subdivisions);
|
135 |
+
}
|
136 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/ConnectionType.php
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Model;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class provides the GeoIP2 Connection-Type model.
|
7 |
+
*
|
8 |
+
* @property-read string|null $connectionType The connection type may take the
|
9 |
+
* following values: "Dialup", "Cable/DSL", "Corporate", "Cellular".
|
10 |
+
* Additional values may be added in the future.
|
11 |
+
*
|
12 |
+
* @property-read string $ipAddress The IP address that the data in the model is
|
13 |
+
* for.
|
14 |
+
*
|
15 |
+
*/
|
16 |
+
class ConnectionType extends AbstractModel
|
17 |
+
{
|
18 |
+
protected $connectionType;
|
19 |
+
protected $ipAddress;
|
20 |
+
|
21 |
+
/**
|
22 |
+
* @ignore
|
23 |
+
*/
|
24 |
+
public function __construct($raw)
|
25 |
+
{
|
26 |
+
parent::__construct($raw);
|
27 |
+
|
28 |
+
$this->connectionType = $this->get('connection_type');
|
29 |
+
$this->ipAddress = $this->get('ip_address');
|
30 |
+
}
|
31 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Country.php
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Model;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Model class for the data returned by GeoIP2 Country web service and database.
|
7 |
+
*
|
8 |
+
* The only difference between the City and Insights model classes is which
|
9 |
+
* fields in each record may be populated. See
|
10 |
+
* http://dev.maxmind.com/geoip/geoip2/web-services more details.
|
11 |
+
*
|
12 |
+
* @property-read \GeoIp2\Record\Continent $continent Continent data for the
|
13 |
+
* requested IP address.
|
14 |
+
*
|
15 |
+
* @property-read \GeoIp2\Record\Country $country Country data for the requested
|
16 |
+
* IP address. This object represents the country where MaxMind believes the
|
17 |
+
* end user is located.
|
18 |
+
*
|
19 |
+
* @property-read \GeoIp2\Record\MaxMind $maxmind Data related to your MaxMind
|
20 |
+
* account.
|
21 |
+
*
|
22 |
+
* @property-read \GeoIp2\Record\Country $registeredCountry Registered country
|
23 |
+
* data for the requested IP address. This record represents the country
|
24 |
+
* where the ISP has registered a given IP block and may differ from the
|
25 |
+
* user's country.
|
26 |
+
*
|
27 |
+
* @property-read \GeoIp2\Record\RepresentedCountry $representedCountry
|
28 |
+
* Represented country data for the requested IP address. The represented
|
29 |
+
* country is used for things like military bases. It is only present when
|
30 |
+
* the represented country differs from the country.
|
31 |
+
*
|
32 |
+
* @property-read \GeoIp2\Record\Traits $traits Data for the traits of the
|
33 |
+
* requested IP address.
|
34 |
+
*/
|
35 |
+
class Country extends AbstractModel
|
36 |
+
{
|
37 |
+
protected $continent;
|
38 |
+
protected $country;
|
39 |
+
protected $locales;
|
40 |
+
protected $maxmind;
|
41 |
+
protected $registeredCountry;
|
42 |
+
protected $representedCountry;
|
43 |
+
protected $traits;
|
44 |
+
|
45 |
+
/**
|
46 |
+
* @ignore
|
47 |
+
*/
|
48 |
+
public function __construct($raw, $locales = array('en'))
|
49 |
+
{
|
50 |
+
parent::__construct($raw);
|
51 |
+
|
52 |
+
$this->continent = new \GeoIp2\Record\Continent(
|
53 |
+
$this->get('continent'),
|
54 |
+
$locales
|
55 |
+
);
|
56 |
+
$this->country = new \GeoIp2\Record\Country(
|
57 |
+
$this->get('country'),
|
58 |
+
$locales
|
59 |
+
);
|
60 |
+
$this->maxmind = new \GeoIp2\Record\MaxMind($this->get('maxmind'));
|
61 |
+
$this->registeredCountry = new \GeoIp2\Record\Country(
|
62 |
+
$this->get('registered_country'),
|
63 |
+
$locales
|
64 |
+
);
|
65 |
+
$this->representedCountry = new \GeoIp2\Record\RepresentedCountry(
|
66 |
+
$this->get('represented_country'),
|
67 |
+
$locales
|
68 |
+
);
|
69 |
+
$this->traits = new \GeoIp2\Record\Traits($this->get('traits'));
|
70 |
+
|
71 |
+
$this->locales = $locales;
|
72 |
+
}
|
73 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Domain.php
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Model;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class provides the GeoIP2 Domain model.
|
7 |
+
*
|
8 |
+
* @property-read string|null $domain The second level domain associated with the
|
9 |
+
* IP address. This will be something like "example.com" or
|
10 |
+
* "example.co.uk", not "foo.example.com".
|
11 |
+
*
|
12 |
+
* @property-read string $ipAddress The IP address that the data in the model is
|
13 |
+
* for.
|
14 |
+
*
|
15 |
+
*/
|
16 |
+
class Domain extends AbstractModel
|
17 |
+
{
|
18 |
+
protected $domain;
|
19 |
+
protected $ipAddress;
|
20 |
+
|
21 |
+
/**
|
22 |
+
* @ignore
|
23 |
+
*/
|
24 |
+
public function __construct($raw)
|
25 |
+
{
|
26 |
+
parent::__construct($raw);
|
27 |
+
|
28 |
+
$this->domain = $this->get('domain');
|
29 |
+
$this->ipAddress = $this->get('ip_address');
|
30 |
+
}
|
31 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Enterprise.php
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Model;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Model class for the data returned by GeoIP2 Enterprise database lookups.
|
7 |
+
*
|
8 |
+
* The only difference between the City and Enterprise model classes is which
|
9 |
+
* fields in each record may be populated. See
|
10 |
+
* http://dev.maxmind.com/geoip/geoip2/web-services more details.
|
11 |
+
*
|
12 |
+
* @property-read \GeoIp2\Record\City $city City data for the requested IP
|
13 |
+
* address.
|
14 |
+
*
|
15 |
+
* @property-read \GeoIp2\Record\Continent $continent Continent data for the
|
16 |
+
* requested IP address.
|
17 |
+
*
|
18 |
+
* @property-read \GeoIp2\Record\Country $country Country data for the requested
|
19 |
+
* IP address. This object represents the country where MaxMind believes the
|
20 |
+
* end user is located.
|
21 |
+
*
|
22 |
+
* @property-read \GeoIp2\Record\Location $location Location data for the
|
23 |
+
* requested IP address.
|
24 |
+
*
|
25 |
+
* @property-read \GeoIp2\Record\MaxMind $maxmind Data related to your MaxMind
|
26 |
+
* account.
|
27 |
+
*
|
28 |
+
* @property-read \GeoIp2\Record\Country $registeredCountry Registered country
|
29 |
+
* data for the requested IP address. This record represents the country
|
30 |
+
* where the ISP has registered a given IP block and may differ from the
|
31 |
+
* user's country.
|
32 |
+
*
|
33 |
+
* @property-read \GeoIp2\Record\RepresentedCountry $representedCountry
|
34 |
+
* Represented country data for the requested IP address. The represented
|
35 |
+
* country is used for things like military bases. It is only present when
|
36 |
+
* the represented country differs from the country.
|
37 |
+
*
|
38 |
+
* @property-read array $subdivisions An array of {@link \GeoIp2\Record\Subdivision}
|
39 |
+
* objects representing the country subdivisions for the requested IP
|
40 |
+
* address. The number and type of subdivisions varies by country, but a
|
41 |
+
* subdivision is typically a state, province, county, etc. Subdivisions
|
42 |
+
* are ordered from most general (largest) to most specific (smallest).
|
43 |
+
* If the response did not contain any subdivisions, this method returns
|
44 |
+
* an empty array.
|
45 |
+
*
|
46 |
+
* @property-read \GeoIp2\Record\Subdivision $mostSpecificSubdivision An object
|
47 |
+
* representing the most specific subdivision returned. If the response
|
48 |
+
* did not contain any subdivisions, this method returns an empty
|
49 |
+
* {@link \GeoIp2\Record\Subdivision} object.
|
50 |
+
*
|
51 |
+
* @property-read \GeoIp2\Record\Traits $traits Data for the traits of the
|
52 |
+
* requested IP address.
|
53 |
+
*/
|
54 |
+
class Enterprise extends City
|
55 |
+
{
|
56 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Insights.php
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Model;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Model class for the data returned by GeoIP2 Precision: Insights web service.
|
7 |
+
*
|
8 |
+
* The only difference between the City and Insights model classes is which
|
9 |
+
* fields in each record may be populated. See
|
10 |
+
* http://dev.maxmind.com/geoip/geoip2/web-services more details.
|
11 |
+
*
|
12 |
+
* @property-read \GeoIp2\Record\City $city City data for the requested IP
|
13 |
+
* address.
|
14 |
+
*
|
15 |
+
* @property-read \GeoIp2\Record\Continent $continent Continent data for the
|
16 |
+
* requested IP address.
|
17 |
+
*
|
18 |
+
* @property-read \GeoIp2\Record\Country $country Country data for the requested
|
19 |
+
* IP address. This object represents the country where MaxMind believes the
|
20 |
+
* end user is located.
|
21 |
+
*
|
22 |
+
* @property-read \GeoIp2\Record\Location $location Location data for the
|
23 |
+
* requested IP address.
|
24 |
+
*
|
25 |
+
* @property-read \GeoIp2\Record\MaxMind $maxmind Data related to your MaxMind
|
26 |
+
* account.
|
27 |
+
*
|
28 |
+
* @property-read \GeoIp2\Record\Country $registeredCountry Registered country
|
29 |
+
* data for the requested IP address. This record represents the country
|
30 |
+
* where the ISP has registered a given IP block and may differ from the
|
31 |
+
* user's country.
|
32 |
+
*
|
33 |
+
* @property-read \GeoIp2\Record\RepresentedCountry $representedCountry
|
34 |
+
* Represented country data for the requested IP address. The represented
|
35 |
+
* country is used for things like military bases. It is only present when
|
36 |
+
* the represented country differs from the country.
|
37 |
+
*
|
38 |
+
* @property-read array $subdivisions An array of {@link \GeoIp2\Record\Subdivision}
|
39 |
+
* objects representing the country subdivisions for the requested IP
|
40 |
+
* address. The number and type of subdivisions varies by country, but a
|
41 |
+
* subdivision is typically a state, province, county, etc. Subdivisions
|
42 |
+
* are ordered from most general (largest) to most specific (smallest).
|
43 |
+
* If the response did not contain any subdivisions, this method returns
|
44 |
+
* an empty array.
|
45 |
+
*
|
46 |
+
* @property-read \GeoIp2\Record\Subdivision $mostSpecificSubdivision An object
|
47 |
+
* representing the most specific subdivision returned. If the response
|
48 |
+
* did not contain any subdivisions, this method returns an empty
|
49 |
+
* {@link \GeoIp2\Record\Subdivision} object.
|
50 |
+
*
|
51 |
+
* @property-read \GeoIp2\Record\Traits $traits Data for the traits of the
|
52 |
+
* requested IP address.
|
53 |
+
*/
|
54 |
+
class Insights extends City
|
55 |
+
{
|
56 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Model/Isp.php
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Model;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class provides the GeoIP2 Connection-Type model.
|
7 |
+
*
|
8 |
+
* @property-read integer|null $autonomousSystemNumber The autonomous system number
|
9 |
+
* associated with the IP address.
|
10 |
+
*
|
11 |
+
* @property-read string|null $autonomousSystemOrganization The organization
|
12 |
+
* associated with the registered autonomous system number for the IP
|
13 |
+
* address.
|
14 |
+
*
|
15 |
+
* @property-read string|null $isp The name of the ISP associated with the IP
|
16 |
+
* address.
|
17 |
+
*
|
18 |
+
* @property-read string|null $organization The name of the organization associated
|
19 |
+
* with the IP address.
|
20 |
+
*
|
21 |
+
* @property-read string $ipAddress The IP address that the data in the model is
|
22 |
+
* for.
|
23 |
+
*
|
24 |
+
*/
|
25 |
+
class Isp extends AbstractModel
|
26 |
+
{
|
27 |
+
protected $autonomousSystemNumber;
|
28 |
+
protected $autonomousSystemOrganization;
|
29 |
+
protected $isp;
|
30 |
+
protected $organization;
|
31 |
+
protected $ipAddress;
|
32 |
+
|
33 |
+
/**
|
34 |
+
* @ignore
|
35 |
+
*/
|
36 |
+
public function __construct($raw)
|
37 |
+
{
|
38 |
+
parent::__construct($raw);
|
39 |
+
$this->autonomousSystemNumber = $this->get('autonomous_system_number');
|
40 |
+
$this->autonomousSystemOrganization =
|
41 |
+
$this->get('autonomous_system_organization');
|
42 |
+
$this->isp = $this->get('isp');
|
43 |
+
$this->organization = $this->get('organization');
|
44 |
+
|
45 |
+
$this->ipAddress = $this->get('ip_address');
|
46 |
+
}
|
47 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/ProviderInterface.php
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2;
|
4 |
+
|
5 |
+
interface ProviderInterface
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* @param ipAddress
|
9 |
+
* IPv4 or IPv6 address to lookup.
|
10 |
+
* @return \GeoIp2\Model\Country A Country model for the requested IP address.
|
11 |
+
*/
|
12 |
+
public function country($ipAddress);
|
13 |
+
|
14 |
+
/**
|
15 |
+
* @param ipAddress
|
16 |
+
* IPv4 or IPv6 address to lookup.
|
17 |
+
* @return \GeoIp2\Model\City A City model for the requested IP address.
|
18 |
+
*/
|
19 |
+
public function city($ipAddress);
|
20 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/AbstractPlaceRecord.php
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
abstract class AbstractPlaceRecord extends AbstractRecord
|
6 |
+
{
|
7 |
+
private $locales;
|
8 |
+
|
9 |
+
/**
|
10 |
+
* @ignore
|
11 |
+
*/
|
12 |
+
public function __construct($record, $locales = array('en'))
|
13 |
+
{
|
14 |
+
$this->locales = $locales;
|
15 |
+
parent::__construct($record);
|
16 |
+
}
|
17 |
+
|
18 |
+
/**
|
19 |
+
* @ignore
|
20 |
+
*/
|
21 |
+
public function __get($attr)
|
22 |
+
{
|
23 |
+
if ($attr == 'name') {
|
24 |
+
return $this->name();
|
25 |
+
} else {
|
26 |
+
return parent::__get($attr);
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
+
/**
|
31 |
+
* @ignore
|
32 |
+
*/
|
33 |
+
public function __isset($attr)
|
34 |
+
{
|
35 |
+
if ($attr == 'name') {
|
36 |
+
return $this->firstSetNameLocale() == null ? false : true;
|
37 |
+
} else {
|
38 |
+
return parent::__isset($attr);
|
39 |
+
}
|
40 |
+
}
|
41 |
+
|
42 |
+
private function name()
|
43 |
+
{
|
44 |
+
$locale = $this->firstSetNameLocale();
|
45 |
+
return $locale === null ? null : $this->names[$locale];
|
46 |
+
}
|
47 |
+
|
48 |
+
private function firstSetNameLocale()
|
49 |
+
{
|
50 |
+
foreach ($this->locales as $locale) {
|
51 |
+
if (isset($this->names[$locale])) {
|
52 |
+
return $locale;
|
53 |
+
}
|
54 |
+
}
|
55 |
+
return null;
|
56 |
+
}
|
57 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/AbstractRecord.php
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
use GeoIp2\Compat\JsonSerializable;
|
6 |
+
|
7 |
+
abstract class AbstractRecord implements JsonSerializable
|
8 |
+
{
|
9 |
+
private $record;
|
10 |
+
|
11 |
+
/**
|
12 |
+
* @ignore
|
13 |
+
*/
|
14 |
+
public function __construct($record)
|
15 |
+
{
|
16 |
+
$this->record = isset($record) ? $record : array();
|
17 |
+
}
|
18 |
+
|
19 |
+
/**
|
20 |
+
* @ignore
|
21 |
+
*/
|
22 |
+
public function __get($attr)
|
23 |
+
{
|
24 |
+
// XXX - kind of ugly but greatly reduces boilerplate code
|
25 |
+
$key = $this->attributeToKey($attr);
|
26 |
+
|
27 |
+
if ($this->__isset($attr)) {
|
28 |
+
return $this->record[$key];
|
29 |
+
} elseif ($this->validAttribute($attr)) {
|
30 |
+
if (preg_match('/^is_/', $key)) {
|
31 |
+
return false;
|
32 |
+
} else {
|
33 |
+
return null;
|
34 |
+
}
|
35 |
+
} else {
|
36 |
+
throw new \RuntimeException("Unknown attribute: $attr");
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
public function __isset($attr)
|
41 |
+
{
|
42 |
+
return $this->validAttribute($attr) &&
|
43 |
+
isset($this->record[$this->attributeToKey($attr)]);
|
44 |
+
}
|
45 |
+
|
46 |
+
private function attributeToKey($attr)
|
47 |
+
{
|
48 |
+
return strtolower(preg_replace('/([A-Z])/', '_\1', $attr));
|
49 |
+
}
|
50 |
+
|
51 |
+
private function validAttribute($attr)
|
52 |
+
{
|
53 |
+
return in_array($attr, $this->validAttributes);
|
54 |
+
}
|
55 |
+
|
56 |
+
public function jsonSerialize()
|
57 |
+
{
|
58 |
+
return $this->record;
|
59 |
+
}
|
60 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/City.php
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* City-level data associated with an IP address.
|
7 |
+
*
|
8 |
+
* This record is returned by all location services and databases besides
|
9 |
+
* Country.
|
10 |
+
*
|
11 |
+
* @property-read int|null $confidence A value from 0-100 indicating MaxMind's
|
12 |
+
* confidence that the city is correct. This attribute is only available
|
13 |
+
* from the Insights service and the GeoIP2 Enterprise database.
|
14 |
+
*
|
15 |
+
* @property-read int|null $geonameId The GeoName ID for the city. This attribute
|
16 |
+
* is returned by all location services and databases.
|
17 |
+
*
|
18 |
+
* @property-read string|null $name The name of the city based on the locales list
|
19 |
+
* passed to the constructor. This attribute is returned by all location
|
20 |
+
* services and databases.
|
21 |
+
*
|
22 |
+
* @property-read array|null $names A array map where the keys are locale codes
|
23 |
+
* and the values are names. This attribute is returned by all location
|
24 |
+
* services and databases.
|
25 |
+
*/
|
26 |
+
class City extends AbstractPlaceRecord
|
27 |
+
{
|
28 |
+
/**
|
29 |
+
* @ignore
|
30 |
+
*/
|
31 |
+
protected $validAttributes = array('confidence', 'geonameId', 'names');
|
32 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Continent.php
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Contains data for the continent record associated with an IP address
|
7 |
+
*
|
8 |
+
* This record is returned by all location services and databases.
|
9 |
+
*
|
10 |
+
* @property-read string|null $code A two character continent code like "NA" (North
|
11 |
+
* America) or "OC" (Oceania). This attribute is returned by all location
|
12 |
+
* services and databases.
|
13 |
+
*
|
14 |
+
* @property-read int|null $geonameId The GeoName ID for the continent. This
|
15 |
+
* attribute is returned by all location services and databases.
|
16 |
+
*
|
17 |
+
* @property-read string|null $name Returns the name of the continent based on the
|
18 |
+
* locales list passed to the constructor. This attribute is returned by all location
|
19 |
+
* services and databases.
|
20 |
+
*
|
21 |
+
* @property-read array|null $names An array map where the keys are locale codes
|
22 |
+
* and the values are names. This attribute is returned by all location
|
23 |
+
* services and databases.
|
24 |
+
*/
|
25 |
+
class Continent extends AbstractPlaceRecord
|
26 |
+
{
|
27 |
+
/**
|
28 |
+
* @ignore
|
29 |
+
*/
|
30 |
+
protected $validAttributes = array(
|
31 |
+
'code',
|
32 |
+
'geonameId',
|
33 |
+
'names'
|
34 |
+
);
|
35 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Country.php
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Contains data for the country record associated with an IP address
|
7 |
+
*
|
8 |
+
* This record is returned by all location services and databases.
|
9 |
+
*
|
10 |
+
* @property-read int|null $confidence A value from 0-100 indicating MaxMind's
|
11 |
+
* confidence that the country is correct. This attribute is only available
|
12 |
+
* from the Insights service and the GeoIP2 Enterprise database.
|
13 |
+
*
|
14 |
+
* @property-read int|null $geonameId The GeoName ID for the country. This
|
15 |
+
* attribute is returned by location services and databases.
|
16 |
+
*
|
17 |
+
* @property-read string|null $isoCode The {@link
|
18 |
+
* http://en.wikipedia.org/wiki/ISO_3166-1 two-character ISO 3166-1 alpha
|
19 |
+
* code} for the country. This attribute is returned by all location services
|
20 |
+
* and databases.
|
21 |
+
*
|
22 |
+
* @property-read string|null $name The name of the country based on the locales
|
23 |
+
* list passed to the constructor. This attribute is returned by all location
|
24 |
+
* services and databases.
|
25 |
+
*
|
26 |
+
* @property-read array|null $names An array map where the keys are locale codes
|
27 |
+
* and the values are names. This attribute is returned by all location
|
28 |
+
* services and databases.
|
29 |
+
*/
|
30 |
+
class Country extends AbstractPlaceRecord
|
31 |
+
{
|
32 |
+
/**
|
33 |
+
* @ignore
|
34 |
+
*/
|
35 |
+
protected $validAttributes = array(
|
36 |
+
'confidence',
|
37 |
+
'geonameId',
|
38 |
+
'isoCode',
|
39 |
+
'names'
|
40 |
+
);
|
41 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Location.php
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Contains data for the location record associated with an IP address
|
7 |
+
*
|
8 |
+
* This record is returned by all location services and databases besides
|
9 |
+
* Country.
|
10 |
+
*
|
11 |
+
* @property-read int|null $averageIncome The average income in US dollars
|
12 |
+
* associated with the requested IP address. This attribute is only available
|
13 |
+
* from the Insights service.
|
14 |
+
*
|
15 |
+
* @property-read int|null $accuracyRadius The approximate accuracy radius in
|
16 |
+
* kilometers around the latitude and longitude for the IP address. This is
|
17 |
+
* the radius where we have a 67% confidence that the device using the IP
|
18 |
+
* address resides within the circle centered at the latitude and longitude
|
19 |
+
* with the provided radius.
|
20 |
+
*
|
21 |
+
* @property-read float|null $latitude The approximate latitude of the location
|
22 |
+
* associated with the IP address. This value is not precise and should not be
|
23 |
+
* used to identify a particular address or household.
|
24 |
+
*
|
25 |
+
* @property-read float|null $longitude The approximate longitude of the location
|
26 |
+
* associated with the IP address. This value is not precise and should not be
|
27 |
+
* used to identify a particular address or household.
|
28 |
+
*
|
29 |
+
* @property-read int|null $populationDensity The estimated population per square
|
30 |
+
* kilometer associated with the IP address. This attribute is only available
|
31 |
+
* from the Insights service.
|
32 |
+
*
|
33 |
+
* @property-read int|null $metroCode The metro code of the location if the location
|
34 |
+
* is in the US. MaxMind returns the same metro codes as the
|
35 |
+
* {@link
|
36 |
+
* https://developers.google.com/adwords/api/docs/appendix/cities-DMAregions
|
37 |
+
* Google AdWords API}.
|
38 |
+
*
|
39 |
+
* @property-read string|null $timeZone The time zone associated with location, as
|
40 |
+
* specified by the {@link http://www.iana.org/time-zones IANA Time Zone
|
41 |
+
* Database}, e.g., "America/New_York".
|
42 |
+
*/
|
43 |
+
class Location extends AbstractRecord
|
44 |
+
{
|
45 |
+
/**
|
46 |
+
* @ignore
|
47 |
+
*/
|
48 |
+
protected $validAttributes = array(
|
49 |
+
'averageIncome',
|
50 |
+
'accuracyRadius',
|
51 |
+
'latitude',
|
52 |
+
'longitude',
|
53 |
+
'metroCode',
|
54 |
+
'populationDensity',
|
55 |
+
'postalCode',
|
56 |
+
'postalConfidence',
|
57 |
+
'timeZone'
|
58 |
+
);
|
59 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/MaxMind.php
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Contains data about your account.
|
7 |
+
*
|
8 |
+
* This record is returned by all location services and databases.
|
9 |
+
*
|
10 |
+
* @property-read int|null $queriesRemaining The number of remaining queries you
|
11 |
+
* have for the service you are calling.
|
12 |
+
*/
|
13 |
+
class MaxMind extends AbstractRecord
|
14 |
+
{
|
15 |
+
/**
|
16 |
+
* @ignore
|
17 |
+
*/
|
18 |
+
protected $validAttributes = array('queriesRemaining');
|
19 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Postal.php
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Contains data for the postal record associated with an IP address
|
7 |
+
*
|
8 |
+
* This record is returned by all location databases and services besides
|
9 |
+
* Country.
|
10 |
+
*
|
11 |
+
* @property-read string|null $code The postal code of the location. Postal codes
|
12 |
+
* are not available for all countries. In some countries, this will only
|
13 |
+
* contain part of the postal code. This attribute is returned by all location
|
14 |
+
* databases and services besides Country.
|
15 |
+
*
|
16 |
+
* @property-read int|null $confidence A value from 0-100 indicating MaxMind's
|
17 |
+
* confidence that the postal code is correct. This attribute is only
|
18 |
+
* available from the Insights service and the GeoIP2 Enterprise
|
19 |
+
* database.
|
20 |
+
*/
|
21 |
+
class Postal extends AbstractRecord
|
22 |
+
{
|
23 |
+
/**
|
24 |
+
* @ignore
|
25 |
+
*/
|
26 |
+
protected $validAttributes = array('code', 'confidence');
|
27 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/RepresentedCountry.php
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Contains data for the represented country associated with an IP address
|
7 |
+
*
|
8 |
+
* This class contains the country-level data associated with an IP address
|
9 |
+
* for the IP's represented country. The represented country is the country
|
10 |
+
* represented by something like a military base.
|
11 |
+
*
|
12 |
+
* @property-read int|null $confidence A value from 0-100 indicating MaxMind's
|
13 |
+
* confidence that the country is correct. This attribute is only available
|
14 |
+
* from the Insights service and the GeoIP2 Enterprise database.
|
15 |
+
*
|
16 |
+
* @property-read int|null $geonameId The GeoName ID for the country.
|
17 |
+
*
|
18 |
+
* @property-read string|null $isoCode The {@link http://en.wikipedia.org/wiki/ISO_3166-1
|
19 |
+
* two-character ISO 3166-1 alpha code} for the country.
|
20 |
+
*
|
21 |
+
* @property-read string|null $name The name of the country based on the locales list
|
22 |
+
* passed to the constructor.
|
23 |
+
*
|
24 |
+
* @property-read array|null $names An array map where the keys are locale codes and
|
25 |
+
* the values are names.
|
26 |
+
*
|
27 |
+
* @property-read string|null $type A string indicating the type of entity that is
|
28 |
+
* representing the country. Currently we only return <code>military</code>
|
29 |
+
* but this could expand to include other types in the future.
|
30 |
+
*/
|
31 |
+
class RepresentedCountry extends Country
|
32 |
+
{
|
33 |
+
protected $validAttributes = array(
|
34 |
+
'confidence',
|
35 |
+
'geonameId',
|
36 |
+
'isoCode',
|
37 |
+
'names',
|
38 |
+
'type'
|
39 |
+
);
|
40 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Subdivision.php
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
/**
|
6 |
+
*
|
7 |
+
* Contains data for the subdivisions associated with an IP address
|
8 |
+
*
|
9 |
+
* This record is returned by all location databases and services besides
|
10 |
+
* Country.
|
11 |
+
*
|
12 |
+
* @property-read int|null $confidence This is a value from 0-100 indicating
|
13 |
+
* MaxMind's confidence that the subdivision is correct. This attribute is
|
14 |
+
* only available from the Insights service and the GeoIP2 Enterprise
|
15 |
+
* database.
|
16 |
+
*
|
17 |
+
* @property-read int|null $geonameId This is a GeoName ID for the subdivision.
|
18 |
+
* This attribute is returned by all location databases and services besides
|
19 |
+
* Country.
|
20 |
+
*
|
21 |
+
* @property-read string|null $isoCode This is a string up to three characters long
|
22 |
+
* contain the subdivision portion of the {@link
|
23 |
+
* http://en.wikipedia.org/wiki/ISO_3166-2 ISO 3166-2 code}. This attribute
|
24 |
+
* is returned by all location databases and services except Country.
|
25 |
+
*
|
26 |
+
* @property-read string|null $name The name of the subdivision based on the
|
27 |
+
* locales list passed to the constructor. This attribute is returned by all
|
28 |
+
* location databases and services besides Country.
|
29 |
+
*
|
30 |
+
* @property-read array|null $names An array map where the keys are locale codes
|
31 |
+
* and the values are names. This attribute is returned by all location
|
32 |
+
* databases and services besides Country.
|
33 |
+
*/
|
34 |
+
class Subdivision extends AbstractPlaceRecord
|
35 |
+
{
|
36 |
+
/**
|
37 |
+
* @ignore
|
38 |
+
*/
|
39 |
+
protected $validAttributes = array(
|
40 |
+
'confidence',
|
41 |
+
'geonameId',
|
42 |
+
'isoCode',
|
43 |
+
'names'
|
44 |
+
);
|
45 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/Record/Traits.php
ADDED
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\Record;
|
4 |
+
|
5 |
+
/**
|
6 |
+
*
|
7 |
+
* Contains data for the traits record associated with an IP address
|
8 |
+
*
|
9 |
+
* This record is returned by all location services and databases.
|
10 |
+
*
|
11 |
+
* @property-read int|null $autonomousSystemNumber The {@link
|
12 |
+
* http://en.wikipedia.org/wiki/Autonomous_system_(Internet) autonomous
|
13 |
+
* system number} associated with the IP address. This attribute is only
|
14 |
+
* available from the City and Insights web service and the GeoIP2
|
15 |
+
* Enterprise database.
|
16 |
+
*
|
17 |
+
* @property-read string|null $autonomousSystemOrganization The organization
|
18 |
+
* associated with the registered {@link
|
19 |
+
* http://en.wikipedia.org/wiki/Autonomous_system_(Internet) autonomous
|
20 |
+
* system number} for the IP address. This attribute is only available from
|
21 |
+
* the City and Insights web service and the GeoIP2 Enterprise
|
22 |
+
* database.
|
23 |
+
*
|
24 |
+
* @property-read string|null $connectionType The connection type may take the
|
25 |
+
* following values: "Dialup", "Cable/DSL", "Corporate", "Cellular".
|
26 |
+
* Additional values may be added in the future. This attribute is only
|
27 |
+
* available in the GeoIP2 Enterprise database.
|
28 |
+
*
|
29 |
+
* @property-read string|null $domain The second level domain associated with the
|
30 |
+
* IP address. This will be something like "example.com" or "example.co.uk",
|
31 |
+
* not "foo.example.com". This attribute is only available from the
|
32 |
+
* City and Insights web service and the GeoIP2 Enterprise
|
33 |
+
* database.
|
34 |
+
*
|
35 |
+
* @property-read string $ipAddress The IP address that the data in the model
|
36 |
+
* is for. If you performed a "me" lookup against the web service, this
|
37 |
+
* will be the externally routable IP address for the system the code is
|
38 |
+
* running on. If the system is behind a NAT, this may differ from the IP
|
39 |
+
* address locally assigned to it. This attribute is returned by all end
|
40 |
+
* points.
|
41 |
+
*
|
42 |
+
* @property-read boolean $isAnonymousProxy *Deprecated.* Please see our {@link
|
43 |
+
* https://www.maxmind.com/en/geoip2-anonymous-ip-database GeoIP2
|
44 |
+
* Anonymous IP database} to determine whether the IP address is used by an
|
45 |
+
* anonymizing service.
|
46 |
+
*
|
47 |
+
* @property-read boolean $isLegitimateProxy This attribute is true if MaxMind
|
48 |
+
* believes this IP address to be a legitimate proxy, such as an internal
|
49 |
+
* VPN used by a corporation. This attribute is only available in the GeoIP2
|
50 |
+
* Enterprise database.
|
51 |
+
*
|
52 |
+
* @property-read boolean $isSatelliteProvider *Deprecated.* Due to the
|
53 |
+
* increased coverage by mobile carriers, very few satellite providers now
|
54 |
+
* serve multiple countries. As a result, the output does not provide
|
55 |
+
* sufficiently relevant data for us to maintain it.
|
56 |
+
*
|
57 |
+
* @property-read string|null $isp The name of the ISP associated with the IP
|
58 |
+
* address. This attribute is only available from the City and Insights web
|
59 |
+
* services and the GeoIP2 Enterprise database.
|
60 |
+
*
|
61 |
+
* @property-read string|null $organization The name of the organization associated
|
62 |
+
* with the IP address. This attribute is only available from the City and
|
63 |
+
* Insights web services and the GeoIP2 Enterprise database.
|
64 |
+
*
|
65 |
+
* @property-read string|null $userType <p>The user type associated with the IP
|
66 |
+
* address. This can be one of the following values:</p>
|
67 |
+
* <ul>
|
68 |
+
* <li>business
|
69 |
+
* <li>cafe
|
70 |
+
* <li>cellular
|
71 |
+
* <li>college
|
72 |
+
* <li>content_delivery_network
|
73 |
+
* <li>dialup
|
74 |
+
* <li>government
|
75 |
+
* <li>hosting
|
76 |
+
* <li>library
|
77 |
+
* <li>military
|
78 |
+
* <li>residential
|
79 |
+
* <li>router
|
80 |
+
* <li>school
|
81 |
+
* <li>search_engine_spider
|
82 |
+
* <li>traveler
|
83 |
+
* </ul>
|
84 |
+
* <p>
|
85 |
+
* This attribute is only available from the Insights web service and the
|
86 |
+
* GeoIP2 Enterprise database.
|
87 |
+
* </p>
|
88 |
+
*/
|
89 |
+
class Traits extends AbstractRecord
|
90 |
+
{
|
91 |
+
/**
|
92 |
+
* @ignore
|
93 |
+
*/
|
94 |
+
protected $validAttributes = array(
|
95 |
+
'autonomousSystemNumber',
|
96 |
+
'autonomousSystemOrganization',
|
97 |
+
'connectionType',
|
98 |
+
'domain',
|
99 |
+
'isAnonymousProxy',
|
100 |
+
'isLegitimateProxy',
|
101 |
+
'isSatelliteProvider',
|
102 |
+
'isp',
|
103 |
+
'ipAddress',
|
104 |
+
'organization',
|
105 |
+
'userType'
|
106 |
+
);
|
107 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/geoip2/geoip2/src/WebService/Client.php
ADDED
@@ -0,0 +1,242 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace GeoIp2\WebService;
|
4 |
+
|
5 |
+
use GeoIp2\Exception\AddressNotFoundException;
|
6 |
+
use GeoIp2\Exception\AuthenticationException;
|
7 |
+
use GeoIp2\Exception\GeoIp2Exception;
|
8 |
+
use GeoIp2\Exception\HttpException;
|
9 |
+
use GeoIp2\Exception\InvalidRequestException;
|
10 |
+
use GeoIp2\Exception\OutOfQueriesException;
|
11 |
+
use GeoIp2\ProviderInterface;
|
12 |
+
use MaxMind\Exception\InvalidInputException;
|
13 |
+
use MaxMind\WebService\Client as WsClient;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* This class provides a client API for all the GeoIP2 Precision web services.
|
17 |
+
* The services are Country, City, and Insights. Each service returns a
|
18 |
+
* different set of data about an IP address, with Country returning the
|
19 |
+
* least data and Insights the most.
|
20 |
+
*
|
21 |
+
* Each web service is represented by a different model class, and these model
|
22 |
+
* classes in turn contain multiple record classes. The record classes have
|
23 |
+
* attributes which contain data about the IP address.
|
24 |
+
*
|
25 |
+
* If the web service does not return a particular piece of data for an IP
|
26 |
+
* address, the associated attribute is not populated.
|
27 |
+
*
|
28 |
+
* The web service may not return any information for an entire record, in
|
29 |
+
* which case all of the attributes for that record class will be empty.
|
30 |
+
*
|
31 |
+
* ## Usage ##
|
32 |
+
*
|
33 |
+
* The basic API for this class is the same for all of the web service end
|
34 |
+
* points. First you create a web service object with your MaxMind `$userId`
|
35 |
+
* and `$licenseKey`, then you call the method corresponding to a specific end
|
36 |
+
* point, passing it the IP address you want to look up.
|
37 |
+
*
|
38 |
+
* If the request succeeds, the method call will return a model class for
|
39 |
+
* the service you called. This model in turn contains multiple record
|
40 |
+
* classes, each of which represents part of the data returned by the web
|
41 |
+
* service.
|
42 |
+
*
|
43 |
+
* If the request fails, the client class throws an exception.
|
44 |
+
*/
|
45 |
+
class Client implements ProviderInterface
|
46 |
+
{
|
47 |
+
private $locales;
|
48 |
+
private $client;
|
49 |
+
private static $basePath = '/geoip/v2.1';
|
50 |
+
|
51 |
+
const VERSION = 'v2.4.4';
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Constructor.
|
55 |
+
*
|
56 |
+
* @param int $userId Your MaxMind user ID
|
57 |
+
* @param string $licenseKey Your MaxMind license key
|
58 |
+
* @param array $locales List of locale codes to use in name property
|
59 |
+
* from most preferred to least preferred.
|
60 |
+
* @param array $options Array of options. Valid options include:
|
61 |
+
* * `host` - The host to use when querying the web service.
|
62 |
+
* * `timeout` - Timeout in seconds.
|
63 |
+
* * `connectTimeout` - Initial connection timeout in seconds.
|
64 |
+
* * `proxy` - The HTTP proxy to use. May include a schema, port,
|
65 |
+
* username, and password, e.g.,
|
66 |
+
* `http://username:password@127.0.0.1:10`.
|
67 |
+
*/
|
68 |
+
public function __construct(
|
69 |
+
$userId,
|
70 |
+
$licenseKey,
|
71 |
+
$locales = array('en'),
|
72 |
+
$options = array()
|
73 |
+
) {
|
74 |
+
$this->locales = $locales;
|
75 |
+
|
76 |
+
// This is for backwards compatibility. Do not remove except for a
|
77 |
+
// major version bump.
|
78 |
+
if (is_string($options)) {
|
79 |
+
$options = array( 'host' => $options );
|
80 |
+
}
|
81 |
+
|
82 |
+
if (!isset($options['host'])) {
|
83 |
+
$options['host'] = 'geoip.maxmind.com';
|
84 |
+
}
|
85 |
+
|
86 |
+
$options['userAgent'] = $this->userAgent();
|
87 |
+
|
88 |
+
$this->client = new WsClient($userId, $licenseKey, $options);
|
89 |
+
}
|
90 |
+
|
91 |
+
private function userAgent()
|
92 |
+
{
|
93 |
+
return 'GeoIP2-API/' . Client::VERSION;
|
94 |
+
}
|
95 |
+
|
96 |
+
/**
|
97 |
+
* This method calls the GeoIP2 Precision: City service.
|
98 |
+
*
|
99 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string. If no
|
100 |
+
* address is provided, the address that the web service is called
|
101 |
+
* from will be used.
|
102 |
+
*
|
103 |
+
* @return \GeoIp2\Model\City
|
104 |
+
*
|
105 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address you
|
106 |
+
* provided is not in our database (e.g., a private address).
|
107 |
+
* @throws \GeoIp2\Exception\AuthenticationException if there is a problem
|
108 |
+
* with the user ID or license key that you provided.
|
109 |
+
* @throws \GeoIp2\Exception\OutOfQueriesException if your account is out
|
110 |
+
* of queries.
|
111 |
+
* @throws \GeoIp2\Exception\InvalidRequestException} if your request was
|
112 |
+
* received by the web service but is invalid for some other reason.
|
113 |
+
* This may indicate an issue with this API. Please report the error to
|
114 |
+
* MaxMind.
|
115 |
+
* @throws \GeoIp2\Exception\HttpException if an unexpected HTTP error
|
116 |
+
* code or message was returned. This could indicate a problem with the
|
117 |
+
* connection between your server and the web service or that the web
|
118 |
+
* service returned an invalid document or 500 error code.
|
119 |
+
* @throws \GeoIp2\Exception\GeoIp2Exception This serves as the parent
|
120 |
+
* class to the above exceptions. It will be thrown directly if a 200
|
121 |
+
* status code is returned but the body is invalid.
|
122 |
+
*/
|
123 |
+
public function city($ipAddress = 'me')
|
124 |
+
{
|
125 |
+
return $this->responseFor('city', 'City', $ipAddress);
|
126 |
+
}
|
127 |
+
|
128 |
+
/**
|
129 |
+
* This method calls the GeoIP2 Precision: Country service.
|
130 |
+
*
|
131 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string. If no
|
132 |
+
* address is provided, the address that the web service is called
|
133 |
+
* from will be used.
|
134 |
+
*
|
135 |
+
* @return \GeoIp2\Model\Country
|
136 |
+
*
|
137 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address you
|
138 |
+
* provided is not in our database (e.g., a private address).
|
139 |
+
* @throws \GeoIp2\Exception\AuthenticationException if there is a problem
|
140 |
+
* with the user ID or license key that you provided.
|
141 |
+
* @throws \GeoIp2\Exception\OutOfQueriesException if your account is out
|
142 |
+
* of queries.
|
143 |
+
* @throws \GeoIp2\Exception\InvalidRequestException} if your request was
|
144 |
+
* received by the web service but is invalid for some other reason.
|
145 |
+
* This may indicate an issue with this API. Please report the error to
|
146 |
+
* MaxMind.
|
147 |
+
* @throws \GeoIp2\Exception\HttpException if an unexpected HTTP error
|
148 |
+
* code or message was returned. This could indicate a problem with the
|
149 |
+
* connection between your server and the web service or that the web
|
150 |
+
* service returned an invalid document or 500 error code.
|
151 |
+
* @throws \GeoIp2\Exception\GeoIp2Exception This serves as the parent
|
152 |
+
* class to the above exceptions. It will be thrown directly if a 200
|
153 |
+
* status code is returned but the body is invalid.
|
154 |
+
*/
|
155 |
+
public function country($ipAddress = 'me')
|
156 |
+
{
|
157 |
+
return $this->responseFor('country', 'Country', $ipAddress);
|
158 |
+
}
|
159 |
+
|
160 |
+
/**
|
161 |
+
* This method calls the GeoIP2 Precision: Insights service.
|
162 |
+
*
|
163 |
+
* @param string $ipAddress IPv4 or IPv6 address as a string. If no
|
164 |
+
* address is provided, the address that the web service is called
|
165 |
+
* from will be used.
|
166 |
+
*
|
167 |
+
* @return \GeoIp2\Model\Insights
|
168 |
+
*
|
169 |
+
* @throws \GeoIp2\Exception\AddressNotFoundException if the address you
|
170 |
+
* provided is not in our database (e.g., a private address).
|
171 |
+
* @throws \GeoIp2\Exception\AuthenticationException if there is a problem
|
172 |
+
* with the user ID or license key that you provided.
|
173 |
+
* @throws \GeoIp2\Exception\OutOfQueriesException if your account is out
|
174 |
+
* of queries.
|
175 |
+
* @throws \GeoIp2\Exception\InvalidRequestException} if your request was
|
176 |
+
* received by the web service but is invalid for some other reason.
|
177 |
+
* This may indicate an issue with this API. Please report the error to
|
178 |
+
* MaxMind.
|
179 |
+
* @throws \GeoIp2\Exception\HttpException if an unexpected HTTP error
|
180 |
+
* code or message was returned. This could indicate a problem with the
|
181 |
+
* connection between your server and the web service or that the web
|
182 |
+
* service returned an invalid document or 500 error code.
|
183 |
+
* @throws \GeoIp2\Exception\GeoIp2Exception This serves as the parent
|
184 |
+
* class to the above exceptions. It will be thrown directly if a 200
|
185 |
+
* status code is returned but the body is invalid.
|
186 |
+
*/
|
187 |
+
public function insights($ipAddress = 'me')
|
188 |
+
{
|
189 |
+
return $this->responseFor('insights', 'Insights', $ipAddress);
|
190 |
+
}
|
191 |
+
|
192 |
+
private function responseFor($endpoint, $class, $ipAddress)
|
193 |
+
{
|
194 |
+
$path = implode('/', array(self::$basePath, $endpoint, $ipAddress));
|
195 |
+
|
196 |
+
try {
|
197 |
+
$body = $this->client->get('GeoIP2 ' . $class, $path);
|
198 |
+
} catch (\MaxMind\Exception\IpAddressNotFoundException $ex) {
|
199 |
+
throw new AddressNotFoundException(
|
200 |
+
$ex->getMessage(),
|
201 |
+
$ex->getStatusCode(),
|
202 |
+
$ex
|
203 |
+
);
|
204 |
+
} catch (\MaxMind\Exception\AuthenticationException $ex) {
|
205 |
+
throw new AuthenticationException(
|
206 |
+
$ex->getMessage(),
|
207 |
+
$ex->getStatusCode(),
|
208 |
+
$ex
|
209 |
+
);
|
210 |
+
} catch (\MaxMind\Exception\InsufficientFundsException $ex) {
|
211 |
+
throw new OutOfQueriesException(
|
212 |
+
$ex->getMessage(),
|
213 |
+
$ex->getStatusCode(),
|
214 |
+
$ex
|
215 |
+
);
|
216 |
+
} catch (\MaxMind\Exception\InvalidRequestException $ex) {
|
217 |
+
throw new InvalidRequestException(
|
218 |
+
$ex->getMessage(),
|
219 |
+
$ex->getErrorCode(),
|
220 |
+
$ex->getStatusCode(),
|
221 |
+
$ex->getUri(),
|
222 |
+
$ex
|
223 |
+
);
|
224 |
+
} catch (\MaxMind\Exception\HttpException $ex) {
|
225 |
+
throw new HttpException(
|
226 |
+
$ex->getMessage(),
|
227 |
+
$ex->getStatusCode(),
|
228 |
+
$ex->getUri(),
|
229 |
+
$ex
|
230 |
+
);
|
231 |
+
} catch (\MaxMind\Exception\WebServiceException $ex) {
|
232 |
+
throw new GeoIp2Exception(
|
233 |
+
$ex->getMessage(),
|
234 |
+
$ex->getCode(),
|
235 |
+
$ex
|
236 |
+
);
|
237 |
+
}
|
238 |
+
|
239 |
+
$class = "GeoIp2\\Model\\" . $class;
|
240 |
+
return new $class($body, $this->locales);
|
241 |
+
}
|
242 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/.gitignore
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
bin
|
2 |
+
composer.lock
|
3 |
+
composer.phar
|
4 |
+
phpunit.xml
|
5 |
+
vendor
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/.travis.yml
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
language: php
|
2 |
+
|
3 |
+
php:
|
4 |
+
- 5.4
|
5 |
+
- 5.5
|
6 |
+
|
7 |
+
env: TEST_SERVER="http://127.0.0.1:8080/server.php" TEST_PROXY="127.0.0.1:3128" PHP_FCGI_CHILDREN=10 PHP_FCGI_MAX_REQUESTS=10
|
8 |
+
|
9 |
+
before_install:
|
10 |
+
- echo "" | sudo add-apt-repository ppa:nginx/stable > /dev/null 2>&1
|
11 |
+
- sudo apt-get -qq update
|
12 |
+
- sudo apt-get -qq install nginx squid
|
13 |
+
- sudo stop squid3
|
14 |
+
- curl --version
|
15 |
+
|
16 |
+
before_script:
|
17 |
+
- sudo cp ~/.phpenv/versions/$(phpenv version-name)/etc/php-fpm.conf.default ~/.phpenv/versions/$(phpenv version-name)/etc/php-fpm.conf
|
18 |
+
- echo "cgi.fix_pathinfo = 1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
19 |
+
- ~/.phpenv/versions/$(phpenv version-name)/sbin/php-fpm
|
20 |
+
- sudo nginx -p test -c etc/nginx.conf
|
21 |
+
- sudo squid3 -f test/etc/squid.conf
|
22 |
+
- composer self-update
|
23 |
+
- composer install --dev
|
24 |
+
|
25 |
+
script: ./bin/phpunit
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/CHANGELOG.md
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## 0.15 (June 25, 2015)
|
2 |
+
|
3 |
+
* Moved cookie jar implementation from `FileGetContents` client to a browser
|
4 |
+
listener
|
5 |
+
* Added `DigestAuthListener`
|
6 |
+
|
7 |
+
## 0.14 (June 2, 2015)
|
8 |
+
|
9 |
+
* Changed default HTTP protocol version to 1.1
|
10 |
+
* Added verify host control to `AbstractClient`
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/LICENSE
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Copyright (c) 2010-2011 Kris Wallsmith
|
2 |
+
|
3 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4 |
+
of this software and associated documentation files (the "Software"), to deal
|
5 |
+
in the Software without restriction, including without limitation the rights
|
6 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7 |
+
copies of the Software, and to permit persons to whom the Software is furnished
|
8 |
+
to do so, subject to the following conditions:
|
9 |
+
|
10 |
+
The above copyright notice and this permission notice shall be included in all
|
11 |
+
copies or substantial portions of the Software.
|
12 |
+
|
13 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19 |
+
THE SOFTWARE.
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[![Build Status](https://secure.travis-ci.org/kriswallsmith/Buzz.png?branch=master)](http://travis-ci.org/kriswallsmith/Buzz)
|
2 |
+
|
3 |
+
Buzz is a lightweight PHP 5.3 library for issuing HTTP requests.
|
4 |
+
|
5 |
+
```php
|
6 |
+
<?php
|
7 |
+
|
8 |
+
$browser = new Buzz\Browser();
|
9 |
+
$response = $browser->get('http://www.google.com');
|
10 |
+
|
11 |
+
echo $browser->getLastRequest()."\n";
|
12 |
+
echo $response;
|
13 |
+
```
|
14 |
+
|
15 |
+
You can also use the low-level HTTP classes directly.
|
16 |
+
|
17 |
+
```php
|
18 |
+
<?php
|
19 |
+
|
20 |
+
$request = new Buzz\Message\Request('HEAD', '/', 'http://google.com');
|
21 |
+
$response = new Buzz\Message\Response();
|
22 |
+
|
23 |
+
$client = new Buzz\Client\FileGetContents();
|
24 |
+
$client->send($request, $response);
|
25 |
+
|
26 |
+
echo $request;
|
27 |
+
echo $response;
|
28 |
+
```
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/composer.json
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "kriswallsmith/buzz",
|
3 |
+
"description": "Lightweight HTTP client",
|
4 |
+
"keywords": ["http client", "curl"],
|
5 |
+
"homepage": "https://github.com/kriswallsmith/Buzz",
|
6 |
+
"type": "library",
|
7 |
+
"license": "MIT",
|
8 |
+
"authors": [
|
9 |
+
{
|
10 |
+
"name": "Kris Wallsmith",
|
11 |
+
"email": "kris.wallsmith@gmail.com",
|
12 |
+
"homepage": "http://kriswallsmith.net/"
|
13 |
+
}
|
14 |
+
],
|
15 |
+
"require": {
|
16 |
+
"php": ">=5.3.0"
|
17 |
+
},
|
18 |
+
"require-dev": {
|
19 |
+
"phpunit/phpunit": "3.7.*"
|
20 |
+
},
|
21 |
+
"suggest": {
|
22 |
+
"ext-curl": "*"
|
23 |
+
},
|
24 |
+
"config": {
|
25 |
+
"bin-dir": "bin"
|
26 |
+
},
|
27 |
+
"autoload": {
|
28 |
+
"psr-0": {
|
29 |
+
"Buzz": "lib/"
|
30 |
+
}
|
31 |
+
}
|
32 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/examples/CookieListener.php
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
require('../vendor/autoload.php');
|
4 |
+
|
5 |
+
use Buzz\Browser;
|
6 |
+
use Buzz\Client\Curl;
|
7 |
+
use Buzz\Listener\CookieListener;
|
8 |
+
|
9 |
+
$browser = new Browser();
|
10 |
+
|
11 |
+
$client = new Curl();
|
12 |
+
$client->setMaxRedirects(0);
|
13 |
+
$browser->setClient($client);
|
14 |
+
|
15 |
+
// Create CookieListener
|
16 |
+
$listener = new CookieListener();
|
17 |
+
$browser->addListener($listener);
|
18 |
+
|
19 |
+
// This URL set two Cookies, k1=v1 and k2=v2
|
20 |
+
$response = $browser->get('http://httpbin.org/cookies/set?k1=v1&k2=v2');
|
21 |
+
|
22 |
+
// This URL will return the two set Cookies
|
23 |
+
$response = $browser->get('http://httpbin.org/cookies');
|
24 |
+
echo $response;
|
25 |
+
|
26 |
+
// Should output
|
27 |
+
/*
|
28 |
+
{
|
29 |
+
"cookies": {
|
30 |
+
"k1": "v1",
|
31 |
+
"k2": "v2"
|
32 |
+
}
|
33 |
+
}
|
34 |
+
*/
|
35 |
+
|
36 |
+
// The Cookies are able to be retrieved and set using getCookies and setCookies on the Listener.
|
37 |
+
print_r($listener->getCookies());
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/examples/DigestAuthListener.php
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
require('../vendor/autoload.php');
|
4 |
+
|
5 |
+
use Buzz\Browser;
|
6 |
+
use Buzz\Client\Curl;
|
7 |
+
use Buzz\Listener\DigestAuthListener;
|
8 |
+
|
9 |
+
$username = 'user1';
|
10 |
+
$password = 'user1';
|
11 |
+
|
12 |
+
//
|
13 |
+
// This URL will Authenticate usernames user1 through user9, password is the same as the username.
|
14 |
+
//
|
15 |
+
$url = 'http://test.webdav.org/auth-digest/';
|
16 |
+
|
17 |
+
// Create Curl Client
|
18 |
+
$curl = new Curl();
|
19 |
+
|
20 |
+
$browser = new Browser();
|
21 |
+
$browser->setClient($curl);
|
22 |
+
|
23 |
+
// Create DigestAuthListener
|
24 |
+
$browser->addListener(new DigestAuthListener($username, $password));
|
25 |
+
|
26 |
+
//
|
27 |
+
// This URL will Authenticate any username and password that matches those in the URL.
|
28 |
+
// It requires the Browser/Client to respond with the same Cookie in order to Authenticate.
|
29 |
+
//
|
30 |
+
// $url = 'http://httpbin.org/digest-auth/auth-int/' . $username . '/' . $password;
|
31 |
+
|
32 |
+
$response = $browser->get($url);
|
33 |
+
echo $response;
|
34 |
+
|
35 |
+
$statusCode = $response->getStatusCode();
|
36 |
+
if($statusCode == 401) {
|
37 |
+
$response = $browser->get($url);
|
38 |
+
}
|
39 |
+
|
40 |
+
echo $response;
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Browser.php
RENAMED
@@ -1,16 +1,16 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
-
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
-
use
|
9 |
-
use
|
10 |
-
use
|
11 |
-
use
|
12 |
-
use
|
13 |
-
use
|
14 |
|
15 |
class Browser
|
16 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz;
|
4 |
+
|
5 |
+
use Buzz\Client\ClientInterface;
|
6 |
+
use Buzz\Client\FileGetContents;
|
7 |
+
use Buzz\Listener\ListenerChain;
|
8 |
+
use Buzz\Listener\ListenerInterface;
|
9 |
+
use Buzz\Message\Factory\Factory;
|
10 |
+
use Buzz\Message\Factory\FactoryInterface;
|
11 |
+
use Buzz\Message\MessageInterface;
|
12 |
+
use Buzz\Message\RequestInterface;
|
13 |
+
use Buzz\Util\Url;
|
14 |
|
15 |
class Browser
|
16 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/AbstractClient.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
abstract class AbstractClient implements ClientInterface
|
6 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Client;
|
4 |
|
5 |
abstract class AbstractClient implements ClientInterface
|
6 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/AbstractCurl.php
RENAMED
@@ -1,12 +1,12 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
-
use
|
9 |
-
use
|
10 |
|
11 |
/**
|
12 |
* Base client class with helpers for working with cURL.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Client;
|
4 |
|
5 |
+
use Buzz\Message\Form\FormRequestInterface;
|
6 |
+
use Buzz\Message\Form\FormUploadInterface;
|
7 |
+
use Buzz\Message\MessageInterface;
|
8 |
+
use Buzz\Message\RequestInterface;
|
9 |
+
use Buzz\Exception\ClientException;
|
10 |
|
11 |
/**
|
12 |
* Base client class with helpers for working with cURL.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/AbstractStream.php
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
|
7 |
abstract class AbstractStream extends AbstractClient
|
8 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Client;
|
4 |
|
5 |
+
use Buzz\Message\RequestInterface;
|
6 |
|
7 |
abstract class AbstractStream extends AbstractClient
|
8 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/BatchClientInterface.php
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
|
7 |
/**
|
8 |
* A client capable of running batches of requests.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Client;
|
4 |
|
5 |
+
use Buzz\Exception\ClientException;
|
6 |
|
7 |
/**
|
8 |
* A client capable of running batches of requests.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/ClientInterface.php
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
|
9 |
interface ClientInterface
|
10 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Client;
|
4 |
|
5 |
+
use Buzz\Exception\ClientException;
|
6 |
+
use Buzz\Message\MessageInterface;
|
7 |
+
use Buzz\Message\RequestInterface;
|
8 |
|
9 |
interface ClientInterface
|
10 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/Curl.php
RENAMED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
-
use
|
9 |
|
10 |
class Curl extends AbstractCurl
|
11 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Client;
|
4 |
|
5 |
+
use Buzz\Exception\RequestException;
|
6 |
+
use Buzz\Message\MessageInterface;
|
7 |
+
use Buzz\Message\RequestInterface;
|
8 |
+
use Buzz\Exception\LogicException;
|
9 |
|
10 |
class Curl extends AbstractCurl
|
11 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/FileGetContents.php
RENAMED
@@ -1,12 +1,12 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
|
9 |
-
use
|
10 |
|
11 |
class FileGetContents extends AbstractStream
|
12 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Client;
|
4 |
|
5 |
+
use Buzz\Exception\RequestException;
|
6 |
+
use Buzz\Message\MessageInterface;
|
7 |
+
use Buzz\Message\RequestInterface;
|
8 |
|
9 |
+
use Buzz\Exception\ClientException;
|
10 |
|
11 |
class FileGetContents extends AbstractStream
|
12 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Client/MultiCurl.php
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
|
9 |
class MultiCurl extends AbstractCurl implements BatchClientInterface
|
10 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Client;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
+
use Buzz\Exception\ClientException;
|
8 |
|
9 |
class MultiCurl extends AbstractCurl implements BatchClientInterface
|
10 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/ClientException.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
/**
|
6 |
* Thrown whenever a client process fails.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Exception;
|
4 |
|
5 |
/**
|
6 |
* Thrown whenever a client process fails.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/ExceptionInterface.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
/**
|
6 |
* Marker interface to denote exceptions thrown from the Buzz context.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Exception;
|
4 |
|
5 |
/**
|
6 |
* Marker interface to denote exceptions thrown from the Buzz context.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/InvalidArgumentException.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
/**
|
6 |
* Thrown when an invalid argument is provided.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Exception;
|
4 |
|
5 |
/**
|
6 |
* Thrown when an invalid argument is provided.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/LogicException.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
/**
|
6 |
* Thrown whenever a required call-flow is not respected.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Exception;
|
4 |
|
5 |
/**
|
6 |
* Thrown whenever a required call-flow is not respected.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/RequestException.php
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
|
7 |
class RequestException extends ClientException
|
8 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Exception;
|
4 |
|
5 |
+
use Buzz\Message\RequestInterface;
|
6 |
|
7 |
class RequestException extends ClientException
|
8 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Exception/RuntimeException.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
class RuntimeException extends \RuntimeException implements ExceptionInterface
|
6 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Exception;
|
4 |
|
5 |
class RuntimeException extends \RuntimeException implements ExceptionInterface
|
6 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/BasicAuthListener.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
class BasicAuthListener implements ListenerInterface
|
9 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
|
8 |
class BasicAuthListener implements ListenerInterface
|
9 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/CallbackListener.php
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
|
9 |
class CallbackListener implements ListenerInterface
|
10 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
+
use Buzz\Exception\InvalidArgumentException;
|
8 |
|
9 |
class CallbackListener implements ListenerInterface
|
10 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/CookieListener.php
RENAMED
@@ -1,12 +1,12 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
-
use
|
9 |
-
use
|
10 |
|
11 |
class CookieListener implements ListenerInterface
|
12 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener;
|
4 |
|
5 |
+
use Buzz\Message\RequestInterface;
|
6 |
+
use Buzz\Message\MessageInterface;
|
7 |
|
8 |
+
use Buzz\Util\Cookie;
|
9 |
+
use Buzz\Util\CookieJar;
|
10 |
|
11 |
class CookieListener implements ListenerInterface
|
12 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/DigestAuthListener.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
class DigestAuthListener implements ListenerInterface
|
9 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
|
8 |
class DigestAuthListener implements ListenerInterface
|
9 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/History/Entry.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
class Entry
|
9 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener\History;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
|
8 |
class Entry
|
9 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/History/Journal.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
class Journal implements \Countable, \IteratorAggregate
|
9 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener\History;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
|
8 |
class Journal implements \Countable, \IteratorAggregate
|
9 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/HistoryListener.php
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
|
9 |
class HistoryListener implements ListenerInterface
|
10 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener;
|
4 |
|
5 |
+
use Buzz\Listener\History\Journal;
|
6 |
+
use Buzz\Message\MessageInterface;
|
7 |
+
use Buzz\Message\RequestInterface;
|
8 |
|
9 |
class HistoryListener implements ListenerInterface
|
10 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/ListenerChain.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
class ListenerChain implements ListenerInterface
|
9 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
|
8 |
class ListenerChain implements ListenerInterface
|
9 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/ListenerInterface.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
interface ListenerInterface
|
9 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
|
8 |
interface ListenerInterface
|
9 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Listener/LoggerListener.php
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
|
9 |
class LoggerListener implements ListenerInterface
|
10 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Listener;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
+
use Buzz\Exception\InvalidArgumentException;
|
8 |
|
9 |
class LoggerListener implements ListenerInterface
|
10 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/AbstractMessage.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
abstract class AbstractMessage implements MessageInterface
|
6 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message;
|
4 |
|
5 |
abstract class AbstractMessage implements MessageInterface
|
6 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Factory/Factory.php
RENAMED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
-
use
|
9 |
|
10 |
class Factory implements FactoryInterface
|
11 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message\Factory;
|
4 |
|
5 |
+
use Buzz\Message\Form\FormRequest;
|
6 |
+
use Buzz\Message\Request;
|
7 |
+
use Buzz\Message\RequestInterface;
|
8 |
+
use Buzz\Message\Response;
|
9 |
|
10 |
class Factory implements FactoryInterface
|
11 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Factory/FactoryInterface.php
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
|
7 |
interface FactoryInterface
|
8 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message\Factory;
|
4 |
|
5 |
+
use Buzz\Message\RequestInterface;
|
6 |
|
7 |
interface FactoryInterface
|
8 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Form/FormRequest.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
/**
|
9 |
* FormRequest.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message\Form;
|
4 |
|
5 |
+
use Buzz\Message\Request;
|
6 |
+
use Buzz\Exception\LogicException;
|
7 |
|
8 |
/**
|
9 |
* FormRequest.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Form/FormRequestInterface.php
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
|
7 |
/**
|
8 |
* An HTTP request message sent by a web form.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message\Form;
|
4 |
|
5 |
+
use Buzz\Message\RequestInterface;
|
6 |
|
7 |
/**
|
8 |
* An HTTP request message sent by a web form.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Form/FormUpload.php
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
|
7 |
class FormUpload extends AbstractMessage implements FormUploadInterface
|
8 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message\Form;
|
4 |
|
5 |
+
use Buzz\Message\AbstractMessage;
|
6 |
|
7 |
class FormUpload extends AbstractMessage implements FormUploadInterface
|
8 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Form/FormUploadInterface.php
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
|
7 |
interface FormUploadInterface extends MessageInterface
|
8 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message\Form;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
|
7 |
interface FormUploadInterface extends MessageInterface
|
8 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/MessageInterface.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
/**
|
6 |
* An HTTP message.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message;
|
4 |
|
5 |
/**
|
6 |
* An HTTP message.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Request.php
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
|
7 |
class Request extends AbstractMessage implements RequestInterface
|
8 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message;
|
4 |
|
5 |
+
use Buzz\Util\Url;
|
6 |
|
7 |
class Request extends AbstractMessage implements RequestInterface
|
8 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/RequestInterface.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
/**
|
6 |
* An HTTP request message.
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message;
|
4 |
|
5 |
/**
|
6 |
* An HTTP request message.
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Message/Response.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
class Response extends AbstractMessage
|
6 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Message;
|
4 |
|
5 |
class Response extends AbstractMessage
|
6 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Util/Cookie.php
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
|
7 |
class Cookie
|
8 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Util;
|
4 |
|
5 |
+
use Buzz\Message\RequestInterface;
|
6 |
|
7 |
class Cookie
|
8 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Util/CookieJar.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
class CookieJar
|
9 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Util;
|
4 |
|
5 |
+
use Buzz\Message\MessageInterface;
|
6 |
+
use Buzz\Message\RequestInterface;
|
7 |
|
8 |
class CookieJar
|
9 |
{
|
app/code/community/Webinterpret/Connector/Lib/{Buzz → kriswallsmith/buzz/lib/Buzz}/Util/Url.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace
|
4 |
|
5 |
-
use
|
6 |
-
use
|
7 |
|
8 |
class Url
|
9 |
{
|
1 |
<?php
|
2 |
|
3 |
+
namespace Buzz\Util;
|
4 |
|
5 |
+
use Buzz\Message\RequestInterface;
|
6 |
+
use Buzz\Exception\InvalidArgumentException;
|
7 |
|
8 |
class Url
|
9 |
{
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/phpunit.xml.dist
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
|
3 |
+
<phpunit backupGlobals="false" bootstrap="vendor/autoload.php" colors="true">
|
4 |
+
<testsuites>
|
5 |
+
<testsuite name="Buzz Test Suite">
|
6 |
+
<directory suffix="Test.php">./test/Buzz/</directory>
|
7 |
+
</testsuite>
|
8 |
+
</testsuites>
|
9 |
+
|
10 |
+
<php>
|
11 |
+
<!-- <server name="TEST_SERVER" value="http://localhost/buzz/test/server.php" /> -->
|
12 |
+
<!-- <server name="TEST_PROXY" value="localhost:3128" /> -->
|
13 |
+
</php>
|
14 |
+
|
15 |
+
<filter>
|
16 |
+
<whitelist>
|
17 |
+
<directory suffix=".php">./lib/Buzz/</directory>
|
18 |
+
</whitelist>
|
19 |
+
</filter>
|
20 |
+
</phpunit>
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/BrowserTest.php
ADDED
@@ -0,0 +1,182 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test;
|
4 |
+
|
5 |
+
use Buzz\Browser;
|
6 |
+
|
7 |
+
class BrowserTest extends \PHPUnit_Framework_TestCase
|
8 |
+
{
|
9 |
+
private $client;
|
10 |
+
private $factory;
|
11 |
+
private $browser;
|
12 |
+
|
13 |
+
protected function setUp()
|
14 |
+
{
|
15 |
+
$this->client = $this->getMock('Buzz\Client\ClientInterface');
|
16 |
+
$this->factory = $this->getMock('Buzz\Message\Factory\FactoryInterface');
|
17 |
+
|
18 |
+
$this->browser = new Browser($this->client, $this->factory);
|
19 |
+
}
|
20 |
+
|
21 |
+
/**
|
22 |
+
* @dataProvider provideMethods
|
23 |
+
*/
|
24 |
+
public function testBasicMethods($method, $content)
|
25 |
+
{
|
26 |
+
$request = $this->getMock('Buzz\Message\RequestInterface');
|
27 |
+
$response = $this->getMock('Buzz\Message\MessageInterface');
|
28 |
+
$headers = array('X-Foo: bar');
|
29 |
+
|
30 |
+
$this->factory->expects($this->once())
|
31 |
+
->method('createRequest')
|
32 |
+
->with(strtoupper($method))
|
33 |
+
->will($this->returnValue($request));
|
34 |
+
$request->expects($this->once())
|
35 |
+
->method('setHost')
|
36 |
+
->with('http://google.com');
|
37 |
+
$request->expects($this->once())
|
38 |
+
->method('setResource')
|
39 |
+
->with('/');
|
40 |
+
$request->expects($this->once())
|
41 |
+
->method('addHeaders')
|
42 |
+
->with($headers);
|
43 |
+
$request->expects($this->once())
|
44 |
+
->method('setContent')
|
45 |
+
->with($content);
|
46 |
+
$this->factory->expects($this->once())
|
47 |
+
->method('createResponse')
|
48 |
+
->will($this->returnValue($response));
|
49 |
+
$this->client->expects($this->once())
|
50 |
+
->method('send')
|
51 |
+
->with($request, $response);
|
52 |
+
|
53 |
+
$actual = $this->browser->$method('http://google.com/', $headers, $content);
|
54 |
+
|
55 |
+
$this->assertSame($response, $actual);
|
56 |
+
}
|
57 |
+
|
58 |
+
public function provideMethods()
|
59 |
+
{
|
60 |
+
return array(
|
61 |
+
array('get', ''),
|
62 |
+
array('head', ''),
|
63 |
+
array('post', 'content'),
|
64 |
+
array('put', 'content'),
|
65 |
+
array('delete', 'content'),
|
66 |
+
);
|
67 |
+
}
|
68 |
+
|
69 |
+
public function testSubmit()
|
70 |
+
{
|
71 |
+
$request = $this->getMock('Buzz\Message\Form\FormRequestInterface');
|
72 |
+
$response = $this->getMock('Buzz\Message\MessageInterface');
|
73 |
+
$headers = array('X-Foo: bar');
|
74 |
+
|
75 |
+
$this->factory->expects($this->once())
|
76 |
+
->method('createFormRequest')
|
77 |
+
->will($this->returnValue($request));
|
78 |
+
$request->expects($this->once())
|
79 |
+
->method('setMethod')
|
80 |
+
->with('PUT');
|
81 |
+
$request->expects($this->once())
|
82 |
+
->method('setHost')
|
83 |
+
->with('http://google.com');
|
84 |
+
$request->expects($this->once())
|
85 |
+
->method('setResource')
|
86 |
+
->with('/');
|
87 |
+
$request->expects($this->once())
|
88 |
+
->method('addHeaders')
|
89 |
+
->with($headers);
|
90 |
+
$request->expects($this->once())
|
91 |
+
->method('setFields')
|
92 |
+
->with(array('foo' => 'bar', 'bar' => 'foo'));
|
93 |
+
$this->factory->expects($this->once())
|
94 |
+
->method('createResponse')
|
95 |
+
->will($this->returnValue($response));
|
96 |
+
$this->client->expects($this->once())
|
97 |
+
->method('send')
|
98 |
+
->with($request, $response);
|
99 |
+
|
100 |
+
$actual = $this->browser->submit('http://google.com', array('foo' => 'bar', 'bar' => 'foo'), 'PUT', $headers);
|
101 |
+
|
102 |
+
$this->assertSame($response, $actual);
|
103 |
+
}
|
104 |
+
|
105 |
+
public function testListener()
|
106 |
+
{
|
107 |
+
$listener = $this->getMock('Buzz\Listener\ListenerInterface');
|
108 |
+
$request = $this->getMock('Buzz\Message\RequestInterface');
|
109 |
+
$response = $this->getMock('Buzz\Message\MessageInterface');
|
110 |
+
|
111 |
+
$listener->expects($this->once())
|
112 |
+
->method('preSend')
|
113 |
+
->with($request);
|
114 |
+
$listener->expects($this->once())
|
115 |
+
->method('postSend')
|
116 |
+
->with($request, $response);
|
117 |
+
|
118 |
+
$this->browser->setListener($listener);
|
119 |
+
$this->assertSame($listener, $this->browser->getListener());
|
120 |
+
|
121 |
+
$this->browser->send($request, $response);
|
122 |
+
}
|
123 |
+
|
124 |
+
public function testLastMessages()
|
125 |
+
{
|
126 |
+
$request = $this->getMock('Buzz\Message\RequestInterface');
|
127 |
+
$response = $this->getMock('Buzz\Message\MessageInterface');
|
128 |
+
|
129 |
+
$this->browser->send($request, $response);
|
130 |
+
|
131 |
+
$this->assertSame($request, $this->browser->getLastRequest());
|
132 |
+
$this->assertSame($response, $this->browser->getLastResponse());
|
133 |
+
}
|
134 |
+
|
135 |
+
public function testClientMethods()
|
136 |
+
{
|
137 |
+
$client = $this->getMock('Buzz\Client\ClientInterface');
|
138 |
+
$this->browser->setClient($client);
|
139 |
+
$this->assertSame($client, $this->browser->getClient());
|
140 |
+
}
|
141 |
+
|
142 |
+
public function testFactoryMethods()
|
143 |
+
{
|
144 |
+
$factory = $this->getMock('Buzz\Message\Factory\FactoryInterface');
|
145 |
+
$this->browser->setMessageFactory($factory);
|
146 |
+
$this->assertSame($factory, $this->browser->getMessageFactory());
|
147 |
+
}
|
148 |
+
|
149 |
+
public function testAddFirstListener()
|
150 |
+
{
|
151 |
+
$listener = $this->getMock('Buzz\Listener\ListenerInterface');
|
152 |
+
$this->browser->addListener($listener);
|
153 |
+
$this->assertEquals($listener, $this->browser->getListener());
|
154 |
+
}
|
155 |
+
|
156 |
+
public function testAddSecondListener()
|
157 |
+
{
|
158 |
+
$listener = $this->getMock('Buzz\Listener\ListenerInterface');
|
159 |
+
|
160 |
+
$this->browser->addListener($listener);
|
161 |
+
$this->browser->addListener($listener);
|
162 |
+
|
163 |
+
$listenerChain = $this->browser->getListener();
|
164 |
+
|
165 |
+
$this->assertInstanceOf('Buzz\Listener\ListenerChain', $listenerChain);
|
166 |
+
$this->assertEquals(2, count($listenerChain->getListeners()));
|
167 |
+
}
|
168 |
+
|
169 |
+
public function testAddThirdListener()
|
170 |
+
{
|
171 |
+
$listener = $this->getMock('Buzz\Listener\ListenerInterface');
|
172 |
+
|
173 |
+
$this->browser->addListener($listener);
|
174 |
+
$this->browser->addListener($listener);
|
175 |
+
$this->browser->addListener($listener);
|
176 |
+
|
177 |
+
$listenerChain = $this->browser->getListener();
|
178 |
+
|
179 |
+
$this->assertInstanceOf('Buzz\Listener\ListenerChain', $listenerChain);
|
180 |
+
$this->assertEquals(3, count($listenerChain->getListeners()));
|
181 |
+
}
|
182 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Client/AbstractStreamTest.php
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Client;
|
4 |
+
|
5 |
+
use Buzz\Client\AbstractStream;
|
6 |
+
use Buzz\Message\Request;
|
7 |
+
use Buzz\Message\RequestInterface;
|
8 |
+
use Buzz\Message\MessageInterface;
|
9 |
+
|
10 |
+
class StreamClient extends AbstractStream
|
11 |
+
{
|
12 |
+
public function send(RequestInterface $request, MessageInterface $response)
|
13 |
+
{
|
14 |
+
}
|
15 |
+
}
|
16 |
+
|
17 |
+
class AbstractStreamTest extends \PHPUnit_Framework_TestCase
|
18 |
+
{
|
19 |
+
public function testConvertsARequestToAContextArray()
|
20 |
+
{
|
21 |
+
$request = new Request('POST', '/resource/123', 'http://example.com');
|
22 |
+
$request->addHeader('Content-Type: application/x-www-form-urlencoded');
|
23 |
+
$request->addHeader('Content-Length: 15');
|
24 |
+
$request->setContent('foo=bar&bar=baz');
|
25 |
+
|
26 |
+
$client = new StreamClient();
|
27 |
+
$client->setMaxRedirects(5);
|
28 |
+
$client->setIgnoreErrors(false);
|
29 |
+
$client->setTimeout(10);
|
30 |
+
$expected = array(
|
31 |
+
'http' => array(
|
32 |
+
'method' => 'POST',
|
33 |
+
'header' => "Content-Type: application/x-www-form-urlencoded\r\nContent-Length: 15",
|
34 |
+
'content' => 'foo=bar&bar=baz',
|
35 |
+
'protocol_version' => 1.1,
|
36 |
+
'ignore_errors' => false,
|
37 |
+
'follow_location' => true,
|
38 |
+
'max_redirects' => 6,
|
39 |
+
'timeout' => 10,
|
40 |
+
),
|
41 |
+
'ssl' => array(
|
42 |
+
'verify_peer' => true,
|
43 |
+
'verify_host' => 2,
|
44 |
+
),
|
45 |
+
);
|
46 |
+
|
47 |
+
$this->assertEquals($expected, $client->getStreamContextArray($request));
|
48 |
+
|
49 |
+
$client->setVerifyPeer(true);
|
50 |
+
$expected['ssl']['verify_peer'] = true;
|
51 |
+
$this->assertEquals($expected, $client->getStreamContextArray($request));
|
52 |
+
|
53 |
+
$client->setMaxRedirects(0);
|
54 |
+
$expected['http']['follow_location'] = false;
|
55 |
+
$expected['http']['max_redirects'] = 1;
|
56 |
+
$this->assertEquals($expected, $client->getStreamContextArray($request));
|
57 |
+
}
|
58 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Client/ClientTest.php
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Client;
|
4 |
+
|
5 |
+
use Buzz\Message;
|
6 |
+
|
7 |
+
class ClientTest extends \PHPUnit_Framework_TestCase
|
8 |
+
{
|
9 |
+
/**
|
10 |
+
* @dataProvider provideInvalidHosts
|
11 |
+
*/
|
12 |
+
public function testSendToInvalidUrl($host, $client)
|
13 |
+
{
|
14 |
+
$this->setExpectedException('Buzz\\Exception\\ClientException');
|
15 |
+
|
16 |
+
$request = new Message\Request();
|
17 |
+
$request->fromUrl('http://'.$host.':12345');
|
18 |
+
|
19 |
+
$response = new Message\Response();
|
20 |
+
|
21 |
+
$client = new $client();
|
22 |
+
$client->setTimeout(0.05);
|
23 |
+
$client->send($request, $response);
|
24 |
+
}
|
25 |
+
|
26 |
+
public function provideInvalidHosts()
|
27 |
+
{
|
28 |
+
return array(
|
29 |
+
array('invalid_domain', 'Buzz\\Client\\Curl'),
|
30 |
+
array('invalid_domain.buzz', 'Buzz\\Client\\Curl'),
|
31 |
+
|
32 |
+
array('invalid_domain', 'Buzz\\Client\\FileGetContents'),
|
33 |
+
array('invalid_domain.buzz', 'Buzz\\Client\\FileGetContents'),
|
34 |
+
);
|
35 |
+
}
|
36 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Client/FunctionalTest.php
ADDED
@@ -0,0 +1,287 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Client;
|
4 |
+
|
5 |
+
use Buzz\Client\BatchClientInterface;
|
6 |
+
use Buzz\Client\ClientInterface;
|
7 |
+
use Buzz\Client\Curl;
|
8 |
+
use Buzz\Client\FileGetContents;
|
9 |
+
use Buzz\Client\MultiCurl;
|
10 |
+
use Buzz\Message\Form\FormRequest;
|
11 |
+
use Buzz\Message\Form\FormUpload;
|
12 |
+
use Buzz\Message\Request;
|
13 |
+
use Buzz\Message\RequestInterface;
|
14 |
+
use Buzz\Message\Response;
|
15 |
+
|
16 |
+
class FunctionalTest extends \PHPUnit_Framework_TestCase
|
17 |
+
{
|
18 |
+
protected function setUp()
|
19 |
+
{
|
20 |
+
if (!isset($_SERVER['TEST_SERVER'])) {
|
21 |
+
$this->markTestSkipped('The test server is not configured.');
|
22 |
+
}
|
23 |
+
}
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @dataProvider provideClientAndMethod
|
27 |
+
*/
|
28 |
+
public function testRequestMethods($client, $method)
|
29 |
+
{
|
30 |
+
$request = new Request($method);
|
31 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
32 |
+
$request->setContent('test');
|
33 |
+
$response = $this->send($client, $request);
|
34 |
+
|
35 |
+
$data = json_decode($response->getContent(), true);
|
36 |
+
|
37 |
+
$this->assertEquals($method, $data['SERVER']['REQUEST_METHOD']);
|
38 |
+
}
|
39 |
+
|
40 |
+
/**
|
41 |
+
* @dataProvider provideClient
|
42 |
+
*/
|
43 |
+
public function testGetContentType($client)
|
44 |
+
{
|
45 |
+
$request = new Request();
|
46 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
47 |
+
$response = $this->send($client, $request);
|
48 |
+
|
49 |
+
$data = json_decode($response->getContent(), true);
|
50 |
+
|
51 |
+
$this->assertArrayNotHasKey('CONTENT_TYPE', $data['SERVER']);
|
52 |
+
}
|
53 |
+
|
54 |
+
/**
|
55 |
+
* @dataProvider provideClient
|
56 |
+
*/
|
57 |
+
public function testFormPost($client)
|
58 |
+
{
|
59 |
+
$request = new FormRequest();
|
60 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
61 |
+
$request->setField('company[name]', 'Google');
|
62 |
+
$response = $this->send($client, $request);
|
63 |
+
|
64 |
+
$data = json_decode($response->getContent(), true);
|
65 |
+
|
66 |
+
$this->assertStringStartsWith('application/x-www-form-urlencoded', $data['SERVER']['CONTENT_TYPE']);
|
67 |
+
$this->assertEquals('Google', $data['POST']['company']['name']);
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* @dataProvider provideClient
|
72 |
+
*/
|
73 |
+
public function testFormGet($client)
|
74 |
+
{
|
75 |
+
$request = new FormRequest(FormRequest::METHOD_GET);
|
76 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
77 |
+
$request->setField('search[query]', 'cats');
|
78 |
+
$response = $this->send($client, $request);
|
79 |
+
|
80 |
+
$data = json_decode($response->getContent(), true);
|
81 |
+
|
82 |
+
$this->assertArrayNotHasKey('CONTENT_TYPE', $data['SERVER']);
|
83 |
+
$this->assertEquals('cats', $data['GET']['search']['query']);
|
84 |
+
}
|
85 |
+
|
86 |
+
/**
|
87 |
+
* @dataProvider provideClientAndUpload
|
88 |
+
*/
|
89 |
+
public function testFileUpload($client, $upload)
|
90 |
+
{
|
91 |
+
$request = new FormRequest();
|
92 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
93 |
+
$request->setField('company[name]', 'Google');
|
94 |
+
$request->setField('company[logo]', $upload);
|
95 |
+
$response = $this->send($client, $request);
|
96 |
+
|
97 |
+
$data = json_decode($response->getContent(), true);
|
98 |
+
|
99 |
+
$this->assertStringStartsWith('multipart/form-data', $data['SERVER']['CONTENT_TYPE']);
|
100 |
+
$this->assertEquals('Google', $data['POST']['company']['name']);
|
101 |
+
$this->assertEquals('google.png', $data['FILES']['company']['name']['logo']);
|
102 |
+
}
|
103 |
+
|
104 |
+
/**
|
105 |
+
* @dataProvider provideClient
|
106 |
+
*/
|
107 |
+
public function testJsonPayload($client)
|
108 |
+
{
|
109 |
+
$request = new Request(RequestInterface::METHOD_POST);
|
110 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
111 |
+
$request->addHeader('Content-Type: application/json');
|
112 |
+
$request->setContent(json_encode(array('foo' => 'bar')));
|
113 |
+
$response = $this->send($client, $request);
|
114 |
+
|
115 |
+
$data = json_decode($response->getContent(), true);
|
116 |
+
|
117 |
+
$this->assertEquals('application/json', $data['SERVER']['CONTENT_TYPE']);
|
118 |
+
$this->assertEquals('{"foo":"bar"}', $data['INPUT']);
|
119 |
+
}
|
120 |
+
|
121 |
+
/**
|
122 |
+
* @dataProvider provideClient
|
123 |
+
*/
|
124 |
+
public function testConsecutiveRequests($client)
|
125 |
+
{
|
126 |
+
// request 1
|
127 |
+
$request = new Request(RequestInterface::METHOD_PUT);
|
128 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
129 |
+
$request->addHeader('Content-Type: application/json');
|
130 |
+
$request->setContent(json_encode(array('foo' => 'bar')));
|
131 |
+
$response = $this->send($client, $request);
|
132 |
+
|
133 |
+
$data = json_decode($response->getContent(), true);
|
134 |
+
|
135 |
+
$this->assertEquals('PUT', $data['SERVER']['REQUEST_METHOD']);
|
136 |
+
$this->assertEquals('application/json', $data['SERVER']['CONTENT_TYPE']);
|
137 |
+
$this->assertEquals('{"foo":"bar"}', $data['INPUT']);
|
138 |
+
|
139 |
+
// request 2
|
140 |
+
$request = new Request(RequestInterface::METHOD_GET);
|
141 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
142 |
+
$response = $this->send($client, $request);
|
143 |
+
|
144 |
+
$data = json_decode($response->getContent(), true);
|
145 |
+
|
146 |
+
$this->assertEquals('GET', $data['SERVER']['REQUEST_METHOD']);
|
147 |
+
$this->assertEmpty($data['INPUT']);
|
148 |
+
}
|
149 |
+
|
150 |
+
/**
|
151 |
+
* @dataProvider provideClient
|
152 |
+
*/
|
153 |
+
public function testPlus($client)
|
154 |
+
{
|
155 |
+
$request = new FormRequest();
|
156 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
157 |
+
$request->setField('math', '1+1=2');
|
158 |
+
$response = $this->send($client, $request);
|
159 |
+
|
160 |
+
$data = json_decode($response->getContent(), true);
|
161 |
+
parse_str($data['INPUT'], $fields);
|
162 |
+
|
163 |
+
$this->assertEquals(array('math' => '1+1=2'), $fields);
|
164 |
+
}
|
165 |
+
|
166 |
+
/**
|
167 |
+
* @dataProvider provideClient
|
168 |
+
*/
|
169 |
+
public function testRedirectedResponse($client)
|
170 |
+
{
|
171 |
+
$request = new Request();
|
172 |
+
$request->fromUrl($_SERVER['TEST_SERVER'].'?redirect_to='.$_SERVER['TEST_SERVER']);
|
173 |
+
$response = $this->send($client, $request);
|
174 |
+
|
175 |
+
$headers = $response->getHeaders();
|
176 |
+
$this->assertContains('200', $headers[0]);
|
177 |
+
}
|
178 |
+
|
179 |
+
/**
|
180 |
+
* @dataProvider provideClient
|
181 |
+
*/
|
182 |
+
public function testProxy($client)
|
183 |
+
{
|
184 |
+
if (!isset($_SERVER['TEST_PROXY'])) {
|
185 |
+
$this->markTestSkipped('The proxy server is not configured.');
|
186 |
+
}
|
187 |
+
|
188 |
+
$client->setProxy($_SERVER['TEST_PROXY']);
|
189 |
+
|
190 |
+
$request = new Request();
|
191 |
+
$request->fromUrl($_SERVER['TEST_SERVER']);
|
192 |
+
$response = $this->send($client, $request);
|
193 |
+
|
194 |
+
$data = json_decode($response->getContent(), true);
|
195 |
+
$this->assertArrayHasKey('HTTP_VIA', $data['SERVER']);
|
196 |
+
}
|
197 |
+
|
198 |
+
/**
|
199 |
+
* @expectedException RuntimeException
|
200 |
+
* @expectedExceptionMessage Protocol pop3 not supported or disabled in libcurl
|
201 |
+
*/
|
202 |
+
public function testRedirectedToForbiddenProtocol()
|
203 |
+
{
|
204 |
+
$client = new Curl();
|
205 |
+
$request = new Request();
|
206 |
+
$request->fromUrl($_SERVER['TEST_SERVER'].'?redirect_to=pop3://localhost/');
|
207 |
+
$response = $this->send($client, $request);
|
208 |
+
}
|
209 |
+
|
210 |
+
public function testMultiCurlExecutesRequestsConcurently()
|
211 |
+
{
|
212 |
+
$client = new MultiCurl();
|
213 |
+
$client->setTimeout(10);
|
214 |
+
|
215 |
+
$calls = array();
|
216 |
+
$callback = function($client, $request, $response, $options, $error) use(&$calls) {
|
217 |
+
$calls[] = func_get_args();
|
218 |
+
};
|
219 |
+
|
220 |
+
for ($i = 3; $i > 0; $i--) {
|
221 |
+
$request = new Request();
|
222 |
+
$request->fromUrl($_SERVER['TEST_SERVER'].'?delay='.$i);
|
223 |
+
$client->send($request, new Response(), array('callback' => $callback));
|
224 |
+
}
|
225 |
+
|
226 |
+
$client->flush();
|
227 |
+
$this->assertCount(3, $calls);
|
228 |
+
}
|
229 |
+
|
230 |
+
public function provideClient()
|
231 |
+
{
|
232 |
+
return array(
|
233 |
+
array(new Curl()),
|
234 |
+
array(new FileGetContents()),
|
235 |
+
array(new MultiCurl()),
|
236 |
+
);
|
237 |
+
}
|
238 |
+
|
239 |
+
public function provideClientAndMethod()
|
240 |
+
{
|
241 |
+
// HEAD is intentionally omitted
|
242 |
+
// http://stackoverflow.com/questions/2603104/does-mod-php-honor-head-requests-properly
|
243 |
+
|
244 |
+
$methods = array('GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'OPTIONS');
|
245 |
+
$clients = $this->provideClient();
|
246 |
+
|
247 |
+
$data = array();
|
248 |
+
foreach ($clients as $client) {
|
249 |
+
foreach ($methods as $method) {
|
250 |
+
$data[] = array($client[0], $method);
|
251 |
+
}
|
252 |
+
}
|
253 |
+
|
254 |
+
return $data;
|
255 |
+
}
|
256 |
+
|
257 |
+
public function provideClientAndUpload()
|
258 |
+
{
|
259 |
+
$stringUpload = new FormUpload();
|
260 |
+
$stringUpload->setFilename('google.png');
|
261 |
+
$stringUpload->setContent(file_get_contents(__DIR__.'/../Message/Fixtures/google.png'));
|
262 |
+
|
263 |
+
$uploads = array($stringUpload, new FormUpload(__DIR__.'/../Message/Fixtures/google.png'));
|
264 |
+
$clients = $this->provideClient();
|
265 |
+
|
266 |
+
$data = array();
|
267 |
+
foreach ($clients as $client) {
|
268 |
+
foreach ($uploads as $upload) {
|
269 |
+
$data[] = array($client[0], $upload);
|
270 |
+
}
|
271 |
+
}
|
272 |
+
|
273 |
+
return $data;
|
274 |
+
}
|
275 |
+
|
276 |
+
private function send(ClientInterface $client, RequestInterface $request)
|
277 |
+
{
|
278 |
+
$response = new Response();
|
279 |
+
$client->send($request, $response);
|
280 |
+
|
281 |
+
if ($client instanceof BatchClientInterface) {
|
282 |
+
$client->flush();
|
283 |
+
}
|
284 |
+
|
285 |
+
return $response;
|
286 |
+
}
|
287 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/BasicAuthListenerTest.php
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Listener;
|
4 |
+
|
5 |
+
use Buzz\Listener\BasicAuthListener;
|
6 |
+
use Buzz\Message;
|
7 |
+
|
8 |
+
class BasicAuthListenerTest extends \PHPUnit_Framework_TestCase
|
9 |
+
{
|
10 |
+
public function testBasicAuthHeader()
|
11 |
+
{
|
12 |
+
$request = new Message\Request();
|
13 |
+
$this->assertEmpty($request->getHeader('Authorization'));
|
14 |
+
|
15 |
+
$listener = new BasicAuthListener('foo', 'bar');
|
16 |
+
$listener->preSend($request);
|
17 |
+
|
18 |
+
$this->assertEquals('Basic '.base64_encode('foo:bar'), $request->getHeader('Authorization'));
|
19 |
+
}
|
20 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/CallbackListenerTest.php
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Listener;
|
4 |
+
|
5 |
+
use Buzz\Listener\CallbackListener;
|
6 |
+
use Buzz\Message;
|
7 |
+
|
8 |
+
class CallbackListenerTest extends \PHPUnit_Framework_TestCase
|
9 |
+
{
|
10 |
+
public function testCallback()
|
11 |
+
{
|
12 |
+
$calls = array();
|
13 |
+
$listener = new CallbackListener(function() use (& $calls) {
|
14 |
+
$calls[] = func_get_args();
|
15 |
+
});
|
16 |
+
|
17 |
+
$request = new Message\Request();
|
18 |
+
$response = new Message\Response();
|
19 |
+
|
20 |
+
$listener->preSend($request);
|
21 |
+
$listener->postSend($request, $response);
|
22 |
+
|
23 |
+
$this->assertEquals(array(
|
24 |
+
array($request),
|
25 |
+
array($request, $response),
|
26 |
+
), $calls);
|
27 |
+
}
|
28 |
+
|
29 |
+
public function testInvalidCallback()
|
30 |
+
{
|
31 |
+
$this->setExpectedException('Buzz\Exception\InvalidArgumentException');
|
32 |
+
$listener = new CallbackListener(array(1, 2, 3));
|
33 |
+
}
|
34 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/DigestAuthListenerTest.php
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Listener;
|
4 |
+
|
5 |
+
use Buzz\Listener\DigestAuthListener;
|
6 |
+
use Buzz\Message;
|
7 |
+
|
8 |
+
class DigestAuthListenerTest extends \PHPUnit_Framework_TestCase
|
9 |
+
{
|
10 |
+
public function testDigestAuthHeader()
|
11 |
+
{
|
12 |
+
$request = new Message\Request();
|
13 |
+
$request->setMethod('GET');
|
14 |
+
$request->setResource('/auth-digest');
|
15 |
+
$request->setHost('http://test.webdav.org');
|
16 |
+
$request->setProtocolVersion('1.1');
|
17 |
+
|
18 |
+
$response = new Message\Response();
|
19 |
+
$response->setHeaders(array(
|
20 |
+
"Date: Wed, 24 Jun 2015 21:49:39 GMT",
|
21 |
+
"Server: Apache/2.0.54 (Debian GNU/Linux) DAV/2 SVN/1.3.2",
|
22 |
+
"WWW-Authenticate: Digest realm=\"test\", nonce=\"5PvRe0oZBQA=874ad6aea3519069f30dfc704e594dde6e01b2a6\", algorithm=MD5, domain=\"/auth-digest/\", qop=\"auth\"",
|
23 |
+
"Content-Length: 401",
|
24 |
+
"Content-Type: text/html; charset=iso-8859-1"
|
25 |
+
));
|
26 |
+
$response->setContent("<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">
|
27 |
+
<html><head>
|
28 |
+
<title>401 Authorization Required</title>
|
29 |
+
</head><body>
|
30 |
+
<h1>Authorization Required</h1>
|
31 |
+
<p>This server could not verify that you
|
32 |
+
are authorized to access the document
|
33 |
+
requested. Either you supplied the wrong
|
34 |
+
credentials (e.g., bad password), or your
|
35 |
+
browser doesn\'t understand how to supply
|
36 |
+
the credentials required.</p>
|
37 |
+
</body></html>");
|
38 |
+
|
39 |
+
// Simulate the First Request/Response, where the server returns 401
|
40 |
+
$listener = new DigestAuthListener('user1', 'user1');
|
41 |
+
$listener->preSend($request);
|
42 |
+
$listener->postSend($request, $response);
|
43 |
+
|
44 |
+
// Simulate sending the second Request using the calculated Authorization Header
|
45 |
+
$request = new Message\Request();
|
46 |
+
$request->setMethod('GET');
|
47 |
+
$request->setResource('/auth-digest');
|
48 |
+
$request->setHost('http://test.webdav.org');
|
49 |
+
$request->setProtocolVersion('1.1');
|
50 |
+
|
51 |
+
$this->assertEmpty($request->getHeader('Authorization'));
|
52 |
+
|
53 |
+
$listener->preSend($request);
|
54 |
+
|
55 |
+
$this->assertEquals(
|
56 |
+
'Digest username="user1", realm="test", nonce="5PvRe0oZBQA=874ad6aea3519069f30dfc704e594dde6e01b2a6", response="b2cf05a5d3f51d84a8866309aed6cb5d", uri="/auth-digest"',
|
57 |
+
$request->getHeader('Authorization')
|
58 |
+
);
|
59 |
+
}
|
60 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/History/EntryTest.php
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\History;
|
4 |
+
|
5 |
+
use Buzz\Listener\History\Entry;
|
6 |
+
use Buzz\Message;
|
7 |
+
|
8 |
+
class EntryTest extends \PHPUnit_Framework_TestCase
|
9 |
+
{
|
10 |
+
public function testDuration()
|
11 |
+
{
|
12 |
+
$entry = new Entry(new Message\Request(), new Message\Response(), 123);
|
13 |
+
$this->assertEquals(123, $entry->getDuration());
|
14 |
+
}
|
15 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/History/JournalTest.php
ADDED
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\History;
|
4 |
+
|
5 |
+
use Buzz\Listener\History\Journal;
|
6 |
+
use Buzz\Message;
|
7 |
+
|
8 |
+
class JournalTest extends \PHPUnit_Framework_TestCase
|
9 |
+
{
|
10 |
+
protected $request1;
|
11 |
+
protected $request2;
|
12 |
+
protected $request3;
|
13 |
+
|
14 |
+
protected $response1;
|
15 |
+
protected $response2;
|
16 |
+
protected $response3;
|
17 |
+
|
18 |
+
protected function setUp()
|
19 |
+
{
|
20 |
+
$this->request1 = new Message\Request();
|
21 |
+
$this->request1->setContent('request1');
|
22 |
+
$this->request2 = new Message\Request();
|
23 |
+
$this->request2->setContent('request2');
|
24 |
+
$this->request3 = new Message\Request();
|
25 |
+
$this->request3->setContent('request3');
|
26 |
+
|
27 |
+
$this->response1 = new Message\Response();
|
28 |
+
$this->response1->setContent('response1');
|
29 |
+
$this->response2 = new Message\Response();
|
30 |
+
$this->response2->setContent('response2');
|
31 |
+
$this->response3 = new Message\Response();
|
32 |
+
$this->response3->setContent('response3');
|
33 |
+
}
|
34 |
+
|
35 |
+
protected function tearDown()
|
36 |
+
{
|
37 |
+
$this->request1 = null;
|
38 |
+
$this->request2 = null;
|
39 |
+
$this->request3 = null;
|
40 |
+
|
41 |
+
$this->response1 = null;
|
42 |
+
$this->response2 = null;
|
43 |
+
$this->response3 = null;
|
44 |
+
}
|
45 |
+
|
46 |
+
public function testRecordEnforcesLimit()
|
47 |
+
{
|
48 |
+
$journal = new Journal();
|
49 |
+
$journal->setLimit(2);
|
50 |
+
|
51 |
+
$journal->record($this->request1, $this->response1);
|
52 |
+
$journal->record($this->request2, $this->response2);
|
53 |
+
$journal->record($this->request3, $this->response3);
|
54 |
+
|
55 |
+
$this->assertEquals(2, count($journal));
|
56 |
+
}
|
57 |
+
|
58 |
+
public function testGetLastReturnsTheLastEntry()
|
59 |
+
{
|
60 |
+
$journal = new Journal();
|
61 |
+
|
62 |
+
$journal->record($this->request1, $this->response1);
|
63 |
+
$journal->record($this->request2, $this->response2);
|
64 |
+
|
65 |
+
$this->assertEquals($this->request2, $journal->getLast()->getRequest());
|
66 |
+
|
67 |
+
return $journal;
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* @depends testGetLastReturnsTheLastEntry
|
72 |
+
*/
|
73 |
+
public function testGetLastRequestReturnsTheLastRequest(Journal $journal)
|
74 |
+
{
|
75 |
+
$this->assertEquals($this->request2, $journal->getLastRequest());
|
76 |
+
}
|
77 |
+
|
78 |
+
/**
|
79 |
+
* @depends testGetLastReturnsTheLastEntry
|
80 |
+
*/
|
81 |
+
public function testGetLastResponseReturnsTheLastResponse(Journal $journal)
|
82 |
+
{
|
83 |
+
$this->assertEquals($this->response2, $journal->getLastResponse());
|
84 |
+
}
|
85 |
+
|
86 |
+
/**
|
87 |
+
* @depends testGetLastReturnsTheLastEntry
|
88 |
+
*/
|
89 |
+
public function testClearRemovesEntries(Journal $journal)
|
90 |
+
{
|
91 |
+
$journal->clear();
|
92 |
+
$this->assertEquals(0, count($journal));
|
93 |
+
}
|
94 |
+
|
95 |
+
/**
|
96 |
+
* @depends testGetLastReturnsTheLastEntry
|
97 |
+
*/
|
98 |
+
public function testForeachIteratesReversedEntries(Journal $journal)
|
99 |
+
{
|
100 |
+
$requests = array($this->request2, $this->request1);
|
101 |
+
$responses = array($this->response2, $this->response1);
|
102 |
+
|
103 |
+
foreach ($journal as $index => $entry) {
|
104 |
+
$this->assertEquals($requests[$index], $entry->getRequest());
|
105 |
+
$this->assertEquals($responses[$index], $entry->getResponse());
|
106 |
+
}
|
107 |
+
}
|
108 |
+
|
109 |
+
/**
|
110 |
+
* @depends testGetLastReturnsTheLastEntry
|
111 |
+
*/
|
112 |
+
public function testDuration()
|
113 |
+
{
|
114 |
+
$journal = new Journal();
|
115 |
+
$journal->record($this->request1, $this->response1, 100);
|
116 |
+
|
117 |
+
$this->assertEquals($journal->getLast()->getDuration(), 100);
|
118 |
+
}
|
119 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/HistoryListenerTest.php
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Listener;
|
4 |
+
|
5 |
+
use Buzz\Listener\HistoryListener;
|
6 |
+
use Buzz\Message;
|
7 |
+
|
8 |
+
class HistoryListenerTest extends \PHPUnit_Framework_TestCase
|
9 |
+
{
|
10 |
+
private $journal;
|
11 |
+
private $listener;
|
12 |
+
|
13 |
+
protected function setUp()
|
14 |
+
{
|
15 |
+
$this->journal = $this->getMockBuilder('Buzz\Listener\History\Journal')
|
16 |
+
->disableOriginalConstructor()
|
17 |
+
->getMock();
|
18 |
+
|
19 |
+
$this->listener = new HistoryListener($this->journal);
|
20 |
+
}
|
21 |
+
|
22 |
+
public function testHistory()
|
23 |
+
{
|
24 |
+
$request = new Message\Request();
|
25 |
+
$response = new Message\Response();
|
26 |
+
|
27 |
+
$this->journal->expects($this->once())
|
28 |
+
->method('record')
|
29 |
+
->with($request, $response, $this->isType('float'));
|
30 |
+
|
31 |
+
$this->listener->preSend($request);
|
32 |
+
$this->listener->postSend($request, $response);
|
33 |
+
}
|
34 |
+
|
35 |
+
public function testGetter()
|
36 |
+
{
|
37 |
+
$this->assertSame($this->journal, $this->listener->getJournal());
|
38 |
+
}
|
39 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/ListenerChainTest.php
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Listener;
|
4 |
+
|
5 |
+
use Buzz\Listener\ListenerChain;
|
6 |
+
use Buzz\Message;
|
7 |
+
|
8 |
+
class ListenerChainTest extends \PHPUnit_Framework_TestCase
|
9 |
+
{
|
10 |
+
public function testListeners()
|
11 |
+
{
|
12 |
+
$listener = new ListenerChain(array($this->getMock('Buzz\Listener\ListenerInterface')));
|
13 |
+
$this->assertEquals(1, count($listener->getListeners()));
|
14 |
+
|
15 |
+
$listener->addListener($this->getMock('Buzz\Listener\ListenerInterface'));
|
16 |
+
$this->assertEquals(2, count($listener->getListeners()));
|
17 |
+
}
|
18 |
+
|
19 |
+
public function testChain()
|
20 |
+
{
|
21 |
+
$delegate = $this->getMock('Buzz\Listener\ListenerInterface');
|
22 |
+
$request = new Message\Request();
|
23 |
+
$response = new Message\Response();
|
24 |
+
|
25 |
+
$delegate->expects($this->once())
|
26 |
+
->method('preSend')
|
27 |
+
->with($request);
|
28 |
+
$delegate->expects($this->once())
|
29 |
+
->method('postSend')
|
30 |
+
->with($request, $response);
|
31 |
+
|
32 |
+
$listener = new ListenerChain(array($delegate));
|
33 |
+
$listener->preSend($request);
|
34 |
+
$listener->postSend($request, $response);
|
35 |
+
}
|
36 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Listener/LoggerListenerTest.php
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Listener;
|
4 |
+
|
5 |
+
use Buzz\Listener\LoggerListener;
|
6 |
+
use Buzz\Message;
|
7 |
+
|
8 |
+
class LoggerListenerTest extends \PHPUnit_Framework_TestCase
|
9 |
+
{
|
10 |
+
public function testLogger()
|
11 |
+
{
|
12 |
+
$test = $this;
|
13 |
+
$logger = function($line) use ($test) {
|
14 |
+
$test->assertRegExp('~^Sent "GET http://google.com/" in \d+ms$~', $line);
|
15 |
+
};
|
16 |
+
|
17 |
+
$request = new Message\Request();
|
18 |
+
$request->fromUrl('http://google.com/');
|
19 |
+
$response = new Message\Response();
|
20 |
+
|
21 |
+
$listener = new LoggerListener($logger);
|
22 |
+
$listener->preSend($request);
|
23 |
+
$listener->postSend($request, $response);
|
24 |
+
}
|
25 |
+
|
26 |
+
public function testInvalidLogger()
|
27 |
+
{
|
28 |
+
$this->setExpectedException('Buzz\Exception\InvalidArgumentException');
|
29 |
+
$listener = new LoggerListener(array(1, 2, 3));
|
30 |
+
}
|
31 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/AbstractMessageTest.php
ADDED
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Message;
|
4 |
+
|
5 |
+
use Buzz\Message\AbstractMessage;
|
6 |
+
|
7 |
+
class Message extends AbstractMessage
|
8 |
+
{
|
9 |
+
}
|
10 |
+
|
11 |
+
class AbstractMessageTest extends \PHPUnit_Framework_TestCase
|
12 |
+
{
|
13 |
+
public function testGetHeaderGluesHeadersTogether()
|
14 |
+
{
|
15 |
+
$message = new Message();
|
16 |
+
$message->addHeader('X-My-Header: foo');
|
17 |
+
$message->addHeader('X-My-Header: bar');
|
18 |
+
|
19 |
+
$this->assertEquals('foo'."\r\n".'bar', $message->getHeader('X-My-Header'));
|
20 |
+
$this->assertEquals('foo,bar', $message->getHeader('X-My-Header', ','));
|
21 |
+
$this->assertEquals(array('foo', 'bar'), $message->getHeader('X-My-Header', false));
|
22 |
+
}
|
23 |
+
|
24 |
+
public function testGetHeaderReturnsNullIfHeaderDoesNotExist()
|
25 |
+
{
|
26 |
+
$message = new Message();
|
27 |
+
|
28 |
+
$this->assertNull($message->getHeader('X-Nonexistant'));
|
29 |
+
}
|
30 |
+
|
31 |
+
public function testGetHeaderIsCaseInsensitive()
|
32 |
+
{
|
33 |
+
$message = new Message();
|
34 |
+
$message->addHeader('X-zomg: test');
|
35 |
+
|
36 |
+
$this->assertEquals('test', $message->getHeader('X-ZOMG'));
|
37 |
+
}
|
38 |
+
|
39 |
+
public function testToStringFormatsTheMessage()
|
40 |
+
{
|
41 |
+
$message = new Message();
|
42 |
+
$message->addHeader('Foo: Bar');
|
43 |
+
$message->setContent('==CONTENT==');
|
44 |
+
|
45 |
+
$expected = "Foo: Bar\r\n\r\n==CONTENT==\r\n";
|
46 |
+
|
47 |
+
$this->assertEquals($expected, (string) $message);
|
48 |
+
}
|
49 |
+
|
50 |
+
public function testGetHeaderAttributesReturnsHeaderAttributes()
|
51 |
+
{
|
52 |
+
$message = new Message();
|
53 |
+
$message->addHeader('Content-Type: text/xml; charset=utf8');
|
54 |
+
|
55 |
+
$this->assertEquals('utf8', $message->getHeaderAttribute('Content-Type', 'charset'));
|
56 |
+
}
|
57 |
+
|
58 |
+
public function testGetNotFoundHeaderAttribute()
|
59 |
+
{
|
60 |
+
$message = new Message();
|
61 |
+
$this->assertNull($message->getHeaderAttribute('Content-Type', 'charset'));
|
62 |
+
}
|
63 |
+
|
64 |
+
public function testAddHeaders()
|
65 |
+
{
|
66 |
+
$message = new Message();
|
67 |
+
$message->addHeaders(array('Content-Type: text/xml; charset=utf8', 'Foo' => 'test'));
|
68 |
+
$message->addHeaders(array('Test' => 'foo', 'Foo' => 'test'));
|
69 |
+
|
70 |
+
$expected = array('Content-Type: text/xml; charset=utf8', 'Foo: test', 'Test: foo', 'Foo: test');
|
71 |
+
$this->assertEquals($expected, $message->getHeaders());
|
72 |
+
}
|
73 |
+
|
74 |
+
public function testSetHeaders()
|
75 |
+
{
|
76 |
+
$message = new Message();
|
77 |
+
$message->setHeaders(array('Content-Type: text/xml; charset=utf8', 'Foo' => 'test'));
|
78 |
+
$message->setHeaders(array('Test: foo', 'Foo' => 'test'));
|
79 |
+
|
80 |
+
$expected = array('Test: foo', 'Foo: test');
|
81 |
+
$this->assertEquals($expected, $message->getHeaders());
|
82 |
+
}
|
83 |
+
|
84 |
+
public function testToDomDocumentWithContentTypeTextXmlReturnsDomDocument()
|
85 |
+
{
|
86 |
+
$message = new Message();
|
87 |
+
|
88 |
+
$message->setHeaders(array('Content-Type: text/xml'));
|
89 |
+
$message->setContent('<foo><bar></bar></foo>');
|
90 |
+
$this->assertInstanceOf('DOMDocument', $message->toDomDocument());
|
91 |
+
}
|
92 |
+
|
93 |
+
public function testToDomDocumentWithContentTypeTextHtmlReturnsDomDocument()
|
94 |
+
{
|
95 |
+
$message = new Message();
|
96 |
+
|
97 |
+
$message->setHeaders(array('Content-Type: text/html'));
|
98 |
+
$message->setContent('<foo><bar></bar></foo>');
|
99 |
+
$this->assertInstanceOf('DOMDocument', $message->toDomDocument());
|
100 |
+
}
|
101 |
+
|
102 |
+
public function testToDomDocumentWithContentTypeTextXmlReturnsXmlString()
|
103 |
+
{
|
104 |
+
$message = new Message();
|
105 |
+
$expected = <<<XML
|
106 |
+
<?xml version="1.0"?>
|
107 |
+
<foo><bar/></foo>
|
108 |
+
|
109 |
+
XML;
|
110 |
+
|
111 |
+
$message->setHeaders(array('Content-Type: text/xml'));
|
112 |
+
$message->setContent('<foo><bar></bar></foo>');
|
113 |
+
$this->assertEquals($expected, $message->toDomDocument()->saveXML());
|
114 |
+
}
|
115 |
+
|
116 |
+
public function testToDomDocumentWithContentTypeTextHTMLReturnsHTMLString()
|
117 |
+
{
|
118 |
+
$message = new Message();
|
119 |
+
$expected = <<<HTML
|
120 |
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
121 |
+
<html><body><foo><bar></bar></foo></body></html>
|
122 |
+
|
123 |
+
HTML;
|
124 |
+
|
125 |
+
$message->setHeaders(array('Content-Type: text/html'));
|
126 |
+
$message->setContent('<foo><bar></bar></foo>');
|
127 |
+
$this->assertEquals($expected, $message->toDomDocument()->saveHTML());
|
128 |
+
}
|
129 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/FactoryTest.php
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Message;
|
4 |
+
|
5 |
+
use Buzz\Message\Factory\Factory;
|
6 |
+
use Buzz\Message\Request;
|
7 |
+
use Buzz\Message\RequestInterface;
|
8 |
+
|
9 |
+
class FactoryTest extends \PHPUnit_Framework_TestCase
|
10 |
+
{
|
11 |
+
private $factory;
|
12 |
+
|
13 |
+
protected function setUp()
|
14 |
+
{
|
15 |
+
$this->factory = new Factory();
|
16 |
+
}
|
17 |
+
|
18 |
+
public function testCreateRequestDefaults()
|
19 |
+
{
|
20 |
+
$request = $this->factory->createRequest();
|
21 |
+
|
22 |
+
$this->assertInstanceOf('Buzz\Message\Request', $request);
|
23 |
+
$this->assertEquals(RequestInterface::METHOD_GET, $request->getMethod());
|
24 |
+
$this->assertEquals('/', $request->getResource());
|
25 |
+
$this->assertNull($request->getHost());
|
26 |
+
}
|
27 |
+
|
28 |
+
public function testCreateRequestArguments()
|
29 |
+
{
|
30 |
+
$request = $this->factory->createRequest(RequestInterface::METHOD_POST, '/foo', 'http://example.com');
|
31 |
+
|
32 |
+
$this->assertEquals(RequestInterface::METHOD_POST, $request->getMethod());
|
33 |
+
$this->assertEquals('/foo', $request->getResource());
|
34 |
+
$this->assertEquals('http://example.com', $request->getHost());
|
35 |
+
}
|
36 |
+
|
37 |
+
public function testCreateFormRequestDefaults()
|
38 |
+
{
|
39 |
+
$request = $this->factory->createFormRequest();
|
40 |
+
|
41 |
+
$this->assertInstanceOf('Buzz\Message\Form\FormRequest', $request);
|
42 |
+
$this->assertEquals(RequestInterface::METHOD_POST, $request->getMethod());
|
43 |
+
$this->assertEquals('/', $request->getResource());
|
44 |
+
$this->assertNull($request->getHost());
|
45 |
+
}
|
46 |
+
|
47 |
+
public function testCreateFormRequestArguments()
|
48 |
+
{
|
49 |
+
$request = $this->factory->createFormRequest(RequestInterface::METHOD_PUT, '/foo', 'http://example.com');
|
50 |
+
|
51 |
+
$this->assertInstanceOf('Buzz\Message\Form\FormRequest', $request);
|
52 |
+
$this->assertEquals(RequestInterface::METHOD_PUT, $request->getMethod());
|
53 |
+
$this->assertEquals('/foo', $request->getResource());
|
54 |
+
$this->assertEquals('http://example.com', $request->getHost());
|
55 |
+
}
|
56 |
+
|
57 |
+
public function testCreateResponse()
|
58 |
+
{
|
59 |
+
$this->assertInstanceOf('Buzz\Message\Response', $this->factory->createResponse());
|
60 |
+
}
|
61 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/Fixtures/google.png
ADDED
Binary file
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/FormRequestTest.php
ADDED
@@ -0,0 +1,137 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Message;
|
4 |
+
|
5 |
+
use Buzz\Message\Form\FormRequest;
|
6 |
+
use Buzz\Message\Form\FormUpload;
|
7 |
+
|
8 |
+
/**
|
9 |
+
* FormRequestTest
|
10 |
+
*
|
11 |
+
* @author Marc Weistroff <marc.weistroff@sensio.com>
|
12 |
+
*/
|
13 |
+
class FormRequestTest extends \PHPUnit_Framework_TestCase
|
14 |
+
{
|
15 |
+
public function testGetContentGeneratesContent()
|
16 |
+
{
|
17 |
+
$message = new FormRequest();
|
18 |
+
$message->setField('foo', 'bar');
|
19 |
+
$message->setField('bar', 'foo');
|
20 |
+
|
21 |
+
$expected = "foo=bar&bar=foo";
|
22 |
+
$this->assertEquals($expected, $message->getContent());
|
23 |
+
}
|
24 |
+
|
25 |
+
public function testGetContentGeneratesContentWithCustomArgSeparatorOutput()
|
26 |
+
{
|
27 |
+
|
28 |
+
$argSeparatorOutput = ini_get('arg_separator.output');
|
29 |
+
ini_set('arg_separator.output', '&');
|
30 |
+
|
31 |
+
$message = new FormRequest();
|
32 |
+
$message->setField('foo', 'bar');
|
33 |
+
$message->setField('bar', 'foo');
|
34 |
+
|
35 |
+
$expected = "foo=bar&bar=foo";
|
36 |
+
$this->assertEquals($expected, $message->getContent());
|
37 |
+
|
38 |
+
ini_set('arg_separator.output', $argSeparatorOutput);
|
39 |
+
}
|
40 |
+
|
41 |
+
|
42 |
+
public function testAddDataAddsData()
|
43 |
+
{
|
44 |
+
$message = new FormRequest();
|
45 |
+
$message->setField('foo', 'bar');
|
46 |
+
|
47 |
+
$this->assertEquals(array('foo' => 'bar'), $message->getFields());
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* @expectedException \BadMethodCallException
|
52 |
+
*/
|
53 |
+
public function testSetContentIsNotPermitted()
|
54 |
+
{
|
55 |
+
$message = new FormRequest();
|
56 |
+
$message->setContent('foobar');
|
57 |
+
}
|
58 |
+
|
59 |
+
public function testSetFields()
|
60 |
+
{
|
61 |
+
$request = new FormRequest();
|
62 |
+
$request->setFields(array('foo' => 'bar'));
|
63 |
+
$this->assertEquals(array('foo' => 'bar'), $request->getFields());
|
64 |
+
}
|
65 |
+
|
66 |
+
public function testContentType()
|
67 |
+
{
|
68 |
+
$request = new FormRequest();
|
69 |
+
$this->assertEquals('application/x-www-form-urlencoded', $request->getHeader('Content-Type'));
|
70 |
+
}
|
71 |
+
|
72 |
+
public function testDeepArray()
|
73 |
+
{
|
74 |
+
$request = new FormRequest();
|
75 |
+
$request->setField('person', array('fname' => 'John', 'lname' => 'Doe'));
|
76 |
+
|
77 |
+
$this->assertEquals('person%5Bfname%5D=John&person%5Blname%5D=Doe', $request->getContent());
|
78 |
+
}
|
79 |
+
|
80 |
+
public function testFieldPush()
|
81 |
+
{
|
82 |
+
$request = new FormRequest();
|
83 |
+
$request->setField('colors[]', 'red');
|
84 |
+
$request->setField('colors[]', 'blue');
|
85 |
+
|
86 |
+
$this->assertEquals('colors%5B0%5D=red&colors%5B1%5D=blue', $request->getContent());
|
87 |
+
}
|
88 |
+
|
89 |
+
public function testMultipartHeaders()
|
90 |
+
{
|
91 |
+
$request = new FormRequest();
|
92 |
+
$request->setField('foo', array('bar' => new FormUpload()));
|
93 |
+
|
94 |
+
$headers = $request->getHeaders();
|
95 |
+
|
96 |
+
$this->assertStringStartsWith('Content-Type: multipart/form-data; boundary=', $headers[0]);
|
97 |
+
}
|
98 |
+
|
99 |
+
public function testMultipartContent()
|
100 |
+
{
|
101 |
+
$upload = new FormUpload();
|
102 |
+
$upload->setFilename('image.jpg');
|
103 |
+
$upload->setContent('foobar');
|
104 |
+
|
105 |
+
$request = new FormRequest();
|
106 |
+
$request->setField('user[name]', 'Kris');
|
107 |
+
$request->setField('user[image]', $upload);
|
108 |
+
|
109 |
+
$content = $request->getContent();
|
110 |
+
|
111 |
+
$this->assertContains("Content-Disposition: form-data; name=\"user[name]\"\r\n\r\nKris\r\n", $content);
|
112 |
+
$this->assertContains("Content-Disposition: form-data; name=\"user[image]\"; filename=\"image.jpg\"\r\nContent-Type: text/plain\r\n\r\nfoobar\r\n", $content);
|
113 |
+
}
|
114 |
+
|
115 |
+
public function testFilenamelessUpload()
|
116 |
+
{
|
117 |
+
$this->setExpectedException('LogicException');
|
118 |
+
|
119 |
+
$upload = new FormUpload();
|
120 |
+
$upload->setContent('foobar');
|
121 |
+
|
122 |
+
$request = new FormRequest();
|
123 |
+
$request->setField('user[name]', 'Kris');
|
124 |
+
$request->setField('user[image]', $upload);
|
125 |
+
|
126 |
+
$content = $request->getContent();
|
127 |
+
}
|
128 |
+
|
129 |
+
public function testGetRequest()
|
130 |
+
{
|
131 |
+
$request = new FormRequest(FormRequest::METHOD_GET, '/search');
|
132 |
+
$request->setField('q', 'cats');
|
133 |
+
|
134 |
+
$this->assertEquals('/search?q=cats', $request->getResource());
|
135 |
+
$this->assertEmpty($request->getContent());
|
136 |
+
}
|
137 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/FormUploadTest.php
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Message;
|
4 |
+
|
5 |
+
use Buzz\Message\Form\FormUpload;
|
6 |
+
|
7 |
+
class FormUploadTest extends \PHPUnit_Framework_TestCase
|
8 |
+
{
|
9 |
+
public function testStringContent()
|
10 |
+
{
|
11 |
+
$upload = new FormUpload();
|
12 |
+
$upload->setName('company[logo]');
|
13 |
+
$upload->setFilename('google.png');
|
14 |
+
$upload->setContent(file_get_contents(__DIR__.'/Fixtures/google.png'));
|
15 |
+
|
16 |
+
$this->assertEquals(array(
|
17 |
+
'Content-Disposition: form-data; name="company[logo]"; filename="google.png"',
|
18 |
+
'Content-Type: image/png',
|
19 |
+
), $upload->getHeaders());
|
20 |
+
}
|
21 |
+
|
22 |
+
public function testFileContent()
|
23 |
+
{
|
24 |
+
$upload = new FormUpload(__DIR__.'/Fixtures/google.png');
|
25 |
+
$upload->setName('company[logo]');
|
26 |
+
|
27 |
+
$this->assertEquals(array(
|
28 |
+
'Content-Disposition: form-data; name="company[logo]"; filename="google.png"',
|
29 |
+
'Content-Type: image/png',
|
30 |
+
), $upload->getHeaders());
|
31 |
+
}
|
32 |
+
|
33 |
+
public function testContentType()
|
34 |
+
{
|
35 |
+
$upload = new FormUpload(__DIR__.'/Fixtures/google.png');
|
36 |
+
$upload->setName('company[logo]');
|
37 |
+
$upload->setContentType('foo/bar');
|
38 |
+
|
39 |
+
$this->assertEquals(array(
|
40 |
+
'Content-Disposition: form-data; name="company[logo]"; filename="google.png"',
|
41 |
+
'Content-Type: foo/bar',
|
42 |
+
), $upload->getHeaders());
|
43 |
+
}
|
44 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/RequestTest.php
ADDED
@@ -0,0 +1,141 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Message;
|
4 |
+
|
5 |
+
use Buzz\Message\Request;
|
6 |
+
|
7 |
+
class RequestTest extends \PHPUnit_Framework_TestCase
|
8 |
+
{
|
9 |
+
public function testConstructorSetsMethodResourceAndHost()
|
10 |
+
{
|
11 |
+
$request = new Request('HEAD', '/resource/123', 'http://example.com');
|
12 |
+
|
13 |
+
$this->assertEquals('HEAD', $request->getMethod());
|
14 |
+
$this->assertEquals('/resource/123', $request->getResource());
|
15 |
+
$this->assertEquals('http://example.com', $request->getHost());
|
16 |
+
}
|
17 |
+
|
18 |
+
public function testGetUrlFormatsAUrl()
|
19 |
+
{
|
20 |
+
$request = new Request();
|
21 |
+
$request->setHost('http://example.com');
|
22 |
+
$request->setResource('/resource/123');
|
23 |
+
|
24 |
+
$this->assertEquals('http://example.com/resource/123', $request->getUrl());
|
25 |
+
}
|
26 |
+
|
27 |
+
public function testFromUrlSetsRequestValues()
|
28 |
+
{
|
29 |
+
$request = new Request();
|
30 |
+
$request->fromUrl('http://example.com/resource/123?foo=bar#foobar');
|
31 |
+
|
32 |
+
$this->assertEquals('http://example.com', $request->getHost());
|
33 |
+
$this->assertEquals('/resource/123?foo=bar', $request->getResource());
|
34 |
+
}
|
35 |
+
|
36 |
+
public function testFromUrlSetsADefaultResource()
|
37 |
+
{
|
38 |
+
$request = new Request();
|
39 |
+
$request->fromUrl('http://example.com');
|
40 |
+
|
41 |
+
$this->assertEquals('/', $request->getResource());
|
42 |
+
|
43 |
+
$request = new Request();
|
44 |
+
$request->fromUrl('http://example.com?foo=bar');
|
45 |
+
|
46 |
+
$this->assertEquals('/?foo=bar', $request->getResource());
|
47 |
+
}
|
48 |
+
|
49 |
+
public function testFromUrlSetsADefaultScheme()
|
50 |
+
{
|
51 |
+
$request = new Request();
|
52 |
+
$request->fromUrl('example.com/foo/bar');
|
53 |
+
|
54 |
+
$this->assertEquals('http://example.com', $request->getHost());
|
55 |
+
$this->assertEquals('/foo/bar', $request->getResource());
|
56 |
+
}
|
57 |
+
|
58 |
+
public function testFromUrlLeaveHostEmptyIfNoneIsProvided()
|
59 |
+
{
|
60 |
+
$request = new Request();
|
61 |
+
$request->fromUrl('/foo');
|
62 |
+
|
63 |
+
$this->assertNull($request->getHost());
|
64 |
+
}
|
65 |
+
|
66 |
+
public function testFromUrlAcceptsPort()
|
67 |
+
{
|
68 |
+
$request = new Request();
|
69 |
+
$request->fromUrl('http://localhost:3000/foo');
|
70 |
+
|
71 |
+
$this->assertEquals('http://localhost:3000', $request->getHost());
|
72 |
+
$this->assertEquals('/foo', $request->getResource());
|
73 |
+
}
|
74 |
+
|
75 |
+
public function testFromUrlRejectsInvalidUrl()
|
76 |
+
{
|
77 |
+
$this->setExpectedException('InvalidArgumentException');
|
78 |
+
|
79 |
+
// port number is too high
|
80 |
+
$request = new Request();
|
81 |
+
$request->fromUrl('http://localhost:123456');
|
82 |
+
}
|
83 |
+
|
84 |
+
public function testIsSecureChecksScheme()
|
85 |
+
{
|
86 |
+
$request = new Request('GET', '/resource/123', 'http://example.com');
|
87 |
+
$this->assertFalse($request->isSecure());
|
88 |
+
|
89 |
+
$request = new Request('GET', '/resource/123', 'https://example.com');
|
90 |
+
$this->assertTrue($request->isSecure());
|
91 |
+
}
|
92 |
+
|
93 |
+
public function testToStringFormatsTheRequest()
|
94 |
+
{
|
95 |
+
$request = new Request('POST', '/resource/123', 'http://example.com');
|
96 |
+
$request->setProtocolVersion(1.1);
|
97 |
+
$request->addHeader('Content-Type: application/x-www-form-urlencoded');
|
98 |
+
$request->setContent('foo=bar&bar=baz');
|
99 |
+
|
100 |
+
$expected = "POST /resource/123 HTTP/1.1\r\n";
|
101 |
+
$expected .= "Host: http://example.com\r\n";
|
102 |
+
$expected .= "Content-Type: application/x-www-form-urlencoded\r\n";
|
103 |
+
$expected .= "\r\n";
|
104 |
+
$expected .= "foo=bar&bar=baz\r\n";
|
105 |
+
|
106 |
+
$this->assertEquals($expected, (string) $request);
|
107 |
+
}
|
108 |
+
|
109 |
+
public function testMethodIsAlwaysUppercased()
|
110 |
+
{
|
111 |
+
$request = new Request('post', '/resource/123', 'http://example.com');
|
112 |
+
|
113 |
+
$this->assertEquals('POST', $request->getMethod());
|
114 |
+
}
|
115 |
+
|
116 |
+
public function testSetMethod()
|
117 |
+
{
|
118 |
+
$request = new Request();
|
119 |
+
$request->setMethod('get');
|
120 |
+
$this->assertEquals('GET', $request->getMethod());
|
121 |
+
}
|
122 |
+
|
123 |
+
public function testCookieMerge()
|
124 |
+
{
|
125 |
+
$request = new Request();
|
126 |
+
$request->addHeader('Cookie: foo=bar');
|
127 |
+
$request->addHeader('Content-Type: text/plain');
|
128 |
+
$request->addHeader('Cookie: bar=foo');
|
129 |
+
|
130 |
+
$this->assertEquals(array(
|
131 |
+
'Cookie: foo=bar; bar=foo',
|
132 |
+
'Content-Type: text/plain',
|
133 |
+
), $request->getHeaders());
|
134 |
+
|
135 |
+
$expected = "GET / HTTP/1.1\r\n";
|
136 |
+
$expected .= "Cookie: foo=bar; bar=foo\r\n";
|
137 |
+
$expected .= "Content-Type: text/plain\r\n";
|
138 |
+
|
139 |
+
$this->assertEquals($expected, (string) $request);
|
140 |
+
}
|
141 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Message/ResponseTest.php
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Message;
|
4 |
+
|
5 |
+
use Buzz\Message\Response;
|
6 |
+
|
7 |
+
class ResponseTest extends \PHPUnit_Framework_TestCase
|
8 |
+
{
|
9 |
+
public function testGetProtocolVersionReturnsTheProtocolVersion()
|
10 |
+
{
|
11 |
+
$response = new Response();
|
12 |
+
|
13 |
+
$this->assertNull($response->getProtocolVersion());
|
14 |
+
|
15 |
+
$response->addHeader('HTTP/1.0 200 OK');
|
16 |
+
|
17 |
+
$this->assertEquals(1.0, $response->getProtocolVersion());
|
18 |
+
}
|
19 |
+
|
20 |
+
public function testGetStatusCodeReturnsTheStatusCode()
|
21 |
+
{
|
22 |
+
$response = new Response();
|
23 |
+
|
24 |
+
$this->assertNull($response->getStatusCode());
|
25 |
+
|
26 |
+
$response->addHeader('HTTP/1.0 200 OK');
|
27 |
+
|
28 |
+
$this->assertEquals(200, $response->getStatusCode());
|
29 |
+
}
|
30 |
+
|
31 |
+
public function testGetReasonPhraseReturnsTheReasonPhrase()
|
32 |
+
{
|
33 |
+
$response = new Response();
|
34 |
+
|
35 |
+
$this->assertEquals($response->getReasonPhrase(), null);
|
36 |
+
|
37 |
+
$response->addHeader('HTTP/1.0 200 OK');
|
38 |
+
|
39 |
+
$this->assertEquals('OK', $response->getReasonPhrase());
|
40 |
+
}
|
41 |
+
|
42 |
+
public function testGetReasonPhraseReturnsAMultiwordReasonPhrase()
|
43 |
+
{
|
44 |
+
$response = new Response();
|
45 |
+
|
46 |
+
$this->assertNull($response->getReasonPhrase());
|
47 |
+
|
48 |
+
$response->addHeader('HTTP/1.0 500 Internal Server Error');
|
49 |
+
|
50 |
+
$this->assertEquals('Internal Server Error', $response->getReasonPhrase());
|
51 |
+
}
|
52 |
+
|
53 |
+
public function testAddHeadersResetsStatusLine()
|
54 |
+
{
|
55 |
+
$response = new Response();
|
56 |
+
$this->assertNull($response->getStatusCode());
|
57 |
+
$response->addHeaders(array('HTTP/1.0 200 OK'));
|
58 |
+
$this->assertEquals(200, $response->getStatusCode());
|
59 |
+
}
|
60 |
+
|
61 |
+
/**
|
62 |
+
* @dataProvider statusProvider
|
63 |
+
*
|
64 |
+
*
|
65 |
+
*/
|
66 |
+
public function testIssers($code, $method, $expected)
|
67 |
+
{
|
68 |
+
$response = new Response();
|
69 |
+
$response->addHeaders(array('HTTP/1.0 '.$code.' Status'));
|
70 |
+
$this->assertEquals($expected, $response->{$method}());
|
71 |
+
}
|
72 |
+
|
73 |
+
public function statusProvider()
|
74 |
+
{
|
75 |
+
return array(
|
76 |
+
array(50, 'isInvalid', true),
|
77 |
+
array(700, 'isInvalid', true),
|
78 |
+
array(100, 'isInvalid', false),
|
79 |
+
|
80 |
+
array(100, 'isInformational', true),
|
81 |
+
array(199, 'isInformational', true),
|
82 |
+
array(200, 'isInformational', false),
|
83 |
+
|
84 |
+
array(200, 'isSuccessful', true),
|
85 |
+
array(299, 'isSuccessful', true),
|
86 |
+
array(300, 'isSuccessful', false),
|
87 |
+
|
88 |
+
array(301, 'isRedirection', true),
|
89 |
+
array(302, 'isRedirection', true),
|
90 |
+
array(400, 'isRedirection', false),
|
91 |
+
|
92 |
+
array(404, 'isClientError', true),
|
93 |
+
array(401, 'isClientError', true),
|
94 |
+
array(500, 'isClientError', false),
|
95 |
+
|
96 |
+
array(500, 'isServerError', true),
|
97 |
+
array(400, 'isServerError', false),
|
98 |
+
|
99 |
+
array(200, 'isOk', true),
|
100 |
+
array(201, 'isOk', false),
|
101 |
+
|
102 |
+
array(403, 'isForbidden', true),
|
103 |
+
array(404, 'isForbidden', false),
|
104 |
+
|
105 |
+
array(404, 'isNotFound', true),
|
106 |
+
array(403, 'isNotFound', false),
|
107 |
+
|
108 |
+
array(201, 'isEmpty', true),
|
109 |
+
array(204, 'isEmpty', true),
|
110 |
+
array(304, 'isEmpty', true),
|
111 |
+
array(203, 'isEmpty', false),
|
112 |
+
);
|
113 |
+
}
|
114 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Util/CookieJarTest.php
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Cookie;
|
4 |
+
|
5 |
+
use Buzz\Util\Cookie;
|
6 |
+
use Buzz\Util\CookieJar;
|
7 |
+
use Buzz\Message;
|
8 |
+
|
9 |
+
class CookieJarTest extends \PHPUnit_Framework_TestCase
|
10 |
+
{
|
11 |
+
public function testProcessSetCookieHeadersSetsCookies()
|
12 |
+
{
|
13 |
+
$request = new Message\Request();
|
14 |
+
$request->setHost('http://www.example.com');
|
15 |
+
|
16 |
+
$response = new Message\Response();
|
17 |
+
$response->addHeader('Set-Cookie: SESSION2=qwerty');
|
18 |
+
$response->addHeader('Set-Cookie: SESSION1=asdf');
|
19 |
+
|
20 |
+
$jar = new CookieJar();
|
21 |
+
$jar->processSetCookieHeaders($request, $response);
|
22 |
+
|
23 |
+
$cookies = $jar->getCookies();
|
24 |
+
|
25 |
+
$this->assertEquals(2, count($cookies));
|
26 |
+
foreach ($cookies as $cookie) {
|
27 |
+
$this->assertEquals('www.example.com', $cookie->getAttribute(Cookie::ATTR_DOMAIN));
|
28 |
+
$this->assertTrue(in_array($cookie->getName(), array('SESSION1', 'SESSION2')));
|
29 |
+
}
|
30 |
+
}
|
31 |
+
|
32 |
+
public function testAddCookieHeadersAddsCookieHeaders()
|
33 |
+
{
|
34 |
+
$request = new Message\Request();
|
35 |
+
$request->setHost('http://www.example.com');
|
36 |
+
|
37 |
+
$cookie = new Cookie();
|
38 |
+
$cookie->setName('SESSION');
|
39 |
+
$cookie->setValue('asdf');
|
40 |
+
$cookie->setAttribute(Cookie::ATTR_DOMAIN, '.example.com');
|
41 |
+
|
42 |
+
$jar = new CookieJar();
|
43 |
+
$jar->setCookies(array($cookie));
|
44 |
+
$jar->addCookieHeaders($request);
|
45 |
+
|
46 |
+
$this->assertEquals('SESSION=asdf', $request->getHeader('Cookie'));
|
47 |
+
}
|
48 |
+
|
49 |
+
public function testClearExpiredCookiesRemovesExpiredCookies()
|
50 |
+
{
|
51 |
+
$cookie = new Cookie();
|
52 |
+
$cookie->setName('SESSION');
|
53 |
+
$cookie->setValue('asdf');
|
54 |
+
$cookie->setAttribute(Cookie::ATTR_EXPIRES, 'Fri, 01-Dec-1999 00:00:00 GMT');
|
55 |
+
|
56 |
+
$jar = new CookieJar();
|
57 |
+
$jar->addCookie($cookie);
|
58 |
+
$jar->clearExpiredCookies();
|
59 |
+
|
60 |
+
$this->assertEquals(0, count($jar->getCookies()));
|
61 |
+
|
62 |
+
$cookie = new Cookie();
|
63 |
+
$cookie->setName('SESSION');
|
64 |
+
$cookie->setValue('asdf');
|
65 |
+
$cookie->setAttribute(Cookie::ATTR_MAX_AGE, '-60');
|
66 |
+
|
67 |
+
$jar = new CookieJar();
|
68 |
+
$jar->addCookie($cookie);
|
69 |
+
$jar->clearExpiredCookies();
|
70 |
+
|
71 |
+
$this->assertEquals(0, count($jar->getCookies()));
|
72 |
+
}
|
73 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Util/CookieTest.php
ADDED
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Cookie;
|
4 |
+
|
5 |
+
use Buzz\Util\Cookie;
|
6 |
+
use Buzz\Message;
|
7 |
+
|
8 |
+
class CookieTest extends \PHPUnit_Framework_TestCase
|
9 |
+
{
|
10 |
+
public function testFromSetCookieHeaderSetsCookieAttributes()
|
11 |
+
{
|
12 |
+
$cookie = new Cookie();
|
13 |
+
$cookie->fromSetCookieHeader('SESSION=asdf; expires='.date('r', strtotime('2000-01-01 00:00:00')).'; path=/; domain=.example.com; secure', 'www.example.com');
|
14 |
+
|
15 |
+
$this->assertEquals('SESSION', $cookie->getName());
|
16 |
+
$this->assertEquals('asdf', $cookie->getValue());
|
17 |
+
$this->assertEquals(array(
|
18 |
+
'expires' => date('r', strtotime('2000-01-01 00:00:00')),
|
19 |
+
'path' => '/',
|
20 |
+
'domain' => '.example.com',
|
21 |
+
'secure' => null,
|
22 |
+
), $cookie->getAttributes());
|
23 |
+
}
|
24 |
+
|
25 |
+
public function testFromSetCookieHeaderFallsBackToIssuingDomain()
|
26 |
+
{
|
27 |
+
$cookie = new Cookie();
|
28 |
+
$cookie->fromSetCookieHeader('SESSION=asdf', 'example.com');
|
29 |
+
|
30 |
+
$this->assertEquals('example.com', $cookie->getAttribute(Cookie::ATTR_DOMAIN));
|
31 |
+
}
|
32 |
+
|
33 |
+
public function testToCookieHeaderFormatsACookieHeader()
|
34 |
+
{
|
35 |
+
$cookie = new Cookie();
|
36 |
+
$cookie->setName('SESSION');
|
37 |
+
$cookie->setValue('asdf');
|
38 |
+
|
39 |
+
$this->assertEquals('Cookie: SESSION=asdf', $cookie->toCookieHeader());
|
40 |
+
}
|
41 |
+
|
42 |
+
public function testMatchesDomainMatchesSimpleDomains()
|
43 |
+
{
|
44 |
+
$cookie = new Cookie();
|
45 |
+
$cookie->setAttribute('domain', 'nytimes.com');
|
46 |
+
|
47 |
+
$this->assertTrue($cookie->matchesDomain('nytimes.com'));
|
48 |
+
$this->assertFalse($cookie->matchesDomain('google.com'));
|
49 |
+
}
|
50 |
+
|
51 |
+
public function testMatchesDomainMatchesSubdomains()
|
52 |
+
{
|
53 |
+
$cookie = new Cookie();
|
54 |
+
$cookie->setAttribute('domain', '.nytimes.com');
|
55 |
+
|
56 |
+
$this->assertTrue($cookie->matchesDomain('nytimes.com'));
|
57 |
+
$this->assertTrue($cookie->matchesDomain('blogs.nytimes.com'));
|
58 |
+
$this->assertFalse($cookie->matchesDomain('google.com'));
|
59 |
+
}
|
60 |
+
|
61 |
+
public function testIsExpiredChecksMaxAge()
|
62 |
+
{
|
63 |
+
$cookie = new Cookie();
|
64 |
+
$cookie->setAttribute('max-age', 60);
|
65 |
+
|
66 |
+
$this->assertFalse($cookie->isExpired());
|
67 |
+
|
68 |
+
$cookie = new Cookie();
|
69 |
+
$cookie->setCreatedAt(strtotime('-1 hour'));
|
70 |
+
$cookie->setAttribute('max-age', 60);
|
71 |
+
|
72 |
+
$this->assertTrue($cookie->isExpired());
|
73 |
+
}
|
74 |
+
|
75 |
+
public function testIsExpiredChecksExpires()
|
76 |
+
{
|
77 |
+
$cookie = new Cookie();
|
78 |
+
$cookie->setAttribute('expires', date('r', strtotime('+1 week')));
|
79 |
+
|
80 |
+
$this->assertFalse($cookie->isExpired());
|
81 |
+
|
82 |
+
$cookie = new Cookie();
|
83 |
+
$cookie->setAttribute('expires', date('r', strtotime('-1 month')));
|
84 |
+
|
85 |
+
$this->assertTrue($cookie->isExpired());
|
86 |
+
}
|
87 |
+
|
88 |
+
public function testMatchesPathChecksPath()
|
89 |
+
{
|
90 |
+
$cookie = new Cookie();
|
91 |
+
$cookie->setAttribute('path', '/resource');
|
92 |
+
|
93 |
+
$this->assertTrue($cookie->matchesPath('/resource/123'));
|
94 |
+
$this->assertFalse($cookie->matchesPath('/login'));
|
95 |
+
|
96 |
+
$cookie = new Cookie();
|
97 |
+
$this->assertTrue($cookie->matchesPath('/resource/123'));
|
98 |
+
}
|
99 |
+
|
100 |
+
public function testMatchesRequestChecksDomain()
|
101 |
+
{
|
102 |
+
$request = new Message\Request();
|
103 |
+
$request->setHost('http://example.com');
|
104 |
+
|
105 |
+
$cookie = new Cookie();
|
106 |
+
$cookie->setAttribute(Cookie::ATTR_DOMAIN, 'example.com');
|
107 |
+
|
108 |
+
$this->assertTrue($cookie->matchesRequest($request));
|
109 |
+
|
110 |
+
$cookie = new Cookie();
|
111 |
+
$cookie->setAttribute(Cookie::ATTR_DOMAIN, 'foo.com');
|
112 |
+
|
113 |
+
$this->assertFalse($cookie->matchesRequest($request));
|
114 |
+
}
|
115 |
+
|
116 |
+
public function testMatchesRequestChecksPath()
|
117 |
+
{
|
118 |
+
$request = new Message\Request();
|
119 |
+
$request->setHost('http://example.com');
|
120 |
+
$request->setResource('/foo/bar');
|
121 |
+
|
122 |
+
$cookie = new Cookie();
|
123 |
+
$cookie->setAttribute(Cookie::ATTR_DOMAIN, 'example.com');
|
124 |
+
$cookie->setAttribute(Cookie::ATTR_PATH, '/foo');
|
125 |
+
|
126 |
+
$this->assertTrue($cookie->matchesRequest($request));
|
127 |
+
|
128 |
+
$cookie = new Cookie();
|
129 |
+
$cookie->setAttribute(Cookie::ATTR_DOMAIN, 'example.com');
|
130 |
+
$cookie->setAttribute(Cookie::ATTR_PATH, '/foo/bar/baz');
|
131 |
+
|
132 |
+
$this->assertFalse($cookie->matchesRequest($request));
|
133 |
+
}
|
134 |
+
|
135 |
+
public function testMatchesRequestChecksSecureAttribute()
|
136 |
+
{
|
137 |
+
$request = new Message\Request();
|
138 |
+
$request->setHost('https://example.com');
|
139 |
+
|
140 |
+
$cookie = new Cookie();
|
141 |
+
$cookie->setAttribute(Cookie::ATTR_DOMAIN, 'example.com');
|
142 |
+
$cookie->setAttribute(Cookie::ATTR_SECURE, null);
|
143 |
+
|
144 |
+
$this->assertTrue($cookie->matchesRequest($request));
|
145 |
+
|
146 |
+
$request = new Message\Request();
|
147 |
+
$request->setHost('http://example.com');
|
148 |
+
|
149 |
+
$this->assertFalse($cookie->matchesRequest($request));
|
150 |
+
}
|
151 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/Buzz/Test/Util/UrlTest.php
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Buzz\Test\Util;
|
4 |
+
|
5 |
+
use Buzz\Util\Url;
|
6 |
+
|
7 |
+
class UrlTest extends \PHPUnit_Framework_TestCase
|
8 |
+
{
|
9 |
+
/**
|
10 |
+
* @dataProvider provideUrlAndHost
|
11 |
+
*/
|
12 |
+
public function testGetHost($urlStr, $host, $resource)
|
13 |
+
{
|
14 |
+
$url = new Url($urlStr);
|
15 |
+
$this->assertEquals($host, $url->getHost());
|
16 |
+
$this->assertEquals($resource, $url->getResource());
|
17 |
+
}
|
18 |
+
|
19 |
+
public function provideUrlAndHost()
|
20 |
+
{
|
21 |
+
return array(
|
22 |
+
array('https://example.com/resource/123?foo=bar#foobar', 'https://example.com', '/resource/123?foo=bar'),
|
23 |
+
array('http://example.com', 'http://example.com', '/'),
|
24 |
+
array('http://example.com?foo=bar', 'http://example.com', '/?foo=bar'),
|
25 |
+
array('example.com/foo/bar', 'http://example.com', '/foo/bar'),
|
26 |
+
array('/foo', null, '/foo'),
|
27 |
+
array('http://localhost:3000/foo', 'http://localhost:3000', '/foo'),
|
28 |
+
);
|
29 |
+
}
|
30 |
+
|
31 |
+
public function testInvalidUrl()
|
32 |
+
{
|
33 |
+
$this->setExpectedException('InvalidArgumentException');
|
34 |
+
new Url('http://localhost:123456');
|
35 |
+
}
|
36 |
+
|
37 |
+
/**
|
38 |
+
* @dataProvider providePattern
|
39 |
+
*/
|
40 |
+
public function testFormat($input, $pattern, $expected)
|
41 |
+
{
|
42 |
+
$url = new Url($input);
|
43 |
+
$this->assertEquals($expected, $url->format($pattern));
|
44 |
+
}
|
45 |
+
|
46 |
+
public function providePattern()
|
47 |
+
{
|
48 |
+
$full = 'http://foo:bar@example.com:123/asdf?tweedle=dee#dum';
|
49 |
+
$host = 'example.com';
|
50 |
+
|
51 |
+
return array(
|
52 |
+
array($full, 's://u:a@h:op?q#f', 'http://foo:bar@example.com:123/asdf?tweedle=dee#dum'),
|
53 |
+
array($full, 'HR', 'http://example.com:123/asdf?tweedle=dee'),
|
54 |
+
array($host, 'HR', 'http://example.com/'),
|
55 |
+
);
|
56 |
+
}
|
57 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/etc/nginx.conf
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
events {
|
2 |
+
worker_connections 1024;
|
3 |
+
}
|
4 |
+
|
5 |
+
http {
|
6 |
+
keepalive_timeout 65;
|
7 |
+
|
8 |
+
fastcgi_connect_timeout 60;
|
9 |
+
fastcgi_send_timeout 180;
|
10 |
+
fastcgi_read_timeout 180;
|
11 |
+
fastcgi_buffer_size 32k;
|
12 |
+
fastcgi_buffers 16 16k;
|
13 |
+
fastcgi_intercept_errors on;
|
14 |
+
|
15 |
+
upstream php {
|
16 |
+
server 127.0.0.1:9000;
|
17 |
+
}
|
18 |
+
|
19 |
+
access_log /var/log/nginx/access.log;
|
20 |
+
error_log /var/log/nginx/error.log;
|
21 |
+
|
22 |
+
server {
|
23 |
+
listen 8080 default_server;
|
24 |
+
server_name .localhost;
|
25 |
+
|
26 |
+
charset utf-8;
|
27 |
+
|
28 |
+
root .;
|
29 |
+
|
30 |
+
location ~ \.php$ {
|
31 |
+
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
32 |
+
|
33 |
+
fastcgi_param QUERY_STRING $query_string;
|
34 |
+
fastcgi_param REQUEST_METHOD $request_method;
|
35 |
+
fastcgi_param CONTENT_TYPE $content_type if_not_empty;
|
36 |
+
|
37 |
+
fastcgi_param CONTENT_LENGTH $content_length;
|
38 |
+
|
39 |
+
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
40 |
+
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
41 |
+
fastcgi_param REQUEST_URI $request_uri;
|
42 |
+
fastcgi_param DOCUMENT_URI $document_uri;
|
43 |
+
fastcgi_param DOCUMENT_ROOT $document_root;
|
44 |
+
fastcgi_param SERVER_PROTOCOL $server_protocol;
|
45 |
+
|
46 |
+
fastcgi_pass php;
|
47 |
+
}
|
48 |
+
}
|
49 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/etc/squid.conf
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
http_access allow all
|
2 |
+
http_port 3128
|
app/code/community/Webinterpret/Connector/Lib/kriswallsmith/buzz/test/server.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if (isset($_GET['redirect_to'])) {
|
4 |
+
header('Location: '.$_GET['redirect_to']);
|
5 |
+
die;
|
6 |
+
}
|
7 |
+
|
8 |
+
if (isset($_GET['delay'])) {
|
9 |
+
sleep($_GET['delay']);
|
10 |
+
}
|
11 |
+
|
12 |
+
echo json_encode(array(
|
13 |
+
'SERVER' => $_SERVER,
|
14 |
+
'GET' => $_GET,
|
15 |
+
'POST' => $_POST,
|
16 |
+
'FILES' => $_FILES,
|
17 |
+
'INPUT' => file_get_contents('php://input'),
|
18 |
+
));
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/CHANGELOG.md
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CHANGELOG
|
2 |
+
=========
|
3 |
+
|
4 |
+
1.1.1 (2016-09-15)
|
5 |
+
------------------
|
6 |
+
|
7 |
+
* Development files were added to the `.gitattributes` as `export-ignore` so
|
8 |
+
that they are not part of the Composer release. Pull request by Michele
|
9 |
+
Locati. GitHub #39.
|
10 |
+
|
11 |
+
1.1.0 (2016-01-04)
|
12 |
+
------------------
|
13 |
+
|
14 |
+
* The MaxMind DB extension now supports PHP 7. Pull request by John Boehr.
|
15 |
+
GitHub #27.
|
16 |
+
|
17 |
+
1.0.3 (2015-03-13)
|
18 |
+
------------------
|
19 |
+
|
20 |
+
* All uses of `strlen` were removed. This should prevent issues in situations
|
21 |
+
where the function is overloaded or otherwise broken.
|
22 |
+
|
23 |
+
1.0.2 (2015-01-19)
|
24 |
+
------------------
|
25 |
+
|
26 |
+
* Previously the MaxMind DB extension would cause a segfault if the Reader
|
27 |
+
object's destructor was called without first having called the constructor.
|
28 |
+
(Reported by Matthias Saou & Juan Peri. GitHub #20.)
|
29 |
+
|
30 |
+
1.0.1 (2015-01-12)
|
31 |
+
------------------
|
32 |
+
|
33 |
+
* In the last several releases, the version number in the extension was
|
34 |
+
incorrect. This release is being done to correct it. No other code changes
|
35 |
+
are included.
|
36 |
+
|
37 |
+
1.0.0 (2014-09-22)
|
38 |
+
------------------
|
39 |
+
|
40 |
+
* First production release.
|
41 |
+
* In the pure PHP reader, a string length test after `fread()` was replaced
|
42 |
+
with the difference between the start pointer and the end pointer. This
|
43 |
+
provided a 15% speed increase.
|
44 |
+
|
45 |
+
0.3.3 (2014-09-15)
|
46 |
+
------------------
|
47 |
+
|
48 |
+
* Clarified behavior of 128-bit type in documentation.
|
49 |
+
* Updated phpunit and fixed some test breakage from the newer version.
|
50 |
+
|
51 |
+
0.3.2 (2014-09-10)
|
52 |
+
------------------
|
53 |
+
|
54 |
+
* Fixed invalid reference to global class RuntimeException from namespaced
|
55 |
+
code. Fixed by Steven Don. GitHub issue #15.
|
56 |
+
* Additional documentation of `Metadata` class as well as misc. documentation
|
57 |
+
cleanup.
|
58 |
+
|
59 |
+
0.3.1 (2014-05-01)
|
60 |
+
------------------
|
61 |
+
|
62 |
+
* The API now works when `mbstring.func_overload` is set.
|
63 |
+
* BCMath is no longer required. If the decoder encounters a big integer,
|
64 |
+
it will try to use GMP and then BCMath. If both of those fail, it will
|
65 |
+
throw an exception. No databases released by MaxMind currently use big
|
66 |
+
integers.
|
67 |
+
* The API now officially supports HHVM when using the pure PHP reader.
|
68 |
+
|
69 |
+
0.3.0 (2014-02-19)
|
70 |
+
------------------
|
71 |
+
|
72 |
+
* This API is now licensed under the Apache License, Version 2.0.
|
73 |
+
* The code for the C extension was cleaned up, fixing several potential
|
74 |
+
issues.
|
75 |
+
|
76 |
+
0.2.0 (2013-10-21)
|
77 |
+
------------------
|
78 |
+
|
79 |
+
* Added optional C extension for using libmaxminddb in place of the pure PHP
|
80 |
+
reader.
|
81 |
+
* Significantly improved error handling in pure PHP reader.
|
82 |
+
* Improved performance for IPv4 lookups in an IPv6 database.
|
83 |
+
|
84 |
+
0.1.0 (2013-07-16)
|
85 |
+
------------------
|
86 |
+
|
87 |
+
* Initial release
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
Apache License
|
3 |
+
Version 2.0, January 2004
|
4 |
+
http://www.apache.org/licenses/
|
5 |
+
|
6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7 |
+
|
8 |
+
1. Definitions.
|
9 |
+
|
10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
12 |
+
|
13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14 |
+
the copyright owner that is granting the License.
|
15 |
+
|
16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
17 |
+
other entities that control, are controlled by, or are under common
|
18 |
+
control with that entity. For the purposes of this definition,
|
19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
20 |
+
direction or management of such entity, whether by contract or
|
21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23 |
+
|
24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25 |
+
exercising permissions granted by this License.
|
26 |
+
|
27 |
+
"Source" form shall mean the preferred form for making modifications,
|
28 |
+
including but not limited to software source code, documentation
|
29 |
+
source, and configuration files.
|
30 |
+
|
31 |
+
"Object" form shall mean any form resulting from mechanical
|
32 |
+
transformation or translation of a Source form, including but
|
33 |
+
not limited to compiled object code, generated documentation,
|
34 |
+
and conversions to other media types.
|
35 |
+
|
36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
37 |
+
Object form, made available under the License, as indicated by a
|
38 |
+
copyright notice that is included in or attached to the work
|
39 |
+
(an example is provided in the Appendix below).
|
40 |
+
|
41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42 |
+
form, that is based on (or derived from) the Work and for which the
|
43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
45 |
+
of this License, Derivative Works shall not include works that remain
|
46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47 |
+
the Work and Derivative Works thereof.
|
48 |
+
|
49 |
+
"Contribution" shall mean any work of authorship, including
|
50 |
+
the original version of the Work and any modifications or additions
|
51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
55 |
+
means any form of electronic, verbal, or written communication sent
|
56 |
+
to the Licensor or its representatives, including but not limited to
|
57 |
+
communication on electronic mailing lists, source code control systems,
|
58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
60 |
+
excluding communication that is conspicuously marked or otherwise
|
61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
62 |
+
|
63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
65 |
+
subsequently incorporated within the Work.
|
66 |
+
|
67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
72 |
+
Work and such Derivative Works in Source or Object form.
|
73 |
+
|
74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77 |
+
(except as stated in this section) patent license to make, have made,
|
78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79 |
+
where such license applies only to those patent claims licensable
|
80 |
+
by such Contributor that are necessarily infringed by their
|
81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
83 |
+
institute patent litigation against any entity (including a
|
84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85 |
+
or a Contribution incorporated within the Work constitutes direct
|
86 |
+
or contributory patent infringement, then any patent licenses
|
87 |
+
granted to You under this License for that Work shall terminate
|
88 |
+
as of the date such litigation is filed.
|
89 |
+
|
90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
91 |
+
Work or Derivative Works thereof in any medium, with or without
|
92 |
+
modifications, and in Source or Object form, provided that You
|
93 |
+
meet the following conditions:
|
94 |
+
|
95 |
+
(a) You must give any other recipients of the Work or
|
96 |
+
Derivative Works a copy of this License; and
|
97 |
+
|
98 |
+
(b) You must cause any modified files to carry prominent notices
|
99 |
+
stating that You changed the files; and
|
100 |
+
|
101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
102 |
+
that You distribute, all copyright, patent, trademark, and
|
103 |
+
attribution notices from the Source form of the Work,
|
104 |
+
excluding those notices that do not pertain to any part of
|
105 |
+
the Derivative Works; and
|
106 |
+
|
107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108 |
+
distribution, then any Derivative Works that You distribute must
|
109 |
+
include a readable copy of the attribution notices contained
|
110 |
+
within such NOTICE file, excluding those notices that do not
|
111 |
+
pertain to any part of the Derivative Works, in at least one
|
112 |
+
of the following places: within a NOTICE text file distributed
|
113 |
+
as part of the Derivative Works; within the Source form or
|
114 |
+
documentation, if provided along with the Derivative Works; or,
|
115 |
+
within a display generated by the Derivative Works, if and
|
116 |
+
wherever such third-party notices normally appear. The contents
|
117 |
+
of the NOTICE file are for informational purposes only and
|
118 |
+
do not modify the License. You may add Your own attribution
|
119 |
+
notices within Derivative Works that You distribute, alongside
|
120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
121 |
+
that such additional attribution notices cannot be construed
|
122 |
+
as modifying the License.
|
123 |
+
|
124 |
+
You may add Your own copyright statement to Your modifications and
|
125 |
+
may provide additional or different license terms and conditions
|
126 |
+
for use, reproduction, or distribution of Your modifications, or
|
127 |
+
for any such Derivative Works as a whole, provided Your use,
|
128 |
+
reproduction, and distribution of the Work otherwise complies with
|
129 |
+
the conditions stated in this License.
|
130 |
+
|
131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
133 |
+
by You to the Licensor shall be under the terms and conditions of
|
134 |
+
this License, without any additional terms or conditions.
|
135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136 |
+
the terms of any separate license agreement you may have executed
|
137 |
+
with Licensor regarding such Contributions.
|
138 |
+
|
139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
141 |
+
except as required for reasonable and customary use in describing the
|
142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
143 |
+
|
144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145 |
+
agreed to in writing, Licensor provides the Work (and each
|
146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148 |
+
implied, including, without limitation, any warranties or conditions
|
149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151 |
+
appropriateness of using or redistributing the Work and assume any
|
152 |
+
risks associated with Your exercise of permissions under this License.
|
153 |
+
|
154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
155 |
+
whether in tort (including negligence), contract, or otherwise,
|
156 |
+
unless required by applicable law (such as deliberate and grossly
|
157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158 |
+
liable to You for damages, including any direct, indirect, special,
|
159 |
+
incidental, or consequential damages of any character arising as a
|
160 |
+
result of this License or out of the use or inability to use the
|
161 |
+
Work (including but not limited to damages for loss of goodwill,
|
162 |
+
work stoppage, computer failure or malfunction, or any and all
|
163 |
+
other commercial damages or losses), even if such Contributor
|
164 |
+
has been advised of the possibility of such damages.
|
165 |
+
|
166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169 |
+
or other liability obligations and/or rights consistent with this
|
170 |
+
License. However, in accepting such obligations, You may act only
|
171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172 |
+
of any other Contributor, and only if You agree to indemnify,
|
173 |
+
defend, and hold each Contributor harmless for any liability
|
174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
175 |
+
of your accepting any such warranty or additional liability.
|
176 |
+
|
177 |
+
END OF TERMS AND CONDITIONS
|
178 |
+
|
179 |
+
APPENDIX: How to apply the Apache License to your work.
|
180 |
+
|
181 |
+
To apply the Apache License to your work, attach the following
|
182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183 |
+
replaced with your own identifying information. (Don't include
|
184 |
+
the brackets!) The text should be enclosed in the appropriate
|
185 |
+
comment syntax for the file format. We also recommend that a
|
186 |
+
file or class name and description of purpose be included on the
|
187 |
+
same "printed page" as the copyright notice for easier
|
188 |
+
identification within third-party archives.
|
189 |
+
|
190 |
+
Copyright [yyyy] [name of copyright owner]
|
191 |
+
|
192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193 |
+
you may not use this file except in compliance with the License.
|
194 |
+
You may obtain a copy of the License at
|
195 |
+
|
196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
197 |
+
|
198 |
+
Unless required by applicable law or agreed to in writing, software
|
199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201 |
+
See the License for the specific language governing permissions and
|
202 |
+
limitations under the License.
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/README.md
ADDED
@@ -0,0 +1,140 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# MaxMind DB Reader PHP API #
|
2 |
+
|
3 |
+
## Description ##
|
4 |
+
|
5 |
+
This is the PHP API for reading MaxMind DB files. MaxMind DB is a binary file
|
6 |
+
format that stores data indexed by IP address subnets (IPv4 or IPv6).
|
7 |
+
|
8 |
+
## Installation ##
|
9 |
+
|
10 |
+
We recommend installing this package with [Composer](http://getcomposer.org/).
|
11 |
+
|
12 |
+
### Download Composer ###
|
13 |
+
|
14 |
+
To download Composer, run in the root directory of your project:
|
15 |
+
|
16 |
+
```bash
|
17 |
+
curl -sS https://getcomposer.org/installer | php
|
18 |
+
```
|
19 |
+
|
20 |
+
You should now have the file `composer.phar` in your project directory.
|
21 |
+
|
22 |
+
### Install Dependencies ###
|
23 |
+
|
24 |
+
Run in your project root:
|
25 |
+
|
26 |
+
```
|
27 |
+
php composer.phar require maxmind-db/reader:~1.0
|
28 |
+
```
|
29 |
+
|
30 |
+
You should now have the files `composer.json` and `composer.lock` as well as
|
31 |
+
the directory `vendor` in your project directory. If you use a version control
|
32 |
+
system, `composer.json` should be added to it.
|
33 |
+
|
34 |
+
### Require Autoloader ###
|
35 |
+
|
36 |
+
After installing the dependencies, you need to require the Composer autoloader
|
37 |
+
from your code:
|
38 |
+
|
39 |
+
```php
|
40 |
+
require 'vendor/autoload.php';
|
41 |
+
```
|
42 |
+
|
43 |
+
## Usage ##
|
44 |
+
|
45 |
+
## Example ##
|
46 |
+
|
47 |
+
```php
|
48 |
+
<?php
|
49 |
+
require_once 'vendor/autoload.php';
|
50 |
+
|
51 |
+
use MaxMind\Db\Reader;
|
52 |
+
|
53 |
+
$ipAddress = '24.24.24.24';
|
54 |
+
$databaseFile = 'GeoIP2-City.mmdb';
|
55 |
+
|
56 |
+
$reader = new Reader($databaseFile);
|
57 |
+
|
58 |
+
print_r($reader->get($ipAddress));
|
59 |
+
|
60 |
+
$reader->close();
|
61 |
+
```
|
62 |
+
|
63 |
+
## Optional PHP C Extension ##
|
64 |
+
|
65 |
+
MaxMind provides an optional C extension that is a drop-in replacement for for
|
66 |
+
`MaxMind\Db\Reader`. In order to use this extension, you must install the
|
67 |
+
Reader API as described above and install the extension as described below. If
|
68 |
+
you are using an autoloader, no changes to your code should be necessary.
|
69 |
+
|
70 |
+
### Installing Extension ###
|
71 |
+
|
72 |
+
First install [libmaxminddb](https://github.com/maxmind/libmaxminddb) as
|
73 |
+
described in its [README.md
|
74 |
+
file](https://github.com/maxmind/libmaxminddb/blob/master/README.md#installing-from-a-tarball).
|
75 |
+
After successfully installing libmaxmindb, run the following commands from the
|
76 |
+
top-level directory of this distribution:
|
77 |
+
|
78 |
+
```
|
79 |
+
cd ext
|
80 |
+
phpize
|
81 |
+
./configure
|
82 |
+
make
|
83 |
+
make test
|
84 |
+
sudo make install
|
85 |
+
```
|
86 |
+
|
87 |
+
You then must load your extension. The recommend method is to add the
|
88 |
+
following to your `php.ini` file:
|
89 |
+
|
90 |
+
```
|
91 |
+
extension=maxminddb.so
|
92 |
+
```
|
93 |
+
|
94 |
+
Note: You may need to install the PHP development package on your OS such as
|
95 |
+
php5-dev for Debian-based systems or php-devel for RedHat/Fedora-based ones.
|
96 |
+
|
97 |
+
## 128-bit Integer Support ##
|
98 |
+
|
99 |
+
The MaxMind DB format includes 128-bit unsigned integer as a type. Although
|
100 |
+
no MaxMind-distributed database currently makes use of this type, both the
|
101 |
+
pure PHP reader and the C extension support this type. The pure PHP reader
|
102 |
+
requires gmp or bcmath to read databases with 128-bit unsigned integers.
|
103 |
+
|
104 |
+
The integer is currently returned as a hexadecimal string (prefixed with "0x")
|
105 |
+
by the C extension and a decimal string (no prefix) by the pure PHP reader.
|
106 |
+
Any change to make the reader implementations always return either a
|
107 |
+
hexadecimal or decimal representation of the integer will NOT be considered a
|
108 |
+
breaking change.
|
109 |
+
|
110 |
+
## Support ##
|
111 |
+
|
112 |
+
Please report all issues with this code using the [GitHub issue tracker]
|
113 |
+
(https://github.com/maxmind/MaxMind-DB-Reader-php/issues).
|
114 |
+
|
115 |
+
If you are having an issue with a MaxMind service that is not specific to the
|
116 |
+
client API, please see [our support page](http://www.maxmind.com/en/support).
|
117 |
+
|
118 |
+
## Requirements ##
|
119 |
+
|
120 |
+
This library requires PHP 5.3 or greater. Older versions of PHP are not
|
121 |
+
supported. The pure PHP reader included with this library is works and is
|
122 |
+
tested with HHVM.
|
123 |
+
|
124 |
+
The GMP or BCMath extension may be required to read some databases
|
125 |
+
using the pure PHP API.
|
126 |
+
|
127 |
+
## Contributing ##
|
128 |
+
|
129 |
+
Patches and pull requests are encouraged. All code should follow the PSR-1 and
|
130 |
+
PSR-2 style guidelines. Please include unit tests whenever possible.
|
131 |
+
|
132 |
+
## Versioning ##
|
133 |
+
|
134 |
+
The MaxMind DB Reader PHP API uses [Semantic Versioning](http://semver.org/).
|
135 |
+
|
136 |
+
## Copyright and License ##
|
137 |
+
|
138 |
+
This software is Copyright (c) 2014 by MaxMind, Inc.
|
139 |
+
|
140 |
+
This is free software, licensed under the Apache License, Version 2.0.
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/composer.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "maxmind-db/reader",
|
3 |
+
"description": "MaxMind DB Reader API",
|
4 |
+
"keywords": ["database", "geoip", "geoip2", "geolocation", "maxmind"],
|
5 |
+
"homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
|
6 |
+
"type": "library",
|
7 |
+
"license": "Apache-2.0",
|
8 |
+
"authors": [
|
9 |
+
{
|
10 |
+
"name": "Gregory J. Oschwald",
|
11 |
+
"email": "goschwald@maxmind.com",
|
12 |
+
"homepage": "http://www.maxmind.com/"
|
13 |
+
}
|
14 |
+
],
|
15 |
+
"require": {
|
16 |
+
"php": ">=5.3.1"
|
17 |
+
},
|
18 |
+
"require-dev": {
|
19 |
+
"phpunit/phpunit": "4.2.*",
|
20 |
+
"satooshi/php-coveralls": "1.0.*",
|
21 |
+
"squizlabs/php_codesniffer": "2.*"
|
22 |
+
},
|
23 |
+
"autoload": {
|
24 |
+
"psr-0": {
|
25 |
+
"MaxMind": "src/"
|
26 |
+
}
|
27 |
+
}
|
28 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/ext/config.m4
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
PHP_ARG_WITH(maxminddb,
|
2 |
+
[Whether to enable the MaxMind DB Reader extension],
|
3 |
+
[ --with-maxminddb Enable MaxMind DB Reader extension support])
|
4 |
+
|
5 |
+
PHP_ARG_ENABLE(maxminddb-debug, for MaxMind DB debug support,
|
6 |
+
[ --enable-maxminddb-debug Enable enable MaxMind DB deubg support], no, no)
|
7 |
+
|
8 |
+
if test $PHP_MAXMINDDB != "no"; then
|
9 |
+
PHP_CHECK_LIBRARY(maxminddb, MMDB_open)
|
10 |
+
|
11 |
+
if test $PHP_MAXMINDDB_DEBUG != "no"; then
|
12 |
+
CFLAGS="$CFLAGS -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Werror"
|
13 |
+
fi
|
14 |
+
|
15 |
+
PHP_ADD_LIBRARY(maxminddb, 1, MAXMINDDB_SHARED_LIBADD)
|
16 |
+
PHP_SUBST(MAXMINDDB_SHARED_LIBADD)
|
17 |
+
|
18 |
+
PHP_NEW_EXTENSION(maxminddb, maxminddb.c, $ext_shared)
|
19 |
+
fi
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/ext/maxminddb.c
ADDED
@@ -0,0 +1,565 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* MaxMind, Inc., licenses this file to you under the Apache License, Version
|
2 |
+
* 2.0 (the "License"); you may not use this file except in compliance with
|
3 |
+
* the License. You may obtain a copy of the License at
|
4 |
+
*
|
5 |
+
* http://www.apache.org/licenses/LICENSE-2.0
|
6 |
+
*
|
7 |
+
* Unless required by applicable law or agreed to in writing, software
|
8 |
+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
9 |
+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
10 |
+
* License for the specific language governing permissions and limitations
|
11 |
+
* under the License.
|
12 |
+
*/
|
13 |
+
|
14 |
+
#include "php_maxminddb.h"
|
15 |
+
|
16 |
+
#ifdef HAVE_CONFIG_H
|
17 |
+
#include "config.h"
|
18 |
+
#endif
|
19 |
+
|
20 |
+
#include <php.h>
|
21 |
+
#include <zend.h>
|
22 |
+
#include "Zend/zend_exceptions.h"
|
23 |
+
#include <maxminddb.h>
|
24 |
+
|
25 |
+
#ifdef ZTS
|
26 |
+
#include <TSRM.h>
|
27 |
+
#endif
|
28 |
+
|
29 |
+
#define __STDC_FORMAT_MACROS
|
30 |
+
#include <inttypes.h>
|
31 |
+
|
32 |
+
#define PHP_MAXMINDDB_NS ZEND_NS_NAME("MaxMind", "Db")
|
33 |
+
#define PHP_MAXMINDDB_READER_NS ZEND_NS_NAME(PHP_MAXMINDDB_NS, "Reader")
|
34 |
+
#define PHP_MAXMINDDB_READER_EX_NS \
|
35 |
+
ZEND_NS_NAME(PHP_MAXMINDDB_READER_NS, \
|
36 |
+
"InvalidDatabaseException")
|
37 |
+
|
38 |
+
#ifdef ZEND_ENGINE_3
|
39 |
+
#define Z_MAXMINDDB_P(zv) php_maxminddb_fetch_object(Z_OBJ_P(zv))
|
40 |
+
#define _ZVAL_STRING ZVAL_STRING
|
41 |
+
#define _ZVAL_STRINGL ZVAL_STRINGL
|
42 |
+
typedef size_t strsize_t;
|
43 |
+
typedef zend_object free_obj_t;
|
44 |
+
#else
|
45 |
+
#define Z_MAXMINDDB_P(zv) (maxminddb_obj *) zend_object_store_get_object(zv TSRMLS_CC)
|
46 |
+
#define _ZVAL_STRING(a, b) ZVAL_STRING(a, b, 1)
|
47 |
+
#define _ZVAL_STRINGL(a, b, c) ZVAL_STRINGL(a, b, c, 1)
|
48 |
+
typedef int strsize_t;
|
49 |
+
typedef void free_obj_t;
|
50 |
+
#endif
|
51 |
+
|
52 |
+
#ifdef ZEND_ENGINE_3
|
53 |
+
typedef struct _maxminddb_obj {
|
54 |
+
MMDB_s *mmdb;
|
55 |
+
zend_object std;
|
56 |
+
} maxminddb_obj;
|
57 |
+
#else
|
58 |
+
typedef struct _maxminddb_obj {
|
59 |
+
zend_object std;
|
60 |
+
MMDB_s *mmdb;
|
61 |
+
} maxminddb_obj;
|
62 |
+
#endif
|
63 |
+
|
64 |
+
PHP_FUNCTION(maxminddb);
|
65 |
+
|
66 |
+
static const MMDB_entry_data_list_s *handle_entry_data_list(
|
67 |
+
const MMDB_entry_data_list_s *entry_data_list,
|
68 |
+
zval *z_value
|
69 |
+
TSRMLS_DC);
|
70 |
+
static const MMDB_entry_data_list_s *handle_array(
|
71 |
+
const MMDB_entry_data_list_s *entry_data_list,
|
72 |
+
zval *z_value TSRMLS_DC);
|
73 |
+
static const MMDB_entry_data_list_s *handle_map(
|
74 |
+
const MMDB_entry_data_list_s *entry_data_list,
|
75 |
+
zval *z_value TSRMLS_DC);
|
76 |
+
static void handle_uint128(const MMDB_entry_data_list_s *entry_data_list,
|
77 |
+
zval *z_value TSRMLS_DC);
|
78 |
+
static void handle_uint64(const MMDB_entry_data_list_s *entry_data_list,
|
79 |
+
zval *z_value TSRMLS_DC);
|
80 |
+
static zend_class_entry * lookup_class(const char *name TSRMLS_DC);
|
81 |
+
|
82 |
+
#define CHECK_ALLOCATED(val) \
|
83 |
+
if (!val ) { \
|
84 |
+
zend_error(E_ERROR, "Out of memory"); \
|
85 |
+
return; \
|
86 |
+
} \
|
87 |
+
|
88 |
+
#define THROW_EXCEPTION(name, ... ) \
|
89 |
+
{ \
|
90 |
+
zend_class_entry *exception_ce = lookup_class(name TSRMLS_CC); \
|
91 |
+
zend_throw_exception_ex(exception_ce, 0 TSRMLS_CC, __VA_ARGS__); \
|
92 |
+
} \
|
93 |
+
|
94 |
+
|
95 |
+
#if PHP_VERSION_ID < 50399
|
96 |
+
#define object_properties_init(zo, class_type) \
|
97 |
+
{ \
|
98 |
+
zval *tmp; \
|
99 |
+
zend_hash_copy((*zo).properties, \
|
100 |
+
&class_type->default_properties, \
|
101 |
+
(copy_ctor_func_t)zval_add_ref, \
|
102 |
+
(void *)&tmp, \
|
103 |
+
sizeof(zval *)); \
|
104 |
+
}
|
105 |
+
#endif
|
106 |
+
|
107 |
+
static zend_object_handlers maxminddb_obj_handlers;
|
108 |
+
static zend_class_entry *maxminddb_ce;
|
109 |
+
|
110 |
+
static inline maxminddb_obj *php_maxminddb_fetch_object(zend_object *obj TSRMLS_DC){
|
111 |
+
#ifdef ZEND_ENGINE_3
|
112 |
+
return (maxminddb_obj *)((char*)(obj) - XtOffsetOf(maxminddb_obj, std));
|
113 |
+
#else
|
114 |
+
return (maxminddb_obj *)obj;
|
115 |
+
#endif
|
116 |
+
}
|
117 |
+
|
118 |
+
PHP_METHOD(MaxMind_Db_Reader, __construct){
|
119 |
+
char *db_file = NULL;
|
120 |
+
strsize_t name_len;
|
121 |
+
zval * _this_zval = NULL;
|
122 |
+
|
123 |
+
if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os",
|
124 |
+
&_this_zval, maxminddb_ce, &db_file, &name_len) == FAILURE) {
|
125 |
+
THROW_EXCEPTION("InvalidArgumentException",
|
126 |
+
"The constructor takes exactly one argument.");
|
127 |
+
return;
|
128 |
+
}
|
129 |
+
|
130 |
+
if (0 != access(db_file, R_OK)) {
|
131 |
+
THROW_EXCEPTION("InvalidArgumentException",
|
132 |
+
"The file \"%s\" does not exist or is not readable.",
|
133 |
+
db_file);
|
134 |
+
return;
|
135 |
+
}
|
136 |
+
|
137 |
+
MMDB_s *mmdb = (MMDB_s *)emalloc(sizeof(MMDB_s));
|
138 |
+
uint16_t status = MMDB_open(db_file, MMDB_MODE_MMAP, mmdb);
|
139 |
+
|
140 |
+
if (MMDB_SUCCESS != status) {
|
141 |
+
THROW_EXCEPTION(
|
142 |
+
PHP_MAXMINDDB_READER_EX_NS,
|
143 |
+
"Error opening database file (%s). Is this a valid MaxMind DB file?",
|
144 |
+
db_file);
|
145 |
+
efree(mmdb);
|
146 |
+
return;
|
147 |
+
}
|
148 |
+
|
149 |
+
maxminddb_obj *mmdb_obj = Z_MAXMINDDB_P(getThis());
|
150 |
+
mmdb_obj->mmdb = mmdb;
|
151 |
+
}
|
152 |
+
|
153 |
+
PHP_METHOD(MaxMind_Db_Reader, get){
|
154 |
+
char *ip_address = NULL;
|
155 |
+
strsize_t name_len;
|
156 |
+
zval * _this_zval = NULL;
|
157 |
+
|
158 |
+
if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os",
|
159 |
+
&_this_zval, maxminddb_ce, &ip_address, &name_len) == FAILURE) {
|
160 |
+
THROW_EXCEPTION("InvalidArgumentException",
|
161 |
+
"Method takes exactly one argument.");
|
162 |
+
return;
|
163 |
+
}
|
164 |
+
|
165 |
+
const maxminddb_obj *mmdb_obj =
|
166 |
+
(maxminddb_obj *)Z_MAXMINDDB_P(getThis());
|
167 |
+
|
168 |
+
MMDB_s *mmdb = mmdb_obj->mmdb;
|
169 |
+
|
170 |
+
if (NULL == mmdb) {
|
171 |
+
THROW_EXCEPTION("BadMethodCallException",
|
172 |
+
"Attempt to read from a closed MaxMind DB.");
|
173 |
+
return;
|
174 |
+
}
|
175 |
+
|
176 |
+
int gai_error = 0;
|
177 |
+
int mmdb_error = MMDB_SUCCESS;
|
178 |
+
MMDB_lookup_result_s result =
|
179 |
+
MMDB_lookup_string(mmdb, ip_address, &gai_error,
|
180 |
+
&mmdb_error);
|
181 |
+
|
182 |
+
if (MMDB_SUCCESS != gai_error) {
|
183 |
+
THROW_EXCEPTION("InvalidArgumentException",
|
184 |
+
"The value \"%s\" is not a valid IP address.",
|
185 |
+
ip_address);
|
186 |
+
return;
|
187 |
+
}
|
188 |
+
|
189 |
+
if (MMDB_SUCCESS != mmdb_error) {
|
190 |
+
char *exception_name;
|
191 |
+
if (MMDB_IPV6_LOOKUP_IN_IPV4_DATABASE_ERROR == mmdb_error) {
|
192 |
+
exception_name = "InvalidArgumentException";
|
193 |
+
} else {
|
194 |
+
exception_name = PHP_MAXMINDDB_READER_EX_NS;
|
195 |
+
}
|
196 |
+
THROW_EXCEPTION(exception_name,
|
197 |
+
"Error looking up %s. %s",
|
198 |
+
ip_address, MMDB_strerror(mmdb_error));
|
199 |
+
return;
|
200 |
+
}
|
201 |
+
|
202 |
+
MMDB_entry_data_list_s *entry_data_list = NULL;
|
203 |
+
|
204 |
+
if (!result.found_entry) {
|
205 |
+
RETURN_NULL();
|
206 |
+
}
|
207 |
+
|
208 |
+
int status = MMDB_get_entry_data_list(&result.entry, &entry_data_list);
|
209 |
+
|
210 |
+
if (MMDB_SUCCESS != status) {
|
211 |
+
THROW_EXCEPTION(PHP_MAXMINDDB_READER_EX_NS,
|
212 |
+
"Error while looking up data for %s. %s",
|
213 |
+
ip_address, MMDB_strerror(status));
|
214 |
+
MMDB_free_entry_data_list(entry_data_list);
|
215 |
+
return;
|
216 |
+
} else if (NULL == entry_data_list) {
|
217 |
+
THROW_EXCEPTION(
|
218 |
+
PHP_MAXMINDDB_READER_EX_NS,
|
219 |
+
"Error while looking up data for %s. Your database may be corrupt or you have found a bug in libmaxminddb.",
|
220 |
+
ip_address);
|
221 |
+
return;
|
222 |
+
}
|
223 |
+
|
224 |
+
handle_entry_data_list(entry_data_list, return_value TSRMLS_CC);
|
225 |
+
MMDB_free_entry_data_list(entry_data_list);
|
226 |
+
}
|
227 |
+
|
228 |
+
PHP_METHOD(MaxMind_Db_Reader, metadata){
|
229 |
+
if (ZEND_NUM_ARGS() != 0) {
|
230 |
+
THROW_EXCEPTION("InvalidArgumentException",
|
231 |
+
"Method takes no arguments.");
|
232 |
+
return;
|
233 |
+
}
|
234 |
+
|
235 |
+
const maxminddb_obj *const mmdb_obj =
|
236 |
+
(maxminddb_obj *)Z_MAXMINDDB_P(getThis());
|
237 |
+
|
238 |
+
if (NULL == mmdb_obj->mmdb) {
|
239 |
+
THROW_EXCEPTION("BadMethodCallException",
|
240 |
+
"Attempt to read from a closed MaxMind DB.");
|
241 |
+
return;
|
242 |
+
}
|
243 |
+
|
244 |
+
const char *const name = ZEND_NS_NAME(PHP_MAXMINDDB_READER_NS, "Metadata");
|
245 |
+
zend_class_entry *metadata_ce = lookup_class(name TSRMLS_CC);
|
246 |
+
|
247 |
+
object_init_ex(return_value, metadata_ce);
|
248 |
+
|
249 |
+
#ifdef ZEND_ENGINE_3
|
250 |
+
zval _metadata_array;
|
251 |
+
zval *metadata_array = &_metadata_array;
|
252 |
+
ZVAL_NULL(metadata_array);
|
253 |
+
#else
|
254 |
+
zval *metadata_array;
|
255 |
+
ALLOC_INIT_ZVAL(metadata_array);
|
256 |
+
#endif
|
257 |
+
|
258 |
+
MMDB_entry_data_list_s *entry_data_list;
|
259 |
+
MMDB_get_metadata_as_entry_data_list(mmdb_obj->mmdb, &entry_data_list);
|
260 |
+
|
261 |
+
handle_entry_data_list(entry_data_list, metadata_array TSRMLS_CC);
|
262 |
+
MMDB_free_entry_data_list(entry_data_list);
|
263 |
+
#ifdef ZEND_ENGINE_3
|
264 |
+
zend_call_method_with_1_params(return_value, metadata_ce,
|
265 |
+
&metadata_ce->constructor,
|
266 |
+
ZEND_CONSTRUCTOR_FUNC_NAME,
|
267 |
+
NULL,
|
268 |
+
metadata_array);
|
269 |
+
zval_ptr_dtor(metadata_array);
|
270 |
+
#else
|
271 |
+
zend_call_method_with_1_params(&return_value, metadata_ce,
|
272 |
+
&metadata_ce->constructor,
|
273 |
+
ZEND_CONSTRUCTOR_FUNC_NAME,
|
274 |
+
NULL,
|
275 |
+
metadata_array);
|
276 |
+
zval_ptr_dtor(&metadata_array);
|
277 |
+
#endif
|
278 |
+
}
|
279 |
+
|
280 |
+
PHP_METHOD(MaxMind_Db_Reader, close){
|
281 |
+
if (ZEND_NUM_ARGS() != 0) {
|
282 |
+
THROW_EXCEPTION("InvalidArgumentException",
|
283 |
+
"Method takes no arguments.");
|
284 |
+
return;
|
285 |
+
}
|
286 |
+
|
287 |
+
maxminddb_obj *mmdb_obj =
|
288 |
+
(maxminddb_obj *)Z_MAXMINDDB_P(getThis());
|
289 |
+
|
290 |
+
if (NULL == mmdb_obj->mmdb) {
|
291 |
+
THROW_EXCEPTION("BadMethodCallException",
|
292 |
+
"Attempt to close a closed MaxMind DB.");
|
293 |
+
return;
|
294 |
+
}
|
295 |
+
MMDB_close(mmdb_obj->mmdb);
|
296 |
+
efree(mmdb_obj->mmdb);
|
297 |
+
mmdb_obj->mmdb = NULL;
|
298 |
+
}
|
299 |
+
|
300 |
+
static const MMDB_entry_data_list_s *handle_entry_data_list(
|
301 |
+
const MMDB_entry_data_list_s *entry_data_list,
|
302 |
+
zval *z_value
|
303 |
+
TSRMLS_DC)
|
304 |
+
{
|
305 |
+
switch (entry_data_list->entry_data.type) {
|
306 |
+
case MMDB_DATA_TYPE_MAP:
|
307 |
+
return handle_map(entry_data_list, z_value TSRMLS_CC);
|
308 |
+
case MMDB_DATA_TYPE_ARRAY:
|
309 |
+
return handle_array(entry_data_list, z_value TSRMLS_CC);
|
310 |
+
case MMDB_DATA_TYPE_UTF8_STRING:
|
311 |
+
_ZVAL_STRINGL(z_value,
|
312 |
+
(char *)entry_data_list->entry_data.utf8_string,
|
313 |
+
entry_data_list->entry_data.data_size);
|
314 |
+
break;
|
315 |
+
case MMDB_DATA_TYPE_BYTES:
|
316 |
+
_ZVAL_STRINGL(z_value, (char *)entry_data_list->entry_data.bytes,
|
317 |
+
entry_data_list->entry_data.data_size);
|
318 |
+
break;
|
319 |
+
case MMDB_DATA_TYPE_DOUBLE:
|
320 |
+
ZVAL_DOUBLE(z_value, entry_data_list->entry_data.double_value);
|
321 |
+
break;
|
322 |
+
case MMDB_DATA_TYPE_FLOAT:
|
323 |
+
ZVAL_DOUBLE(z_value, entry_data_list->entry_data.float_value);
|
324 |
+
break;
|
325 |
+
case MMDB_DATA_TYPE_UINT16:
|
326 |
+
ZVAL_LONG(z_value, entry_data_list->entry_data.uint16);
|
327 |
+
break;
|
328 |
+
case MMDB_DATA_TYPE_UINT32:
|
329 |
+
ZVAL_LONG(z_value, entry_data_list->entry_data.uint32);
|
330 |
+
break;
|
331 |
+
case MMDB_DATA_TYPE_BOOLEAN:
|
332 |
+
ZVAL_BOOL(z_value, entry_data_list->entry_data.boolean);
|
333 |
+
break;
|
334 |
+
case MMDB_DATA_TYPE_UINT64:
|
335 |
+
handle_uint64(entry_data_list, z_value TSRMLS_CC);
|
336 |
+
break;
|
337 |
+
case MMDB_DATA_TYPE_UINT128:
|
338 |
+
handle_uint128(entry_data_list, z_value TSRMLS_CC);
|
339 |
+
break;
|
340 |
+
case MMDB_DATA_TYPE_INT32:
|
341 |
+
ZVAL_LONG(z_value, entry_data_list->entry_data.int32);
|
342 |
+
break;
|
343 |
+
default:
|
344 |
+
THROW_EXCEPTION(PHP_MAXMINDDB_READER_EX_NS,
|
345 |
+
"Invalid data type arguments: %d",
|
346 |
+
entry_data_list->entry_data.type);
|
347 |
+
return NULL;
|
348 |
+
}
|
349 |
+
return entry_data_list;
|
350 |
+
}
|
351 |
+
|
352 |
+
static const MMDB_entry_data_list_s *handle_map(
|
353 |
+
const MMDB_entry_data_list_s *entry_data_list,
|
354 |
+
zval *z_value TSRMLS_DC)
|
355 |
+
{
|
356 |
+
array_init(z_value);
|
357 |
+
const uint32_t map_size = entry_data_list->entry_data.data_size;
|
358 |
+
|
359 |
+
uint i;
|
360 |
+
for (i = 0; i < map_size && entry_data_list; i++ ) {
|
361 |
+
entry_data_list = entry_data_list->next;
|
362 |
+
|
363 |
+
char *key =
|
364 |
+
estrndup((char *)entry_data_list->entry_data.utf8_string,
|
365 |
+
entry_data_list->entry_data.data_size);
|
366 |
+
if (NULL == key) {
|
367 |
+
THROW_EXCEPTION(PHP_MAXMINDDB_READER_EX_NS,
|
368 |
+
"Invalid data type arguments");
|
369 |
+
return NULL;
|
370 |
+
}
|
371 |
+
|
372 |
+
entry_data_list = entry_data_list->next;
|
373 |
+
#ifdef ZEND_ENGINE_3
|
374 |
+
zval _new_value;
|
375 |
+
zval * new_value = &_new_value;
|
376 |
+
ZVAL_NULL(new_value);
|
377 |
+
#else
|
378 |
+
zval *new_value;
|
379 |
+
ALLOC_INIT_ZVAL(new_value);
|
380 |
+
#endif
|
381 |
+
entry_data_list = handle_entry_data_list(entry_data_list,
|
382 |
+
new_value TSRMLS_CC);
|
383 |
+
add_assoc_zval(z_value, key, new_value);
|
384 |
+
efree(key);
|
385 |
+
}
|
386 |
+
return entry_data_list;
|
387 |
+
}
|
388 |
+
|
389 |
+
static const MMDB_entry_data_list_s *handle_array(
|
390 |
+
const MMDB_entry_data_list_s *entry_data_list,
|
391 |
+
zval *z_value TSRMLS_DC)
|
392 |
+
{
|
393 |
+
const uint32_t size = entry_data_list->entry_data.data_size;
|
394 |
+
|
395 |
+
array_init(z_value);
|
396 |
+
|
397 |
+
uint i;
|
398 |
+
for (i = 0; i < size && entry_data_list; i++) {
|
399 |
+
entry_data_list = entry_data_list->next;
|
400 |
+
#ifdef ZEND_ENGINE_3
|
401 |
+
zval _new_value;
|
402 |
+
zval * new_value = &_new_value;
|
403 |
+
ZVAL_NULL(new_value);
|
404 |
+
#else
|
405 |
+
zval *new_value;
|
406 |
+
ALLOC_INIT_ZVAL(new_value);
|
407 |
+
#endif
|
408 |
+
entry_data_list = handle_entry_data_list(entry_data_list,
|
409 |
+
new_value TSRMLS_CC);
|
410 |
+
add_next_index_zval(z_value, new_value);
|
411 |
+
}
|
412 |
+
return entry_data_list;
|
413 |
+
}
|
414 |
+
|
415 |
+
static void handle_uint128(const MMDB_entry_data_list_s *entry_data_list,
|
416 |
+
zval *z_value TSRMLS_DC)
|
417 |
+
{
|
418 |
+
uint64_t high = 0;
|
419 |
+
uint64_t low = 0;
|
420 |
+
#if MMDB_UINT128_IS_BYTE_ARRAY
|
421 |
+
int i;
|
422 |
+
for (i = 0; i < 8; i++) {
|
423 |
+
high = (high << 8) | entry_data_list->entry_data.uint128[i];
|
424 |
+
}
|
425 |
+
|
426 |
+
for (i = 8; i < 16; i++) {
|
427 |
+
low = (low << 8) | entry_data_list->entry_data.uint128[i];
|
428 |
+
}
|
429 |
+
#else
|
430 |
+
high = entry_data_list->entry_data.uint128 >> 64;
|
431 |
+
low = (uint64_t)entry_data_list->entry_data.uint128;
|
432 |
+
#endif
|
433 |
+
|
434 |
+
char *num_str;
|
435 |
+
spprintf(&num_str, 0, "0x%016" PRIX64 "%016" PRIX64, high, low);
|
436 |
+
CHECK_ALLOCATED(num_str);
|
437 |
+
|
438 |
+
_ZVAL_STRING(z_value, num_str);
|
439 |
+
efree(num_str);
|
440 |
+
}
|
441 |
+
|
442 |
+
static void handle_uint64(const MMDB_entry_data_list_s *entry_data_list,
|
443 |
+
zval *z_value TSRMLS_DC)
|
444 |
+
{
|
445 |
+
// We return it as a string because PHP uses signed longs
|
446 |
+
char *int_str;
|
447 |
+
spprintf(&int_str, 0, "%" PRIu64,
|
448 |
+
entry_data_list->entry_data.uint64);
|
449 |
+
CHECK_ALLOCATED(int_str);
|
450 |
+
|
451 |
+
_ZVAL_STRING(z_value, int_str);
|
452 |
+
efree(int_str);
|
453 |
+
}
|
454 |
+
|
455 |
+
static zend_class_entry *lookup_class(const char *name TSRMLS_DC)
|
456 |
+
{
|
457 |
+
#ifdef ZEND_ENGINE_3
|
458 |
+
zend_string *n = zend_string_init(name, strlen(name), 0);
|
459 |
+
zend_class_entry *ce = zend_lookup_class(n);
|
460 |
+
zend_string_release(n);
|
461 |
+
if( NULL == ce ) {
|
462 |
+
zend_error(E_ERROR, "Class %s not found", name);
|
463 |
+
}
|
464 |
+
return ce;
|
465 |
+
#else
|
466 |
+
zend_class_entry **ce;
|
467 |
+
if (FAILURE ==
|
468 |
+
zend_lookup_class(name, strlen(name),
|
469 |
+
&ce TSRMLS_CC)) {
|
470 |
+
zend_error(E_ERROR, "Class %s not found", name);
|
471 |
+
}
|
472 |
+
return *ce;
|
473 |
+
#endif
|
474 |
+
}
|
475 |
+
|
476 |
+
static void maxminddb_free_storage(free_obj_t *object TSRMLS_DC)
|
477 |
+
{
|
478 |
+
maxminddb_obj *obj = php_maxminddb_fetch_object((zend_object *)object TSRMLS_CC);
|
479 |
+
if (obj->mmdb != NULL) {
|
480 |
+
MMDB_close(obj->mmdb);
|
481 |
+
efree(obj->mmdb);
|
482 |
+
}
|
483 |
+
|
484 |
+
zend_object_std_dtor(&obj->std TSRMLS_CC);
|
485 |
+
#ifndef ZEND_ENGINE_3
|
486 |
+
efree(object);
|
487 |
+
#endif
|
488 |
+
}
|
489 |
+
|
490 |
+
#ifdef ZEND_ENGINE_3
|
491 |
+
static zend_object *maxminddb_create_handler(
|
492 |
+
zend_class_entry *type TSRMLS_DC)
|
493 |
+
{
|
494 |
+
maxminddb_obj *obj = (maxminddb_obj *)ecalloc(1, sizeof(maxminddb_obj));
|
495 |
+
zend_object_std_init(&obj->std, type TSRMLS_CC);
|
496 |
+
object_properties_init(&(obj->std), type);
|
497 |
+
|
498 |
+
obj->std.handlers = &maxminddb_obj_handlers;
|
499 |
+
|
500 |
+
return &obj->std;
|
501 |
+
}
|
502 |
+
#else
|
503 |
+
static zend_object_value maxminddb_create_handler(
|
504 |
+
zend_class_entry *type TSRMLS_DC)
|
505 |
+
{
|
506 |
+
zend_object_value retval;
|
507 |
+
|
508 |
+
maxminddb_obj *obj = (maxminddb_obj *)ecalloc(1, sizeof(maxminddb_obj));
|
509 |
+
zend_object_std_init(&obj->std, type TSRMLS_CC);
|
510 |
+
object_properties_init(&(obj->std), type);
|
511 |
+
|
512 |
+
retval.handle = zend_objects_store_put(obj, NULL,
|
513 |
+
maxminddb_free_storage,
|
514 |
+
NULL TSRMLS_CC);
|
515 |
+
retval.handlers = &maxminddb_obj_handlers;
|
516 |
+
|
517 |
+
return retval;
|
518 |
+
}
|
519 |
+
#endif
|
520 |
+
|
521 |
+
/* *INDENT-OFF* */
|
522 |
+
static zend_function_entry maxminddb_methods[] = {
|
523 |
+
PHP_ME(MaxMind_Db_Reader, __construct, NULL,
|
524 |
+
ZEND_ACC_PUBLIC | ZEND_ACC_CTOR)
|
525 |
+
PHP_ME(MaxMind_Db_Reader, close, NULL, ZEND_ACC_PUBLIC)
|
526 |
+
PHP_ME(MaxMind_Db_Reader, get, NULL, ZEND_ACC_PUBLIC)
|
527 |
+
PHP_ME(MaxMind_Db_Reader, metadata, NULL, ZEND_ACC_PUBLIC)
|
528 |
+
{ NULL, NULL, NULL }
|
529 |
+
};
|
530 |
+
/* *INDENT-ON* */
|
531 |
+
|
532 |
+
PHP_MINIT_FUNCTION(maxminddb){
|
533 |
+
zend_class_entry ce;
|
534 |
+
|
535 |
+
INIT_CLASS_ENTRY(ce, PHP_MAXMINDDB_READER_NS, maxminddb_methods);
|
536 |
+
maxminddb_ce = zend_register_internal_class(&ce TSRMLS_CC);
|
537 |
+
maxminddb_ce->create_object = maxminddb_create_handler;
|
538 |
+
maxminddb_ce->ce_flags |= ZEND_ACC_FINAL;
|
539 |
+
memcpy(&maxminddb_obj_handlers,
|
540 |
+
zend_get_std_object_handlers(), sizeof(zend_object_handlers));
|
541 |
+
maxminddb_obj_handlers.clone_obj = NULL;
|
542 |
+
#ifdef ZEND_ENGINE_3
|
543 |
+
maxminddb_obj_handlers.offset = XtOffsetOf(maxminddb_obj, std);
|
544 |
+
maxminddb_obj_handlers.free_obj = maxminddb_free_storage;
|
545 |
+
#endif
|
546 |
+
|
547 |
+
return SUCCESS;
|
548 |
+
}
|
549 |
+
|
550 |
+
zend_module_entry maxminddb_module_entry = {
|
551 |
+
STANDARD_MODULE_HEADER,
|
552 |
+
PHP_MAXMINDDB_EXTNAME,
|
553 |
+
NULL,
|
554 |
+
PHP_MINIT(maxminddb),
|
555 |
+
NULL,
|
556 |
+
NULL,
|
557 |
+
NULL,
|
558 |
+
NULL,
|
559 |
+
PHP_MAXMINDDB_VERSION,
|
560 |
+
STANDARD_MODULE_PROPERTIES
|
561 |
+
};
|
562 |
+
|
563 |
+
#ifdef COMPILE_DL_MAXMINDDB
|
564 |
+
ZEND_GET_MODULE(maxminddb)
|
565 |
+
#endif
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/ext/php_maxminddb.h
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* MaxMind, Inc., licenses this file to you under the Apache License, Version
|
2 |
+
* 2.0 (the "License"); you may not use this file except in compliance with
|
3 |
+
* the License. You may obtain a copy of the License at
|
4 |
+
*
|
5 |
+
* http://www.apache.org/licenses/LICENSE-2.0
|
6 |
+
*
|
7 |
+
* Unless required by applicable law or agreed to in writing, software
|
8 |
+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
9 |
+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
10 |
+
* License for the specific language governing permissions and limitations
|
11 |
+
* under the License.
|
12 |
+
*/
|
13 |
+
|
14 |
+
#include <zend_interfaces.h>
|
15 |
+
|
16 |
+
#ifndef PHP_MAXMINDDB_H
|
17 |
+
#define PHP_MAXMINDDB_H 1
|
18 |
+
#define PHP_MAXMINDDB_VERSION "1.1.1"
|
19 |
+
#define PHP_MAXMINDDB_EXTNAME "maxminddb"
|
20 |
+
|
21 |
+
extern zend_module_entry maxminddb_module_entry;
|
22 |
+
#define phpext_maxminddb_ptr &maxminddb_module_entry
|
23 |
+
|
24 |
+
#endif
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/ext/tests/001-load.phpt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
--TEST--
|
2 |
+
Check for maxminddb presence
|
3 |
+
--SKIPIF--
|
4 |
+
<?php if (!extension_loaded("maxminddb")) print "skip"; ?>
|
5 |
+
--FILE--
|
6 |
+
<?php
|
7 |
+
echo "maxminddb extension is available";
|
8 |
+
?>
|
9 |
+
--EXPECT--
|
10 |
+
maxminddb extension is available
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader.php
ADDED
@@ -0,0 +1,296 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Db;
|
4 |
+
|
5 |
+
use MaxMind\Db\Reader\Decoder;
|
6 |
+
use MaxMind\Db\Reader\InvalidDatabaseException;
|
7 |
+
use MaxMind\Db\Reader\Metadata;
|
8 |
+
use MaxMind\Db\Reader\Util;
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Instances of this class provide a reader for the MaxMind DB format. IP
|
12 |
+
* addresses can be looked up using the <code>get</code> method.
|
13 |
+
*/
|
14 |
+
class Reader
|
15 |
+
{
|
16 |
+
private static $DATA_SECTION_SEPARATOR_SIZE = 16;
|
17 |
+
private static $METADATA_START_MARKER = "\xAB\xCD\xEFMaxMind.com";
|
18 |
+
private static $METADATA_START_MARKER_LENGTH = 14;
|
19 |
+
|
20 |
+
private $decoder;
|
21 |
+
private $fileHandle;
|
22 |
+
private $fileSize;
|
23 |
+
private $ipV4Start;
|
24 |
+
private $metadata;
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Constructs a Reader for the MaxMind DB format. The file passed to it must
|
28 |
+
* be a valid MaxMind DB file such as a GeoIp2 database file.
|
29 |
+
*
|
30 |
+
* @param string $database
|
31 |
+
* the MaxMind DB file to use.
|
32 |
+
* @throws \InvalidArgumentException for invalid database path or unknown arguments
|
33 |
+
* @throws \MaxMind\Db\Reader\InvalidDatabaseException
|
34 |
+
* if the database is invalid or there is an error reading
|
35 |
+
* from it.
|
36 |
+
*/
|
37 |
+
public function __construct($database)
|
38 |
+
{
|
39 |
+
if (func_num_args() != 1) {
|
40 |
+
throw new \InvalidArgumentException(
|
41 |
+
'The constructor takes exactly one argument.'
|
42 |
+
);
|
43 |
+
}
|
44 |
+
|
45 |
+
if (!is_readable($database)) {
|
46 |
+
throw new \InvalidArgumentException(
|
47 |
+
"The file \"$database\" does not exist or is not readable."
|
48 |
+
);
|
49 |
+
}
|
50 |
+
$this->fileHandle = @fopen($database, 'rb');
|
51 |
+
if ($this->fileHandle === false) {
|
52 |
+
throw new \InvalidArgumentException(
|
53 |
+
"Error opening \"$database\"."
|
54 |
+
);
|
55 |
+
}
|
56 |
+
$this->fileSize = @filesize($database);
|
57 |
+
if ($this->fileSize === false) {
|
58 |
+
throw new \UnexpectedValueException(
|
59 |
+
"Error determining the size of \"$database\"."
|
60 |
+
);
|
61 |
+
}
|
62 |
+
|
63 |
+
$start = $this->findMetadataStart($database);
|
64 |
+
$metadataDecoder = new Decoder($this->fileHandle, $start);
|
65 |
+
list($metadataArray) = $metadataDecoder->decode($start);
|
66 |
+
$this->metadata = new Metadata($metadataArray);
|
67 |
+
$this->decoder = new Decoder(
|
68 |
+
$this->fileHandle,
|
69 |
+
$this->metadata->searchTreeSize + self::$DATA_SECTION_SEPARATOR_SIZE
|
70 |
+
);
|
71 |
+
}
|
72 |
+
|
73 |
+
/**
|
74 |
+
* Looks up the <code>address</code> in the MaxMind DB.
|
75 |
+
*
|
76 |
+
* @param string $ipAddress
|
77 |
+
* the IP address to look up.
|
78 |
+
* @return array the record for the IP address.
|
79 |
+
* @throws \BadMethodCallException if this method is called on a closed database.
|
80 |
+
* @throws \InvalidArgumentException if something other than a single IP address is passed to the method.
|
81 |
+
* @throws InvalidDatabaseException
|
82 |
+
* if the database is invalid or there is an error reading
|
83 |
+
* from it.
|
84 |
+
*/
|
85 |
+
public function get($ipAddress)
|
86 |
+
{
|
87 |
+
if (func_num_args() != 1) {
|
88 |
+
throw new \InvalidArgumentException(
|
89 |
+
'Method takes exactly one argument.'
|
90 |
+
);
|
91 |
+
}
|
92 |
+
|
93 |
+
if (!is_resource($this->fileHandle)) {
|
94 |
+
throw new \BadMethodCallException(
|
95 |
+
'Attempt to read from a closed MaxMind DB.'
|
96 |
+
);
|
97 |
+
}
|
98 |
+
|
99 |
+
if (!filter_var($ipAddress, FILTER_VALIDATE_IP)) {
|
100 |
+
throw new \InvalidArgumentException(
|
101 |
+
"The value \"$ipAddress\" is not a valid IP address."
|
102 |
+
);
|
103 |
+
}
|
104 |
+
|
105 |
+
if ($this->metadata->ipVersion == 4 && strrpos($ipAddress, ':')) {
|
106 |
+
throw new \InvalidArgumentException(
|
107 |
+
"Error looking up $ipAddress. You attempted to look up an"
|
108 |
+
. " IPv6 address in an IPv4-only database."
|
109 |
+
);
|
110 |
+
}
|
111 |
+
$pointer = $this->findAddressInTree($ipAddress);
|
112 |
+
if ($pointer == 0) {
|
113 |
+
return null;
|
114 |
+
}
|
115 |
+
return $this->resolveDataPointer($pointer);
|
116 |
+
}
|
117 |
+
|
118 |
+
private function findAddressInTree($ipAddress)
|
119 |
+
{
|
120 |
+
// XXX - could simplify. Done as a byte array to ease porting
|
121 |
+
$rawAddress = array_merge(unpack('C*', inet_pton($ipAddress)));
|
122 |
+
|
123 |
+
$bitCount = count($rawAddress) * 8;
|
124 |
+
|
125 |
+
// The first node of the tree is always node 0, at the beginning of the
|
126 |
+
// value
|
127 |
+
$node = $this->startNode($bitCount);
|
128 |
+
|
129 |
+
for ($i = 0; $i < $bitCount; $i++) {
|
130 |
+
if ($node >= $this->metadata->nodeCount) {
|
131 |
+
break;
|
132 |
+
}
|
133 |
+
$tempBit = 0xFF & $rawAddress[$i >> 3];
|
134 |
+
$bit = 1 & ($tempBit >> 7 - ($i % 8));
|
135 |
+
|
136 |
+
$node = $this->readNode($node, $bit);
|
137 |
+
}
|
138 |
+
if ($node == $this->metadata->nodeCount) {
|
139 |
+
// Record is empty
|
140 |
+
return 0;
|
141 |
+
} elseif ($node > $this->metadata->nodeCount) {
|
142 |
+
// Record is a data pointer
|
143 |
+
return $node;
|
144 |
+
}
|
145 |
+
throw new InvalidDatabaseException("Something bad happened");
|
146 |
+
}
|
147 |
+
|
148 |
+
|
149 |
+
private function startNode($length)
|
150 |
+
{
|
151 |
+
// Check if we are looking up an IPv4 address in an IPv6 tree. If this
|
152 |
+
// is the case, we can skip over the first 96 nodes.
|
153 |
+
if ($this->metadata->ipVersion == 6 && $length == 32) {
|
154 |
+
return $this->ipV4StartNode();
|
155 |
+
}
|
156 |
+
// The first node of the tree is always node 0, at the beginning of the
|
157 |
+
// value
|
158 |
+
return 0;
|
159 |
+
}
|
160 |
+
|
161 |
+
private function ipV4StartNode()
|
162 |
+
{
|
163 |
+
// This is a defensive check. There is no reason to call this when you
|
164 |
+
// have an IPv4 tree.
|
165 |
+
if ($this->metadata->ipVersion == 4) {
|
166 |
+
return 0;
|
167 |
+
}
|
168 |
+
|
169 |
+
if ($this->ipV4Start != 0) {
|
170 |
+
return $this->ipV4Start;
|
171 |
+
}
|
172 |
+
$node = 0;
|
173 |
+
|
174 |
+
for ($i = 0; $i < 96 && $node < $this->metadata->nodeCount; $i++) {
|
175 |
+
$node = $this->readNode($node, 0);
|
176 |
+
}
|
177 |
+
$this->ipV4Start = $node;
|
178 |
+
return $node;
|
179 |
+
}
|
180 |
+
|
181 |
+
private function readNode($nodeNumber, $index)
|
182 |
+
{
|
183 |
+
$baseOffset = $nodeNumber * $this->metadata->nodeByteSize;
|
184 |
+
|
185 |
+
// XXX - probably could condense this.
|
186 |
+
switch ($this->metadata->recordSize) {
|
187 |
+
case 24:
|
188 |
+
$bytes = Util::read($this->fileHandle, $baseOffset + $index * 3, 3);
|
189 |
+
list(, $node) = unpack('N', "\x00" . $bytes);
|
190 |
+
return $node;
|
191 |
+
case 28:
|
192 |
+
$middleByte = Util::read($this->fileHandle, $baseOffset + 3, 1);
|
193 |
+
list(, $middle) = unpack('C', $middleByte);
|
194 |
+
if ($index == 0) {
|
195 |
+
$middle = (0xF0 & $middle) >> 4;
|
196 |
+
} else {
|
197 |
+
$middle = 0x0F & $middle;
|
198 |
+
}
|
199 |
+
$bytes = Util::read($this->fileHandle, $baseOffset + $index * 4, 3);
|
200 |
+
list(, $node) = unpack('N', chr($middle) . $bytes);
|
201 |
+
return $node;
|
202 |
+
case 32:
|
203 |
+
$bytes = Util::read($this->fileHandle, $baseOffset + $index * 4, 4);
|
204 |
+
list(, $node) = unpack('N', $bytes);
|
205 |
+
return $node;
|
206 |
+
default:
|
207 |
+
throw new InvalidDatabaseException(
|
208 |
+
'Unknown record size: '
|
209 |
+
. $this->metadata->recordSize
|
210 |
+
);
|
211 |
+
}
|
212 |
+
}
|
213 |
+
|
214 |
+
private function resolveDataPointer($pointer)
|
215 |
+
{
|
216 |
+
$resolved = $pointer - $this->metadata->nodeCount
|
217 |
+
+ $this->metadata->searchTreeSize;
|
218 |
+
if ($resolved > $this->fileSize) {
|
219 |
+
throw new InvalidDatabaseException(
|
220 |
+
"The MaxMind DB file's search tree is corrupt"
|
221 |
+
);
|
222 |
+
}
|
223 |
+
|
224 |
+
list($data) = $this->decoder->decode($resolved);
|
225 |
+
return $data;
|
226 |
+
}
|
227 |
+
|
228 |
+
/*
|
229 |
+
* This is an extremely naive but reasonably readable implementation. There
|
230 |
+
* are much faster algorithms (e.g., Boyer-Moore) for this if speed is ever
|
231 |
+
* an issue, but I suspect it won't be.
|
232 |
+
*/
|
233 |
+
private function findMetadataStart($filename)
|
234 |
+
{
|
235 |
+
$handle = $this->fileHandle;
|
236 |
+
$fstat = fstat($handle);
|
237 |
+
$fileSize = $fstat['size'];
|
238 |
+
$marker = self::$METADATA_START_MARKER;
|
239 |
+
$markerLength = self::$METADATA_START_MARKER_LENGTH;
|
240 |
+
|
241 |
+
for ($i = 0; $i < $fileSize - $markerLength + 1; $i++) {
|
242 |
+
for ($j = 0; $j < $markerLength; $j++) {
|
243 |
+
fseek($handle, $fileSize - $i - $j - 1);
|
244 |
+
$matchBit = fgetc($handle);
|
245 |
+
if ($matchBit != $marker[$markerLength - $j - 1]) {
|
246 |
+
continue 2;
|
247 |
+
}
|
248 |
+
}
|
249 |
+
return $fileSize - $i;
|
250 |
+
}
|
251 |
+
throw new InvalidDatabaseException(
|
252 |
+
"Error opening database file ($filename). " .
|
253 |
+
'Is this a valid MaxMind DB file?'
|
254 |
+
);
|
255 |
+
}
|
256 |
+
|
257 |
+
/**
|
258 |
+
* @throws \InvalidArgumentException if arguments are passed to the method.
|
259 |
+
* @throws \BadMethodCallException if the database has been closed.
|
260 |
+
* @return Metadata object for the database.
|
261 |
+
*/
|
262 |
+
public function metadata()
|
263 |
+
{
|
264 |
+
if (func_num_args()) {
|
265 |
+
throw new \InvalidArgumentException(
|
266 |
+
'Method takes no arguments.'
|
267 |
+
);
|
268 |
+
}
|
269 |
+
|
270 |
+
// Not technically required, but this makes it consistent with
|
271 |
+
// C extension and it allows us to change our implementation later.
|
272 |
+
if (!is_resource($this->fileHandle)) {
|
273 |
+
throw new \BadMethodCallException(
|
274 |
+
'Attempt to read from a closed MaxMind DB.'
|
275 |
+
);
|
276 |
+
}
|
277 |
+
|
278 |
+
return $this->metadata;
|
279 |
+
}
|
280 |
+
|
281 |
+
/**
|
282 |
+
* Closes the MaxMind DB and returns resources to the system.
|
283 |
+
*
|
284 |
+
* @throws \Exception
|
285 |
+
* if an I/O error occurs.
|
286 |
+
*/
|
287 |
+
public function close()
|
288 |
+
{
|
289 |
+
if (!is_resource($this->fileHandle)) {
|
290 |
+
throw new \BadMethodCallException(
|
291 |
+
'Attempt to close a closed MaxMind DB.'
|
292 |
+
);
|
293 |
+
}
|
294 |
+
fclose($this->fileHandle);
|
295 |
+
}
|
296 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php
ADDED
@@ -0,0 +1,309 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Db\Reader;
|
4 |
+
|
5 |
+
use MaxMind\Db\Reader\InvalidDatabaseException;
|
6 |
+
use MaxMind\Db\Reader\Util;
|
7 |
+
|
8 |
+
class Decoder
|
9 |
+
{
|
10 |
+
|
11 |
+
private $fileStream;
|
12 |
+
private $pointerBase;
|
13 |
+
// This is only used for unit testing
|
14 |
+
private $pointerTestHack;
|
15 |
+
private $switchByteOrder;
|
16 |
+
|
17 |
+
private $types = array(
|
18 |
+
0 => 'extended',
|
19 |
+
1 => 'pointer',
|
20 |
+
2 => 'utf8_string',
|
21 |
+
3 => 'double',
|
22 |
+
4 => 'bytes',
|
23 |
+
5 => 'uint16',
|
24 |
+
6 => 'uint32',
|
25 |
+
7 => 'map',
|
26 |
+
8 => 'int32',
|
27 |
+
9 => 'uint64',
|
28 |
+
10 => 'uint128',
|
29 |
+
11 => 'array',
|
30 |
+
12 => 'container',
|
31 |
+
13 => 'end_marker',
|
32 |
+
14 => 'boolean',
|
33 |
+
15 => 'float',
|
34 |
+
);
|
35 |
+
|
36 |
+
public function __construct(
|
37 |
+
$fileStream,
|
38 |
+
$pointerBase = 0,
|
39 |
+
$pointerTestHack = false
|
40 |
+
) {
|
41 |
+
$this->fileStream = $fileStream;
|
42 |
+
$this->pointerBase = $pointerBase;
|
43 |
+
$this->pointerTestHack = $pointerTestHack;
|
44 |
+
|
45 |
+
$this->switchByteOrder = $this->isPlatformLittleEndian();
|
46 |
+
}
|
47 |
+
|
48 |
+
|
49 |
+
public function decode($offset)
|
50 |
+
{
|
51 |
+
list(, $ctrlByte) = unpack(
|
52 |
+
'C',
|
53 |
+
Util::read($this->fileStream, $offset, 1)
|
54 |
+
);
|
55 |
+
$offset++;
|
56 |
+
|
57 |
+
$type = $this->types[$ctrlByte >> 5];
|
58 |
+
|
59 |
+
// Pointers are a special case, we don't read the next $size bytes, we
|
60 |
+
// use the size to determine the length of the pointer and then follow
|
61 |
+
// it.
|
62 |
+
if ($type == 'pointer') {
|
63 |
+
list($pointer, $offset) = $this->decodePointer($ctrlByte, $offset);
|
64 |
+
|
65 |
+
// for unit testing
|
66 |
+
if ($this->pointerTestHack) {
|
67 |
+
return array($pointer);
|
68 |
+
}
|
69 |
+
|
70 |
+
list($result) = $this->decode($pointer);
|
71 |
+
|
72 |
+
return array($result, $offset);
|
73 |
+
}
|
74 |
+
|
75 |
+
if ($type == 'extended') {
|
76 |
+
list(, $nextByte) = unpack(
|
77 |
+
'C',
|
78 |
+
Util::read($this->fileStream, $offset, 1)
|
79 |
+
);
|
80 |
+
|
81 |
+
$typeNum = $nextByte + 7;
|
82 |
+
|
83 |
+
if ($typeNum < 8) {
|
84 |
+
throw new InvalidDatabaseException(
|
85 |
+
"Something went horribly wrong in the decoder. An extended type "
|
86 |
+
. "resolved to a type number < 8 ("
|
87 |
+
. $this->types[$typeNum]
|
88 |
+
. ")"
|
89 |
+
);
|
90 |
+
}
|
91 |
+
|
92 |
+
$type = $this->types[$typeNum];
|
93 |
+
$offset++;
|
94 |
+
}
|
95 |
+
|
96 |
+
list($size, $offset) = $this->sizeFromCtrlByte($ctrlByte, $offset);
|
97 |
+
|
98 |
+
return $this->decodeByType($type, $offset, $size);
|
99 |
+
}
|
100 |
+
|
101 |
+
private function decodeByType($type, $offset, $size)
|
102 |
+
{
|
103 |
+
switch ($type) {
|
104 |
+
case 'map':
|
105 |
+
return $this->decodeMap($size, $offset);
|
106 |
+
case 'array':
|
107 |
+
return $this->decodeArray($size, $offset);
|
108 |
+
case 'boolean':
|
109 |
+
return array($this->decodeBoolean($size), $offset);
|
110 |
+
}
|
111 |
+
|
112 |
+
$newOffset = $offset + $size;
|
113 |
+
$bytes = Util::read($this->fileStream, $offset, $size);
|
114 |
+
switch ($type) {
|
115 |
+
case 'utf8_string':
|
116 |
+
return array($this->decodeString($bytes), $newOffset);
|
117 |
+
case 'double':
|
118 |
+
$this->verifySize(8, $size);
|
119 |
+
return array($this->decodeDouble($bytes), $newOffset);
|
120 |
+
case 'float':
|
121 |
+
$this->verifySize(4, $size);
|
122 |
+
return array($this->decodeFloat($bytes), $newOffset);
|
123 |
+
case 'bytes':
|
124 |
+
return array($bytes, $newOffset);
|
125 |
+
case 'uint16':
|
126 |
+
case 'uint32':
|
127 |
+
return array($this->decodeUint($bytes), $newOffset);
|
128 |
+
case 'int32':
|
129 |
+
return array($this->decodeInt32($bytes), $newOffset);
|
130 |
+
case 'uint64':
|
131 |
+
case 'uint128':
|
132 |
+
return array($this->decodeBigUint($bytes, $size), $newOffset);
|
133 |
+
default:
|
134 |
+
throw new InvalidDatabaseException(
|
135 |
+
"Unknown or unexpected type: " . $type
|
136 |
+
);
|
137 |
+
}
|
138 |
+
}
|
139 |
+
|
140 |
+
private function verifySize($expected, $actual)
|
141 |
+
{
|
142 |
+
if ($expected != $actual) {
|
143 |
+
throw new InvalidDatabaseException(
|
144 |
+
"The MaxMind DB file's data section contains bad data (unknown data type or corrupt data)"
|
145 |
+
);
|
146 |
+
}
|
147 |
+
}
|
148 |
+
|
149 |
+
private function decodeArray($size, $offset)
|
150 |
+
{
|
151 |
+
$array = array();
|
152 |
+
|
153 |
+
for ($i = 0; $i < $size; $i++) {
|
154 |
+
list($value, $offset) = $this->decode($offset);
|
155 |
+
array_push($array, $value);
|
156 |
+
}
|
157 |
+
|
158 |
+
return array($array, $offset);
|
159 |
+
}
|
160 |
+
|
161 |
+
private function decodeBoolean($size)
|
162 |
+
{
|
163 |
+
return $size == 0 ? false : true;
|
164 |
+
}
|
165 |
+
|
166 |
+
private function decodeDouble($bits)
|
167 |
+
{
|
168 |
+
// XXX - Assumes IEEE 754 double on platform
|
169 |
+
list(, $double) = unpack('d', $this->maybeSwitchByteOrder($bits));
|
170 |
+
return $double;
|
171 |
+
}
|
172 |
+
|
173 |
+
private function decodeFloat($bits)
|
174 |
+
{
|
175 |
+
// XXX - Assumes IEEE 754 floats on platform
|
176 |
+
list(, $float) = unpack('f', $this->maybeSwitchByteOrder($bits));
|
177 |
+
return $float;
|
178 |
+
}
|
179 |
+
|
180 |
+
private function decodeInt32($bytes)
|
181 |
+
{
|
182 |
+
$bytes = $this->zeroPadLeft($bytes, 4);
|
183 |
+
list(, $int) = unpack('l', $this->maybeSwitchByteOrder($bytes));
|
184 |
+
return $int;
|
185 |
+
}
|
186 |
+
|
187 |
+
private function decodeMap($size, $offset)
|
188 |
+
{
|
189 |
+
|
190 |
+
$map = array();
|
191 |
+
|
192 |
+
for ($i = 0; $i < $size; $i++) {
|
193 |
+
list($key, $offset) = $this->decode($offset);
|
194 |
+
list($value, $offset) = $this->decode($offset);
|
195 |
+
$map[$key] = $value;
|
196 |
+
}
|
197 |
+
|
198 |
+
return array($map, $offset);
|
199 |
+
}
|
200 |
+
|
201 |
+
private $pointerValueOffset = array(
|
202 |
+
1 => 0,
|
203 |
+
2 => 2048,
|
204 |
+
3 => 526336,
|
205 |
+
4 => 0,
|
206 |
+
);
|
207 |
+
|
208 |
+
private function decodePointer($ctrlByte, $offset)
|
209 |
+
{
|
210 |
+
$pointerSize = (($ctrlByte >> 3) & 0x3) + 1;
|
211 |
+
|
212 |
+
$buffer = Util::read($this->fileStream, $offset, $pointerSize);
|
213 |
+
$offset = $offset + $pointerSize;
|
214 |
+
|
215 |
+
$packed = $pointerSize == 4
|
216 |
+
? $buffer
|
217 |
+
: (pack('C', $ctrlByte & 0x7)) . $buffer;
|
218 |
+
|
219 |
+
$unpacked = $this->decodeUint($packed);
|
220 |
+
$pointer = $unpacked + $this->pointerBase
|
221 |
+
+ $this->pointerValueOffset[$pointerSize];
|
222 |
+
|
223 |
+
return array($pointer, $offset);
|
224 |
+
}
|
225 |
+
|
226 |
+
private function decodeUint($bytes)
|
227 |
+
{
|
228 |
+
list(, $int) = unpack('N', $this->zeroPadLeft($bytes, 4));
|
229 |
+
return $int;
|
230 |
+
}
|
231 |
+
|
232 |
+
private function decodeBigUint($bytes, $byteLength)
|
233 |
+
{
|
234 |
+
$maxUintBytes = log(PHP_INT_MAX, 2) / 8;
|
235 |
+
|
236 |
+
if ($byteLength == 0) {
|
237 |
+
return 0;
|
238 |
+
}
|
239 |
+
|
240 |
+
$numberOfLongs = ceil($byteLength / 4);
|
241 |
+
$paddedLength = $numberOfLongs * 4;
|
242 |
+
$paddedBytes = $this->zeroPadLeft($bytes, $paddedLength);
|
243 |
+
$unpacked = array_merge(unpack("N$numberOfLongs", $paddedBytes));
|
244 |
+
|
245 |
+
$integer = 0;
|
246 |
+
|
247 |
+
// 2^32
|
248 |
+
$twoTo32 = '4294967296';
|
249 |
+
|
250 |
+
foreach ($unpacked as $part) {
|
251 |
+
// We only use gmp or bcmath if the final value is too big
|
252 |
+
if ($byteLength <= $maxUintBytes) {
|
253 |
+
$integer = ($integer << 32) + $part;
|
254 |
+
} elseif (extension_loaded('gmp')) {
|
255 |
+
$integer = gmp_strval(gmp_add(gmp_mul($integer, $twoTo32), $part));
|
256 |
+
} elseif (extension_loaded('bcmath')) {
|
257 |
+
$integer = bcadd(bcmul($integer, $twoTo32), $part);
|
258 |
+
} else {
|
259 |
+
throw new \RuntimeException(
|
260 |
+
'The gmp or bcmath extension must be installed to read this database.'
|
261 |
+
);
|
262 |
+
}
|
263 |
+
}
|
264 |
+
return $integer;
|
265 |
+
}
|
266 |
+
|
267 |
+
private function decodeString($bytes)
|
268 |
+
{
|
269 |
+
// XXX - NOOP. As far as I know, the end user has to explicitly set the
|
270 |
+
// encoding in PHP. Strings are just bytes.
|
271 |
+
return $bytes;
|
272 |
+
}
|
273 |
+
|
274 |
+
private function sizeFromCtrlByte($ctrlByte, $offset)
|
275 |
+
{
|
276 |
+
$size = $ctrlByte & 0x1f;
|
277 |
+
$bytesToRead = $size < 29 ? 0 : $size - 28;
|
278 |
+
$bytes = Util::read($this->fileStream, $offset, $bytesToRead);
|
279 |
+
$decoded = $this->decodeUint($bytes);
|
280 |
+
|
281 |
+
if ($size == 29) {
|
282 |
+
$size = 29 + $decoded;
|
283 |
+
} elseif ($size == 30) {
|
284 |
+
$size = 285 + $decoded;
|
285 |
+
} elseif ($size > 30) {
|
286 |
+
$size = ($decoded & (0x0FFFFFFF >> (32 - (8 * $bytesToRead))))
|
287 |
+
+ 65821;
|
288 |
+
}
|
289 |
+
|
290 |
+
return array($size, $offset + $bytesToRead);
|
291 |
+
}
|
292 |
+
|
293 |
+
private function zeroPadLeft($content, $desiredLength)
|
294 |
+
{
|
295 |
+
return str_pad($content, $desiredLength, "\x00", STR_PAD_LEFT);
|
296 |
+
}
|
297 |
+
|
298 |
+
private function maybeSwitchByteOrder($bytes)
|
299 |
+
{
|
300 |
+
return $this->switchByteOrder ? strrev($bytes) : $bytes;
|
301 |
+
}
|
302 |
+
|
303 |
+
private function isPlatformLittleEndian()
|
304 |
+
{
|
305 |
+
$testint = 0x00FF;
|
306 |
+
$packed = pack('S', $testint);
|
307 |
+
return $testint === current(unpack('v', $packed));
|
308 |
+
}
|
309 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Db\Reader;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class should be thrown when unexpected data is found in the database.
|
7 |
+
*/
|
8 |
+
class InvalidDatabaseException extends \Exception
|
9 |
+
{
|
10 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Db\Reader;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class provides the metadata for the MaxMind DB file.
|
7 |
+
*
|
8 |
+
* @property integer nodeCount This is an unsigned 32-bit integer indicating
|
9 |
+
* the number of nodes in the search tree.
|
10 |
+
*
|
11 |
+
* @property integer recordSize This is an unsigned 16-bit integer. It
|
12 |
+
* indicates the number of bits in a record in the search tree. Note that each
|
13 |
+
* node consists of two records.
|
14 |
+
*
|
15 |
+
* @property integer ipVersion This is an unsigned 16-bit integer which is
|
16 |
+
* always 4 or 6. It indicates whether the database contains IPv4 or IPv6
|
17 |
+
* address data.
|
18 |
+
*
|
19 |
+
* @property string databaseType This is a string that indicates the structure
|
20 |
+
* of each data record associated with an IP address. The actual definition of
|
21 |
+
* these structures is left up to the database creator.
|
22 |
+
*
|
23 |
+
* @property array languages An array of strings, each of which is a language
|
24 |
+
* code. A given record may contain data items that have been localized to
|
25 |
+
* some or all of these languages. This may be undefined.
|
26 |
+
*
|
27 |
+
* @property integer binaryFormatMajorVersion This is an unsigned 16-bit
|
28 |
+
* integer indicating the major version number for the database's binary
|
29 |
+
* format.
|
30 |
+
*
|
31 |
+
* @property integer binaryFormatMinorVersion This is an unsigned 16-bit
|
32 |
+
* integer indicating the minor version number for the database's binary format.
|
33 |
+
*
|
34 |
+
* @property integer buildEpoch This is an unsigned 64-bit integer that
|
35 |
+
* contains the database build timestamp as a Unix epoch value.
|
36 |
+
*
|
37 |
+
* @property array description This key will always point to a map
|
38 |
+
* (associative array). The keys of that map will be language codes, and the
|
39 |
+
* values will be a description in that language as a UTF-8 string. May be
|
40 |
+
* undefined for some databases.
|
41 |
+
*/
|
42 |
+
class Metadata
|
43 |
+
{
|
44 |
+
private $binaryFormatMajorVersion;
|
45 |
+
private $binaryFormatMinorVersion;
|
46 |
+
private $buildEpoch;
|
47 |
+
private $databaseType;
|
48 |
+
private $description;
|
49 |
+
private $ipVersion;
|
50 |
+
private $languages;
|
51 |
+
private $nodeByteSize;
|
52 |
+
private $nodeCount;
|
53 |
+
private $recordSize;
|
54 |
+
private $searchTreeSize;
|
55 |
+
|
56 |
+
public function __construct($metadata)
|
57 |
+
{
|
58 |
+
$this->binaryFormatMajorVersion =
|
59 |
+
$metadata['binary_format_major_version'];
|
60 |
+
$this->binaryFormatMinorVersion =
|
61 |
+
$metadata['binary_format_minor_version'];
|
62 |
+
$this->buildEpoch = $metadata['build_epoch'];
|
63 |
+
$this->databaseType = $metadata['database_type'];
|
64 |
+
$this->languages = $metadata['languages'];
|
65 |
+
$this->description = $metadata['description'];
|
66 |
+
$this->ipVersion = $metadata['ip_version'];
|
67 |
+
$this->nodeCount = $metadata['node_count'];
|
68 |
+
$this->recordSize = $metadata['record_size'];
|
69 |
+
$this->nodeByteSize = $this->recordSize / 4;
|
70 |
+
$this->searchTreeSize = $this->nodeCount * $this->nodeByteSize;
|
71 |
+
}
|
72 |
+
|
73 |
+
public function __get($var)
|
74 |
+
{
|
75 |
+
return $this->$var;
|
76 |
+
}
|
77 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Db\Reader;
|
4 |
+
|
5 |
+
use MaxMind\Db\Reader\InvalidDatabaseException;
|
6 |
+
|
7 |
+
class Util
|
8 |
+
{
|
9 |
+
public static function read($stream, $offset, $numberOfBytes)
|
10 |
+
{
|
11 |
+
if ($numberOfBytes == 0) {
|
12 |
+
return '';
|
13 |
+
}
|
14 |
+
if (fseek($stream, $offset) == 0) {
|
15 |
+
$value = fread($stream, $numberOfBytes);
|
16 |
+
|
17 |
+
// We check that the number of bytes read is equal to the number
|
18 |
+
// asked for. We use ftell as getting the length of $value is
|
19 |
+
// much slower.
|
20 |
+
if (ftell($stream) - $offset === $numberOfBytes) {
|
21 |
+
return $value;
|
22 |
+
}
|
23 |
+
}
|
24 |
+
throw new InvalidDatabaseException(
|
25 |
+
"The MaxMind DB file contains bad data"
|
26 |
+
);
|
27 |
+
}
|
28 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/CHANGELOG.md
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CHANGELOG
|
2 |
+
=========
|
3 |
+
|
4 |
+
0.3.1 (2016-08-10)
|
5 |
+
------------------
|
6 |
+
|
7 |
+
* On Mac OS X when using a curl built against SecureTransport, the certs
|
8 |
+
in the system's keychain will now be used instead of the CA bundle on
|
9 |
+
the file system.
|
10 |
+
|
11 |
+
0.3.0 (2016-08-09)
|
12 |
+
------------------
|
13 |
+
|
14 |
+
* This package now uses `composer/ca-bundle` by default rather than a CA
|
15 |
+
bundle distributed with this package. `composer/ca-bundle` will first try
|
16 |
+
to use the system CA bundle and will fall back to the Mozilla CA bundle
|
17 |
+
when no system bundle is available. You may still specify your own bundle
|
18 |
+
using the `caBundle` option.
|
19 |
+
|
20 |
+
0.2.1 (2016-06-13)
|
21 |
+
------------------
|
22 |
+
|
23 |
+
* Fix typo in code to copy cert to temp directory.
|
24 |
+
|
25 |
+
0.2.0 (2016-06-10)
|
26 |
+
------------------
|
27 |
+
|
28 |
+
* Added handling of additional error codes that the web service may return.
|
29 |
+
* A `USER_ID_UNKNOWN` error will now throw a
|
30 |
+
`MaxMind\Exception\AuthenticationException`.
|
31 |
+
* Added support for `proxy` option. Closes #6.
|
32 |
+
|
33 |
+
0.1.0 (2016-05-23)
|
34 |
+
------------------
|
35 |
+
|
36 |
+
* A `PERMISSION_REQUIRED` error will now throw a `PermissionRequiredException`
|
37 |
+
exception.
|
38 |
+
* Added a `.gitattributes` file to exclude tests from Composer releases.
|
39 |
+
GitHub #7.
|
40 |
+
* Updated included cert bundle.
|
41 |
+
|
42 |
+
0.0.4 (2015-07-21)
|
43 |
+
------------------
|
44 |
+
|
45 |
+
* Added extremely basic tests for the curl calls.
|
46 |
+
* Fixed broken POSTs.
|
47 |
+
|
48 |
+
0.0.3 (2015-06-30)
|
49 |
+
------------------
|
50 |
+
|
51 |
+
* Floats now work with the `timeout` and `connectTimeout` options. Fix by
|
52 |
+
Benjamin Pick. GitHub PR #2.
|
53 |
+
* `curl_error` is now used instead of `curl_strerror`. The latter is only
|
54 |
+
available for PHP 5.5 or later. Fix by Benjamin Pick. GitHub PR #1.
|
55 |
+
|
56 |
+
|
57 |
+
0.0.2 (2015-06-09)
|
58 |
+
------------------
|
59 |
+
|
60 |
+
* An exception is now immediately thrown curl error rather than letting later
|
61 |
+
status code checks throw an exception. This improves the exception message
|
62 |
+
greatly.
|
63 |
+
* If this library is inside a phar archive, the CA certs are copied out of the
|
64 |
+
archive to a temporary file so that curl can use them.
|
65 |
+
|
66 |
+
0.0.1 (2015-06-01)
|
67 |
+
------------------
|
68 |
+
|
69 |
+
* Initial release.
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
Apache License
|
3 |
+
Version 2.0, January 2004
|
4 |
+
http://www.apache.org/licenses/
|
5 |
+
|
6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7 |
+
|
8 |
+
1. Definitions.
|
9 |
+
|
10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
12 |
+
|
13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14 |
+
the copyright owner that is granting the License.
|
15 |
+
|
16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
17 |
+
other entities that control, are controlled by, or are under common
|
18 |
+
control with that entity. For the purposes of this definition,
|
19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
20 |
+
direction or management of such entity, whether by contract or
|
21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23 |
+
|
24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25 |
+
exercising permissions granted by this License.
|
26 |
+
|
27 |
+
"Source" form shall mean the preferred form for making modifications,
|
28 |
+
including but not limited to software source code, documentation
|
29 |
+
source, and configuration files.
|
30 |
+
|
31 |
+
"Object" form shall mean any form resulting from mechanical
|
32 |
+
transformation or translation of a Source form, including but
|
33 |
+
not limited to compiled object code, generated documentation,
|
34 |
+
and conversions to other media types.
|
35 |
+
|
36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
37 |
+
Object form, made available under the License, as indicated by a
|
38 |
+
copyright notice that is included in or attached to the work
|
39 |
+
(an example is provided in the Appendix below).
|
40 |
+
|
41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42 |
+
form, that is based on (or derived from) the Work and for which the
|
43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
45 |
+
of this License, Derivative Works shall not include works that remain
|
46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47 |
+
the Work and Derivative Works thereof.
|
48 |
+
|
49 |
+
"Contribution" shall mean any work of authorship, including
|
50 |
+
the original version of the Work and any modifications or additions
|
51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
55 |
+
means any form of electronic, verbal, or written communication sent
|
56 |
+
to the Licensor or its representatives, including but not limited to
|
57 |
+
communication on electronic mailing lists, source code control systems,
|
58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
60 |
+
excluding communication that is conspicuously marked or otherwise
|
61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
62 |
+
|
63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
65 |
+
subsequently incorporated within the Work.
|
66 |
+
|
67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
72 |
+
Work and such Derivative Works in Source or Object form.
|
73 |
+
|
74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77 |
+
(except as stated in this section) patent license to make, have made,
|
78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79 |
+
where such license applies only to those patent claims licensable
|
80 |
+
by such Contributor that are necessarily infringed by their
|
81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
83 |
+
institute patent litigation against any entity (including a
|
84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85 |
+
or a Contribution incorporated within the Work constitutes direct
|
86 |
+
or contributory patent infringement, then any patent licenses
|
87 |
+
granted to You under this License for that Work shall terminate
|
88 |
+
as of the date such litigation is filed.
|
89 |
+
|
90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
91 |
+
Work or Derivative Works thereof in any medium, with or without
|
92 |
+
modifications, and in Source or Object form, provided that You
|
93 |
+
meet the following conditions:
|
94 |
+
|
95 |
+
(a) You must give any other recipients of the Work or
|
96 |
+
Derivative Works a copy of this License; and
|
97 |
+
|
98 |
+
(b) You must cause any modified files to carry prominent notices
|
99 |
+
stating that You changed the files; and
|
100 |
+
|
101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
102 |
+
that You distribute, all copyright, patent, trademark, and
|
103 |
+
attribution notices from the Source form of the Work,
|
104 |
+
excluding those notices that do not pertain to any part of
|
105 |
+
the Derivative Works; and
|
106 |
+
|
107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108 |
+
distribution, then any Derivative Works that You distribute must
|
109 |
+
include a readable copy of the attribution notices contained
|
110 |
+
within such NOTICE file, excluding those notices that do not
|
111 |
+
pertain to any part of the Derivative Works, in at least one
|
112 |
+
of the following places: within a NOTICE text file distributed
|
113 |
+
as part of the Derivative Works; within the Source form or
|
114 |
+
documentation, if provided along with the Derivative Works; or,
|
115 |
+
within a display generated by the Derivative Works, if and
|
116 |
+
wherever such third-party notices normally appear. The contents
|
117 |
+
of the NOTICE file are for informational purposes only and
|
118 |
+
do not modify the License. You may add Your own attribution
|
119 |
+
notices within Derivative Works that You distribute, alongside
|
120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
121 |
+
that such additional attribution notices cannot be construed
|
122 |
+
as modifying the License.
|
123 |
+
|
124 |
+
You may add Your own copyright statement to Your modifications and
|
125 |
+
may provide additional or different license terms and conditions
|
126 |
+
for use, reproduction, or distribution of Your modifications, or
|
127 |
+
for any such Derivative Works as a whole, provided Your use,
|
128 |
+
reproduction, and distribution of the Work otherwise complies with
|
129 |
+
the conditions stated in this License.
|
130 |
+
|
131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
133 |
+
by You to the Licensor shall be under the terms and conditions of
|
134 |
+
this License, without any additional terms or conditions.
|
135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136 |
+
the terms of any separate license agreement you may have executed
|
137 |
+
with Licensor regarding such Contributions.
|
138 |
+
|
139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
141 |
+
except as required for reasonable and customary use in describing the
|
142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
143 |
+
|
144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145 |
+
agreed to in writing, Licensor provides the Work (and each
|
146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148 |
+
implied, including, without limitation, any warranties or conditions
|
149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151 |
+
appropriateness of using or redistributing the Work and assume any
|
152 |
+
risks associated with Your exercise of permissions under this License.
|
153 |
+
|
154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
155 |
+
whether in tort (including negligence), contract, or otherwise,
|
156 |
+
unless required by applicable law (such as deliberate and grossly
|
157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158 |
+
liable to You for damages, including any direct, indirect, special,
|
159 |
+
incidental, or consequential damages of any character arising as a
|
160 |
+
result of this License or out of the use or inability to use the
|
161 |
+
Work (including but not limited to damages for loss of goodwill,
|
162 |
+
work stoppage, computer failure or malfunction, or any and all
|
163 |
+
other commercial damages or losses), even if such Contributor
|
164 |
+
has been advised of the possibility of such damages.
|
165 |
+
|
166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169 |
+
or other liability obligations and/or rights consistent with this
|
170 |
+
License. However, in accepting such obligations, You may act only
|
171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172 |
+
of any other Contributor, and only if You agree to indemnify,
|
173 |
+
defend, and hold each Contributor harmless for any liability
|
174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
175 |
+
of your accepting any such warranty or additional liability.
|
176 |
+
|
177 |
+
END OF TERMS AND CONDITIONS
|
178 |
+
|
179 |
+
APPENDIX: How to apply the Apache License to your work.
|
180 |
+
|
181 |
+
To apply the Apache License to your work, attach the following
|
182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183 |
+
replaced with your own identifying information. (Don't include
|
184 |
+
the brackets!) The text should be enclosed in the appropriate
|
185 |
+
comment syntax for the file format. We also recommend that a
|
186 |
+
file or class name and description of purpose be included on the
|
187 |
+
same "printed page" as the copyright notice for easier
|
188 |
+
identification within third-party archives.
|
189 |
+
|
190 |
+
Copyright [yyyy] [name of copyright owner]
|
191 |
+
|
192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193 |
+
you may not use this file except in compliance with the License.
|
194 |
+
You may obtain a copy of the License at
|
195 |
+
|
196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
197 |
+
|
198 |
+
Unless required by applicable law or agreed to in writing, software
|
199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201 |
+
See the License for the specific language governing permissions and
|
202 |
+
limitations under the License.
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/README.md
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# MaxMind Web Service Common #
|
2 |
+
|
3 |
+
This is _not_ intended for direct use by third parties. Rather, it is for
|
4 |
+
shared code between MaxMind's various web service APIs.
|
5 |
+
|
6 |
+
## Requirements ##
|
7 |
+
|
8 |
+
This code requires PHP 5.3 or greater. Older versions of PHP are not
|
9 |
+
supported. This library works and is tested with HHVM.
|
10 |
+
|
11 |
+
There are several other dependencies as defined in the `composer.json` file.
|
12 |
+
|
13 |
+
## Contributing ##
|
14 |
+
|
15 |
+
Patches and pull requests are encouraged. All code should follow the PSR-2
|
16 |
+
style guidelines. Please include unit tests whenever possible.
|
17 |
+
|
18 |
+
## Versioning ##
|
19 |
+
|
20 |
+
This API uses [Semantic Versioning](http://semver.org/).
|
21 |
+
|
22 |
+
## Copyright and License ##
|
23 |
+
|
24 |
+
This software is Copyright (c) 2015 by MaxMind, Inc.
|
25 |
+
|
26 |
+
This is free software, licensed under the Apache License, Version 2.0.
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/composer.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "maxmind/web-service-common",
|
3 |
+
"description": "Internal MaxMind Web Service API",
|
4 |
+
"minimum-stability": "stable",
|
5 |
+
"homepage": "https://github.com/maxmind/mm-web-service-api-php",
|
6 |
+
"type": "library",
|
7 |
+
"license": "Apache-2.0",
|
8 |
+
"authors": [
|
9 |
+
{
|
10 |
+
"name": "Gregory Oschwald",
|
11 |
+
"email": "goschwald@maxmind.com"
|
12 |
+
}
|
13 |
+
],
|
14 |
+
"require": {
|
15 |
+
"php": ">=5.3",
|
16 |
+
"composer/ca-bundle": "^1.0.3",
|
17 |
+
"ext-curl": "*",
|
18 |
+
"ext-json": "*"
|
19 |
+
},
|
20 |
+
"require-dev": {
|
21 |
+
"phpunit/phpunit": "4.*",
|
22 |
+
"squizlabs/php_codesniffer": "2.*"
|
23 |
+
},
|
24 |
+
"autoload": {
|
25 |
+
"psr-4": {
|
26 |
+
"MaxMind\\": "src"
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/AuthenticationException.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents an error authenticating
|
7 |
+
*/
|
8 |
+
class AuthenticationException extends InvalidRequestException
|
9 |
+
{
|
10 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/HttpException.php
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents an HTTP transport error.
|
7 |
+
*/
|
8 |
+
class HttpException extends WebServiceException
|
9 |
+
{
|
10 |
+
/**
|
11 |
+
* The URI queried
|
12 |
+
*/
|
13 |
+
private $uri;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* @param string $message A message describing the error.
|
17 |
+
* @param int $httpStatus The HTTP status code of the response
|
18 |
+
* @param string $uri The URI used in the request.
|
19 |
+
* @param \Exception $previous The previous exception, if any.
|
20 |
+
*/
|
21 |
+
public function __construct(
|
22 |
+
$message,
|
23 |
+
$httpStatus,
|
24 |
+
$uri,
|
25 |
+
\Exception $previous = null
|
26 |
+
) {
|
27 |
+
$this->uri = $uri;
|
28 |
+
parent::__construct($message, $httpStatus, $previous);
|
29 |
+
}
|
30 |
+
|
31 |
+
public function getUri()
|
32 |
+
{
|
33 |
+
return $this->uri;
|
34 |
+
}
|
35 |
+
|
36 |
+
public function getStatusCode()
|
37 |
+
{
|
38 |
+
return $this->getCode();
|
39 |
+
}
|
40 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/InsufficientFundsException.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Thrown when the account is out of credits.
|
7 |
+
*/
|
8 |
+
class InsufficientFundsException extends InvalidRequestException
|
9 |
+
{
|
10 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/InvalidInputException.php
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents an error in creating the request to be sent to the
|
7 |
+
* web service. For example, if the array cannot be encoded as JSON or if there
|
8 |
+
* is a missing or invalid field.
|
9 |
+
*/
|
10 |
+
class InvalidInputException extends WebServiceException
|
11 |
+
{
|
12 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/InvalidRequestException.php
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Thrown when a MaxMind web service returns an error relating to the request.
|
7 |
+
*/
|
8 |
+
class InvalidRequestException extends HttpException
|
9 |
+
{
|
10 |
+
/**
|
11 |
+
* The code returned by the MaxMind web service
|
12 |
+
*/
|
13 |
+
private $error;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* @param string $message The exception message
|
17 |
+
* @param int $error The error code returned by the MaxMind web service
|
18 |
+
* @param int $httpStatus The HTTP status code of the response
|
19 |
+
* @param string $uri The URI queries
|
20 |
+
* @param \Exception $previous The previous exception, if any.
|
21 |
+
*/
|
22 |
+
public function __construct(
|
23 |
+
$message,
|
24 |
+
$error,
|
25 |
+
$httpStatus,
|
26 |
+
$uri,
|
27 |
+
\Exception $previous = null
|
28 |
+
) {
|
29 |
+
$this->error = $error;
|
30 |
+
parent::__construct($message, $httpStatus, $uri, $previous);
|
31 |
+
}
|
32 |
+
|
33 |
+
public function getErrorCode()
|
34 |
+
{
|
35 |
+
return $this->error;
|
36 |
+
}
|
37 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Exception;
|
4 |
+
|
5 |
+
class IpAddressNotFoundException extends InvalidRequestException
|
6 |
+
{
|
7 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/PermissionRequiredException.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This exception is thrown when the service requires permission to access.
|
7 |
+
*/
|
8 |
+
class PermissionRequiredException extends InvalidRequestException
|
9 |
+
{
|
10 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/Exception/WebServiceException.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\Exception;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This class represents a generic web service error.
|
7 |
+
*/
|
8 |
+
class WebServiceException extends \Exception
|
9 |
+
{
|
10 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/WebService/Client.php
ADDED
@@ -0,0 +1,457 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\WebService;
|
4 |
+
|
5 |
+
use Composer\CaBundle\CaBundle;
|
6 |
+
use MaxMind\Exception\AuthenticationException;
|
7 |
+
use MaxMind\Exception\HttpException;
|
8 |
+
use MaxMind\Exception\InsufficientFundsException;
|
9 |
+
use MaxMind\Exception\InvalidInputException;
|
10 |
+
use MaxMind\Exception\InvalidRequestException;
|
11 |
+
use MaxMind\Exception\IpAddressNotFoundException;
|
12 |
+
use MaxMind\Exception\PermissionRequiredException;
|
13 |
+
use MaxMind\Exception\WebServiceException;
|
14 |
+
use MaxMind\WebService\Http\RequestFactory;
|
15 |
+
|
16 |
+
/**
|
17 |
+
* This class is not intended to be used directly by an end-user of a
|
18 |
+
* MaxMind web service. Please use the appropriate client API for the service
|
19 |
+
* that you are using.
|
20 |
+
* @package MaxMind\WebService
|
21 |
+
* @internal
|
22 |
+
*/
|
23 |
+
class Client
|
24 |
+
{
|
25 |
+
const VERSION = '0.2.0';
|
26 |
+
|
27 |
+
private $caBundle;
|
28 |
+
private $connectTimeout;
|
29 |
+
private $host = 'api.maxmind.com';
|
30 |
+
private $httpRequestFactory;
|
31 |
+
private $licenseKey;
|
32 |
+
private $proxy;
|
33 |
+
private $timeout;
|
34 |
+
private $userAgentPrefix;
|
35 |
+
private $userId;
|
36 |
+
|
37 |
+
/**
|
38 |
+
* @param int $userId Your MaxMind user ID
|
39 |
+
* @param string $licenseKey Your MaxMind license key
|
40 |
+
* @param array $options An array of options. Possible keys:
|
41 |
+
*
|
42 |
+
* * `host` - The host to use when connecting to the web service.
|
43 |
+
* * `userAgent` - The prefix of the User-Agent to use in the request.
|
44 |
+
* * `caBundle` - The bundle of CA root certificates to use in the request.
|
45 |
+
* * `connectTimeout` - The connect timeout to use for the request.
|
46 |
+
* * `timeout` - The timeout to use for the request.
|
47 |
+
* * `proxy` - The HTTP proxy to use. May include a schema, port,
|
48 |
+
* username, and password, e.g., `http://username:password@127.0.0.1:10`.
|
49 |
+
*/
|
50 |
+
public function __construct(
|
51 |
+
$userId,
|
52 |
+
$licenseKey,
|
53 |
+
$options = array()
|
54 |
+
) {
|
55 |
+
$this->userId = $userId;
|
56 |
+
$this->licenseKey = $licenseKey;
|
57 |
+
|
58 |
+
$this->httpRequestFactory = isset($options['httpRequestFactory'])
|
59 |
+
? $options['httpRequestFactory']
|
60 |
+
: new RequestFactory();
|
61 |
+
|
62 |
+
if (isset($options['host'])) {
|
63 |
+
$this->host = $options['host'];
|
64 |
+
}
|
65 |
+
if (isset($options['userAgent'])) {
|
66 |
+
$this->userAgentPrefix = $options['userAgent'] . ' ';
|
67 |
+
}
|
68 |
+
|
69 |
+
$this->caBundle = isset($options['caBundle']) ?
|
70 |
+
$this->caBundle = $options['caBundle'] : $this->getCaBundle();
|
71 |
+
|
72 |
+
if (isset($options['connectTimeout'])) {
|
73 |
+
$this->connectTimeout = $options['connectTimeout'];
|
74 |
+
}
|
75 |
+
if (isset($options['timeout'])) {
|
76 |
+
$this->timeout = $options['timeout'];
|
77 |
+
}
|
78 |
+
|
79 |
+
if (isset($options['proxy'])) {
|
80 |
+
$this->proxy = $options['proxy'];
|
81 |
+
}
|
82 |
+
}
|
83 |
+
|
84 |
+
/**
|
85 |
+
* @param string $service name of the service querying
|
86 |
+
* @param string $path the URI path to use
|
87 |
+
* @param array $input the data to be posted as JSON
|
88 |
+
* @return array The decoded content of a successful response
|
89 |
+
* @throws InvalidInputException when the request has missing or invalid
|
90 |
+
* data.
|
91 |
+
* @throws AuthenticationException when there is an issue authenticating the
|
92 |
+
* request.
|
93 |
+
* @throws InsufficientFundsException when your account is out of funds.
|
94 |
+
* @throws InvalidRequestException when the request is invalid for some
|
95 |
+
* other reason, e.g., invalid JSON in the POST.
|
96 |
+
* @throws HttpException when an unexpected HTTP error occurs.
|
97 |
+
* @throws WebServiceException when some other error occurs. This also
|
98 |
+
* serves as the base class for the above exceptions.
|
99 |
+
*/
|
100 |
+
public function post($service, $path, $input)
|
101 |
+
{
|
102 |
+
$body = json_encode($input);
|
103 |
+
if ($body === false) {
|
104 |
+
throw new InvalidInputException(
|
105 |
+
'Error encoding input as JSON: '
|
106 |
+
. $this->jsonErrorDescription()
|
107 |
+
);
|
108 |
+
}
|
109 |
+
|
110 |
+
$request = $this->createRequest(
|
111 |
+
$path,
|
112 |
+
array('Content-Type: application/json')
|
113 |
+
);
|
114 |
+
|
115 |
+
list($statusCode, $contentType, $body) = $request->post($body);
|
116 |
+
return $this->handleResponse(
|
117 |
+
$statusCode,
|
118 |
+
$contentType,
|
119 |
+
$body,
|
120 |
+
$service,
|
121 |
+
$path
|
122 |
+
);
|
123 |
+
}
|
124 |
+
|
125 |
+
public function get($service, $path)
|
126 |
+
{
|
127 |
+
$request = $this->createRequest($path);
|
128 |
+
|
129 |
+
list($statusCode, $contentType, $body) = $request->get();
|
130 |
+
|
131 |
+
return $this->handleResponse(
|
132 |
+
$statusCode,
|
133 |
+
$contentType,
|
134 |
+
$body,
|
135 |
+
$service,
|
136 |
+
$path
|
137 |
+
);
|
138 |
+
}
|
139 |
+
|
140 |
+
|
141 |
+
private function userAgent()
|
142 |
+
{
|
143 |
+
$curlVersion = curl_version();
|
144 |
+
return $this->userAgentPrefix . 'MaxMind-WS-API/' . Client::VERSION . ' PHP/' . PHP_VERSION .
|
145 |
+
' curl/' . $curlVersion['version'];
|
146 |
+
}
|
147 |
+
|
148 |
+
private function createRequest($path, $headers = array())
|
149 |
+
{
|
150 |
+
array_push(
|
151 |
+
$headers,
|
152 |
+
'Authorization: Basic '
|
153 |
+
. base64_encode($this->userId . ':' . $this->licenseKey),
|
154 |
+
'Accept: application/json'
|
155 |
+
);
|
156 |
+
|
157 |
+
return $this->httpRequestFactory->request(
|
158 |
+
$this->urlFor($path),
|
159 |
+
array(
|
160 |
+
'caBundle' => $this->caBundle,
|
161 |
+
'connectTimeout' => $this->connectTimeout,
|
162 |
+
'headers' => $headers,
|
163 |
+
'proxy' => $this->proxy,
|
164 |
+
'timeout' => $this->timeout,
|
165 |
+
'userAgent' => $this->userAgent(),
|
166 |
+
)
|
167 |
+
);
|
168 |
+
}
|
169 |
+
|
170 |
+
/**
|
171 |
+
* @param integer $statusCode the HTTP status code of the response
|
172 |
+
* @param string $contentType the Content-Type of the response
|
173 |
+
* @param string $body the response body
|
174 |
+
* @param string $service the name of the service
|
175 |
+
* @param string $path the path used in the request
|
176 |
+
* @return array The decoded content of a successful response
|
177 |
+
* @throws AuthenticationException when there is an issue authenticating the
|
178 |
+
* request.
|
179 |
+
* @throws InsufficientFundsException when your account is out of funds.
|
180 |
+
* @throws InvalidRequestException when the request is invalid for some
|
181 |
+
* other reason, e.g., invalid JSON in the POST.
|
182 |
+
* @throws HttpException when an unexpected HTTP error occurs.
|
183 |
+
* @throws WebServiceException when some other error occurs. This also
|
184 |
+
* serves as the base class for the above exceptions
|
185 |
+
*/
|
186 |
+
private function handleResponse(
|
187 |
+
$statusCode,
|
188 |
+
$contentType,
|
189 |
+
$body,
|
190 |
+
$service,
|
191 |
+
$path
|
192 |
+
) {
|
193 |
+
if ($statusCode >= 400 && $statusCode <= 499) {
|
194 |
+
$this->handle4xx($statusCode, $contentType, $body, $service, $path);
|
195 |
+
} elseif ($statusCode >= 500) {
|
196 |
+
$this->handle5xx($statusCode, $service, $path);
|
197 |
+
} elseif ($statusCode != 200) {
|
198 |
+
$this->handleUnexpectedStatus($statusCode, $service, $path);
|
199 |
+
}
|
200 |
+
return $this->handleSuccess($body, $service);
|
201 |
+
}
|
202 |
+
|
203 |
+
/**
|
204 |
+
* @return string describing the JSON error
|
205 |
+
*/
|
206 |
+
private function jsonErrorDescription()
|
207 |
+
{
|
208 |
+
$errno = json_last_error();
|
209 |
+
switch ($errno) {
|
210 |
+
case JSON_ERROR_DEPTH:
|
211 |
+
return 'The maximum stack depth has been exceeded.';
|
212 |
+
case JSON_ERROR_STATE_MISMATCH:
|
213 |
+
return 'Invalid or malformed JSON.';
|
214 |
+
case JSON_ERROR_CTRL_CHAR:
|
215 |
+
return 'Control character error.';
|
216 |
+
case JSON_ERROR_SYNTAX:
|
217 |
+
return 'Syntax error.';
|
218 |
+
case JSON_ERROR_UTF8:
|
219 |
+
return 'Malformed UTF-8 characters.';
|
220 |
+
default:
|
221 |
+
return "Other JSON error ($errno).";
|
222 |
+
}
|
223 |
+
}
|
224 |
+
|
225 |
+
/**
|
226 |
+
* @param string $path The path to use in the URL
|
227 |
+
* @return string The constructed URL
|
228 |
+
*/
|
229 |
+
private function urlFor($path)
|
230 |
+
{
|
231 |
+
return 'https://' . $this->host . $path;
|
232 |
+
}
|
233 |
+
|
234 |
+
/**
|
235 |
+
* @param int $statusCode The HTTP status code
|
236 |
+
* @param string $contentType The response content-type
|
237 |
+
* @param string $body The response body
|
238 |
+
* @param string $service The service name
|
239 |
+
* @param string $path The path used in the request
|
240 |
+
* @throws AuthenticationException
|
241 |
+
* @throws HttpException
|
242 |
+
* @throws InsufficientFundsException
|
243 |
+
* @throws InvalidRequestException
|
244 |
+
*/
|
245 |
+
private function handle4xx(
|
246 |
+
$statusCode,
|
247 |
+
$contentType,
|
248 |
+
$body,
|
249 |
+
$service,
|
250 |
+
$path
|
251 |
+
) {
|
252 |
+
if (strlen($body) === 0) {
|
253 |
+
throw new HttpException(
|
254 |
+
"Received a $statusCode error for $service with no body",
|
255 |
+
$statusCode,
|
256 |
+
$this->urlFor($path)
|
257 |
+
);
|
258 |
+
}
|
259 |
+
if (!strstr($contentType, 'json')) {
|
260 |
+
throw new HttpException(
|
261 |
+
"Received a $statusCode error for $service with " .
|
262 |
+
"the following body: " . $body,
|
263 |
+
$statusCode,
|
264 |
+
$this->urlFor($path)
|
265 |
+
);
|
266 |
+
}
|
267 |
+
|
268 |
+
$message = json_decode($body, true);
|
269 |
+
if ($message === null) {
|
270 |
+
throw new HttpException(
|
271 |
+
"Received a $statusCode error for $service but could " .
|
272 |
+
'not decode the response as JSON: '
|
273 |
+
. $this->jsonErrorDescription() . ' Body: ' . $body,
|
274 |
+
$statusCode,
|
275 |
+
$this->urlFor($path)
|
276 |
+
);
|
277 |
+
}
|
278 |
+
|
279 |
+
if (!isset($message['code']) || !isset($message['error'])) {
|
280 |
+
throw new HttpException(
|
281 |
+
'Error response contains JSON but it does not ' .
|
282 |
+
'specify code or error keys: ' . $body,
|
283 |
+
$statusCode,
|
284 |
+
$this->urlFor($path)
|
285 |
+
);
|
286 |
+
}
|
287 |
+
|
288 |
+
$this->handleWebServiceError(
|
289 |
+
$message['error'],
|
290 |
+
$message['code'],
|
291 |
+
$statusCode,
|
292 |
+
$path
|
293 |
+
);
|
294 |
+
}
|
295 |
+
|
296 |
+
/**
|
297 |
+
* @param string $message The error message from the web service
|
298 |
+
* @param string $code The error code from the web service
|
299 |
+
* @param int $statusCode The HTTP status code
|
300 |
+
* @param string $path The path used in the request
|
301 |
+
* @throws AuthenticationException
|
302 |
+
* @throws InvalidRequestException
|
303 |
+
* @throws InsufficientFundsException
|
304 |
+
*/
|
305 |
+
private function handleWebServiceError(
|
306 |
+
$message,
|
307 |
+
$code,
|
308 |
+
$statusCode,
|
309 |
+
$path
|
310 |
+
) {
|
311 |
+
switch ($code) {
|
312 |
+
case 'IP_ADDRESS_NOT_FOUND':
|
313 |
+
case 'IP_ADDRESS_RESERVED':
|
314 |
+
throw new IpAddressNotFoundException(
|
315 |
+
$message,
|
316 |
+
$code,
|
317 |
+
$statusCode,
|
318 |
+
$this->urlFor($path)
|
319 |
+
);
|
320 |
+
case 'AUTHORIZATION_INVALID':
|
321 |
+
case 'LICENSE_KEY_REQUIRED':
|
322 |
+
case 'USER_ID_REQUIRED':
|
323 |
+
case 'USER_ID_UNKNOWN':
|
324 |
+
throw new AuthenticationException(
|
325 |
+
$message,
|
326 |
+
$code,
|
327 |
+
$statusCode,
|
328 |
+
$this->urlFor($path)
|
329 |
+
);
|
330 |
+
case 'OUT_OF_QUERIES':
|
331 |
+
case 'INSUFFICIENT_FUNDS':
|
332 |
+
throw new InsufficientFundsException(
|
333 |
+
$message,
|
334 |
+
$code,
|
335 |
+
$statusCode,
|
336 |
+
$this->urlFor($path)
|
337 |
+
);
|
338 |
+
case 'PERMISSION_REQUIRED':
|
339 |
+
throw new PermissionRequiredException(
|
340 |
+
$message,
|
341 |
+
$code,
|
342 |
+
$statusCode,
|
343 |
+
$this->urlFor($path)
|
344 |
+
);
|
345 |
+
default:
|
346 |
+
throw new InvalidRequestException(
|
347 |
+
$message,
|
348 |
+
$code,
|
349 |
+
$statusCode,
|
350 |
+
$this->urlFor($path)
|
351 |
+
);
|
352 |
+
}
|
353 |
+
}
|
354 |
+
|
355 |
+
/**
|
356 |
+
* @param int $statusCode The HTTP status code
|
357 |
+
* @param string $service The service name
|
358 |
+
* @param string $path The URI path used in the request
|
359 |
+
* @throws HttpException
|
360 |
+
*/
|
361 |
+
private function handle5xx($statusCode, $service, $path)
|
362 |
+
{
|
363 |
+
throw new HttpException(
|
364 |
+
"Received a server error ($statusCode) for $service",
|
365 |
+
$statusCode,
|
366 |
+
$this->urlFor($path)
|
367 |
+
);
|
368 |
+
}
|
369 |
+
|
370 |
+
/**
|
371 |
+
* @param int $statusCode The HTTP status code
|
372 |
+
* @param string $service The service name
|
373 |
+
* @param string $path The URI path used in the request
|
374 |
+
* @throws HttpException
|
375 |
+
*/
|
376 |
+
private function handleUnexpectedStatus($statusCode, $service, $path)
|
377 |
+
{
|
378 |
+
throw new HttpException(
|
379 |
+
'Received an unexpected HTTP status ' .
|
380 |
+
"($statusCode) for $service",
|
381 |
+
$statusCode,
|
382 |
+
$this->urlFor($path)
|
383 |
+
);
|
384 |
+
}
|
385 |
+
|
386 |
+
/**
|
387 |
+
* @param string $body The successful request body
|
388 |
+
* @param string $service The service name
|
389 |
+
* @return array The decoded request body
|
390 |
+
* @throws WebServiceException if the request body cannot be decoded as
|
391 |
+
* JSON
|
392 |
+
*/
|
393 |
+
private function handleSuccess($body, $service)
|
394 |
+
{
|
395 |
+
if (strlen($body) == 0) {
|
396 |
+
throw new WebServiceException(
|
397 |
+
"Received a 200 response for $service but did not " .
|
398 |
+
"receive a HTTP body."
|
399 |
+
);
|
400 |
+
}
|
401 |
+
|
402 |
+
$decodedContent = json_decode($body, true);
|
403 |
+
if ($decodedContent === null) {
|
404 |
+
throw new WebServiceException(
|
405 |
+
"Received a 200 response for $service but could " .
|
406 |
+
'not decode the response as JSON: '
|
407 |
+
. $this->jsonErrorDescription() . ' Body: ' . $body
|
408 |
+
);
|
409 |
+
}
|
410 |
+
|
411 |
+
return $decodedContent;
|
412 |
+
}
|
413 |
+
|
414 |
+
private function getCaBundle()
|
415 |
+
{
|
416 |
+
$curlVersion = curl_version();
|
417 |
+
|
418 |
+
// On OS X, when the SSL version is "SecureTransport", the system's
|
419 |
+
// keychain will be used.
|
420 |
+
if ($curlVersion['ssl_version'] ==='SecureTransport') {
|
421 |
+
return;
|
422 |
+
}
|
423 |
+
$cert = CaBundle::getSystemCaRootBundlePath();
|
424 |
+
|
425 |
+
// Check if the cert is inside a phar. If so, we need to copy the cert
|
426 |
+
// to a temp file so that curl can see it.
|
427 |
+
if (substr($cert, 0, 7) == 'phar://') {
|
428 |
+
$tempDir = sys_get_temp_dir();
|
429 |
+
$newCert = tempnam($tempDir, 'geoip2-');
|
430 |
+
if ($newCert === false) {
|
431 |
+
throw new \RuntimeException(
|
432 |
+
"Unable to create temporary file in $tempDir"
|
433 |
+
);
|
434 |
+
}
|
435 |
+
if (!copy($cert, $newCert)) {
|
436 |
+
throw new \RuntimeException(
|
437 |
+
"Could not copy $cert to $newCert: "
|
438 |
+
. var_export(error_get_last(), true)
|
439 |
+
);
|
440 |
+
}
|
441 |
+
|
442 |
+
// We use a shutdown function rather than the destructor as the
|
443 |
+
// destructor isn't called on a fatal error such as an uncaught
|
444 |
+
// exception.
|
445 |
+
register_shutdown_function(
|
446 |
+
function () use ($newCert) {
|
447 |
+
unlink($newCert);
|
448 |
+
}
|
449 |
+
);
|
450 |
+
$cert = $newCert;
|
451 |
+
}
|
452 |
+
if (!file_exists($cert)) {
|
453 |
+
throw new \RuntimeException("CA cert does not exist at $cert");
|
454 |
+
}
|
455 |
+
return $cert;
|
456 |
+
}
|
457 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/WebService/Http/CurlRequest.php
ADDED
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\WebService\Http;
|
4 |
+
|
5 |
+
use MaxMind\Exception\HttpException;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* This class is for internal use only. Semantic versioning does not not apply.
|
9 |
+
* @package MaxMind\WebService\Http
|
10 |
+
* @internal
|
11 |
+
*/
|
12 |
+
class CurlRequest implements Request
|
13 |
+
{
|
14 |
+
private $url;
|
15 |
+
private $options;
|
16 |
+
|
17 |
+
/**
|
18 |
+
* @param $url
|
19 |
+
* @param $options
|
20 |
+
*/
|
21 |
+
public function __construct($url, $options)
|
22 |
+
{
|
23 |
+
$this->url = $url;
|
24 |
+
$this->options = $options;
|
25 |
+
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @param $body
|
29 |
+
* @return array
|
30 |
+
*/
|
31 |
+
public function post($body)
|
32 |
+
{
|
33 |
+
$curl = $this->createCurl();
|
34 |
+
|
35 |
+
curl_setopt($curl, CURLOPT_POST, true);
|
36 |
+
curl_setopt($curl, CURLOPT_POSTFIELDS, $body);
|
37 |
+
|
38 |
+
return $this->execute($curl);
|
39 |
+
}
|
40 |
+
|
41 |
+
public function get()
|
42 |
+
{
|
43 |
+
$curl = $this->createCurl();
|
44 |
+
|
45 |
+
curl_setopt($curl, CURLOPT_HTTPGET, true);
|
46 |
+
|
47 |
+
return $this->execute($curl);
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* @return resource
|
52 |
+
*/
|
53 |
+
private function createCurl()
|
54 |
+
{
|
55 |
+
$curl = curl_init($this->url);
|
56 |
+
|
57 |
+
if (!empty($this->options['caBundle'])) {
|
58 |
+
$opts[CURLOPT_CAINFO] = $this->options['caBundle'];
|
59 |
+
}
|
60 |
+
$opts[CURLOPT_SSL_VERIFYHOST] = 2;
|
61 |
+
$opts[CURLOPT_FOLLOWLOCATION] = false;
|
62 |
+
$opts[CURLOPT_SSL_VERIFYPEER] = true;
|
63 |
+
$opts[CURLOPT_RETURNTRANSFER] = true;
|
64 |
+
|
65 |
+
|
66 |
+
$opts[CURLOPT_HTTPHEADER] = $this->options['headers'];
|
67 |
+
$opts[CURLOPT_USERAGENT] = $this->options['userAgent'];
|
68 |
+
$opts[CURLOPT_PROXY] = $this->options['proxy'];
|
69 |
+
|
70 |
+
// The defined()s are here as the *_MS opts are not available on older
|
71 |
+
// cURL versions
|
72 |
+
$connectTimeout = $this->options['connectTimeout'];
|
73 |
+
if (defined('CURLOPT_CONNECTTIMEOUT_MS')) {
|
74 |
+
$opts[CURLOPT_CONNECTTIMEOUT_MS] = ceil($connectTimeout * 1000);
|
75 |
+
} else {
|
76 |
+
$opts[CURLOPT_CONNECTTIMEOUT] = ceil($connectTimeout);
|
77 |
+
}
|
78 |
+
|
79 |
+
$timeout = $this->options['timeout'];
|
80 |
+
if (defined('CURLOPT_TIMEOUT_MS')) {
|
81 |
+
$opts[CURLOPT_TIMEOUT_MS] = ceil($timeout * 1000);
|
82 |
+
} else {
|
83 |
+
$opts[CURLOPT_TIMEOUT] = ceil($timeout);
|
84 |
+
}
|
85 |
+
|
86 |
+
curl_setopt_array($curl, $opts);
|
87 |
+
return $curl;
|
88 |
+
}
|
89 |
+
|
90 |
+
private function execute($curl)
|
91 |
+
{
|
92 |
+
$body = curl_exec($curl);
|
93 |
+
if ($errno = curl_errno($curl)) {
|
94 |
+
$errorMessage = curl_error($curl);
|
95 |
+
|
96 |
+
throw new HttpException(
|
97 |
+
"cURL error ({$errno}): {$errorMessage}",
|
98 |
+
0,
|
99 |
+
$this->url
|
100 |
+
);
|
101 |
+
}
|
102 |
+
|
103 |
+
$statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
|
104 |
+
$contentType = curl_getinfo($curl, CURLINFO_CONTENT_TYPE);
|
105 |
+
curl_close($curl);
|
106 |
+
|
107 |
+
return array($statusCode, $contentType, $body);
|
108 |
+
}
|
109 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/WebService/Http/Request.php
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\WebService\Http;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Interface Request
|
7 |
+
* @package MaxMind\WebService\Http
|
8 |
+
* @internal
|
9 |
+
*/
|
10 |
+
interface Request
|
11 |
+
{
|
12 |
+
/**
|
13 |
+
* @param $url
|
14 |
+
* @param $options
|
15 |
+
*/
|
16 |
+
public function __construct($url, $options);
|
17 |
+
|
18 |
+
/**
|
19 |
+
* @param $body
|
20 |
+
* @return mixed
|
21 |
+
*/
|
22 |
+
public function post($body);
|
23 |
+
|
24 |
+
/**
|
25 |
+
* @return mixed
|
26 |
+
*/
|
27 |
+
public function get();
|
28 |
+
}
|
app/code/community/Webinterpret/Connector/Lib/maxmind/web-service-common/src/WebService/Http/RequestFactory.php
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MaxMind\WebService\Http;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Class RequestFactory
|
7 |
+
* @package MaxMind\WebService\Http
|
8 |
+
* @internal
|
9 |
+
*/
|
10 |
+
class RequestFactory
|
11 |
+
{
|
12 |
+
public function __construct()
|
13 |
+
{
|
14 |
+
}
|
15 |
+
|
16 |
+
/**
|
17 |
+
* @param $url
|
18 |
+
* @param $options
|
19 |
+
* @return CurlRequest
|
20 |
+
*/
|
21 |
+
public function request($url, $options)
|
22 |
+
{
|
23 |
+
return new CurlRequest($url, $options);
|
24 |
+
}
|
25 |
+
}
|
app/code/community/Webinterpret/Connector/Model/BackendRedirector.php
ADDED
@@ -0,0 +1,184 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
use Buzz\Browser;
|
4 |
+
use Buzz\Client\Curl;
|
5 |
+
use Buzz\Client\FileGetContents;
|
6 |
+
use GeoIp2\Database\Reader;
|
7 |
+
use WebinterpretConnector\Webinterpret\InventoryManagerClient;
|
8 |
+
use WebinterpretConnector\Webinterpret\InventoryManagerProductInfo;
|
9 |
+
use WebinterpretConnector\Webinterpret\Toolkit\GeoIP;
|
10 |
+
|
11 |
+
|
12 |
+
/**
|
13 |
+
* StoreExtender
|
14 |
+
*
|
15 |
+
* @category Webinterpret
|
16 |
+
* @package Webinterpret_Connector
|
17 |
+
* @author Webinterpret Team <info@webinterpret.com>
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php
|
19 |
+
*/
|
20 |
+
class Webinterpret_Connector_Model_BackendRedirector extends Varien_Object
|
21 |
+
{
|
22 |
+
/** @var GeoIP */
|
23 |
+
private $geoIp;
|
24 |
+
|
25 |
+
/** @var InventoryManagerClient */
|
26 |
+
private $inventoryManagerClient;
|
27 |
+
|
28 |
+
/** @var string */
|
29 |
+
private $storeUrl;
|
30 |
+
|
31 |
+
public function __construct()
|
32 |
+
{
|
33 |
+
require_once(Mage::getModuleDir('', 'Webinterpret_Connector') . '/Lib/autoload.php');
|
34 |
+
spl_autoload_register(array($this, 'loadWebinterpretConnectorLib'), true, true);
|
35 |
+
|
36 |
+
$this->storeUrl = Mage::helper('webinterpret_connector')->getStoreBaseUrl();
|
37 |
+
|
38 |
+
$reader = new Reader(Mage::helper('webinterpret_connector')->getGeoip2DbPath());
|
39 |
+
$this->geoIp = new GeoIP($reader);
|
40 |
+
|
41 |
+
$browser = new Browser($this->getBrowserClient());
|
42 |
+
$browser->getClient()->setTimeout(1);
|
43 |
+
|
44 |
+
$this->inventoryManagerClient = new InventoryManagerClient(
|
45 |
+
$browser,
|
46 |
+
$this->storeUrl,
|
47 |
+
Mage::getStoreConfig('webinterpret_connector/inventory_manager_url'));
|
48 |
+
|
49 |
+
parent::__construct();
|
50 |
+
}
|
51 |
+
|
52 |
+
public function generateInternationalRedirectionUrlIfAvailable()
|
53 |
+
{
|
54 |
+
// collect user information
|
55 |
+
$clientIp = $this->geoIp->getClientIp();
|
56 |
+
$clientCountryCode = $this->geoIp->getClientCountryCode();
|
57 |
+
|
58 |
+
if ($clientIp === false || $clientCountryCode === false) {
|
59 |
+
return null;
|
60 |
+
}
|
61 |
+
|
62 |
+
// only redirect international traffic
|
63 |
+
if ($this->isDomesticTraffic($clientCountryCode)) {
|
64 |
+
return null;
|
65 |
+
}
|
66 |
+
|
67 |
+
$productId = Mage::registry('current_product')->getId();
|
68 |
+
|
69 |
+
// check if product is available in Inventory Manager
|
70 |
+
$productInfo = $this->inventoryManagerClient->fetchProductInfo($productId, $clientIp, $clientCountryCode);
|
71 |
+
|
72 |
+
if (!($productInfo instanceof InventoryManagerProductInfo)) {
|
73 |
+
return null;
|
74 |
+
}
|
75 |
+
|
76 |
+
// don't redirect if the product is not available in the international store or auto_redirect is not enabled
|
77 |
+
if (!$productInfo->isProductAvailable()|| !$productInfo->isAutoRedirectEnabled()) {
|
78 |
+
return null;
|
79 |
+
};
|
80 |
+
|
81 |
+
return $this->generateRedirectUrl($productInfo, $this->storeUrl, $productId);
|
82 |
+
}
|
83 |
+
|
84 |
+
public static function loadWebinterpretConnectorLib($class)
|
85 |
+
{
|
86 |
+
if (preg_match( '/^WebinterpretConnector\\\\/', $class)) {
|
87 |
+
$path = Mage::getModuleDir('', 'Webinterpret_Connector');
|
88 |
+
$libClassName = str_replace('\\', '/', substr($class, strlen('WebinterpretConnector\\')));
|
89 |
+
require_once($path . '/Lib/' . $libClassName . '.php');
|
90 |
+
}
|
91 |
+
}
|
92 |
+
|
93 |
+
/**
|
94 |
+
* Checks if traffic is domestic based on store and user country codes
|
95 |
+
*
|
96 |
+
* @param $clientCountryCode
|
97 |
+
*
|
98 |
+
* @return bool
|
99 |
+
*/
|
100 |
+
private function isDomesticTraffic($clientCountryCode) {
|
101 |
+
$storeCountryCode = Mage::getStoreConfig('general/country/default');
|
102 |
+
|
103 |
+
if ($clientCountryCode === $storeCountryCode) {
|
104 |
+
return true;
|
105 |
+
}
|
106 |
+
|
107 |
+
return false;
|
108 |
+
}
|
109 |
+
|
110 |
+
/**
|
111 |
+
* Generates URL BackendRedirector should redirect the user to
|
112 |
+
*
|
113 |
+
* @param InventoryManagerProductInfo $productInfo
|
114 |
+
* @param $storeUrl
|
115 |
+
* @param $productId
|
116 |
+
*
|
117 |
+
* @return string
|
118 |
+
*/
|
119 |
+
private function generateRedirectUrl(InventoryManagerProductInfo $productInfo, $storeUrl, $productId) {
|
120 |
+
// store extender?
|
121 |
+
if (Mage::helper('webinterpret_connector')->isStoreExtenderEnabled()) {
|
122 |
+
$redirectUrl = $this->generateUrlForStoreExtender($productInfo, $storeUrl, $productId);
|
123 |
+
} else {
|
124 |
+
$redirectUrl = $productInfo->getProductUrl();
|
125 |
+
}
|
126 |
+
|
127 |
+
if (is_null($redirectUrl)) {
|
128 |
+
throw new \InvalidArgumentException('Missing redirect URL');
|
129 |
+
}
|
130 |
+
|
131 |
+
$redirectUrl = $this->appendUtmParamsToUrl($redirectUrl);
|
132 |
+
|
133 |
+
return $redirectUrl;
|
134 |
+
}
|
135 |
+
|
136 |
+
/**
|
137 |
+
* @param InventoryManagerProductInfo $productInfo
|
138 |
+
* @param $storeUrl
|
139 |
+
* @param $productId
|
140 |
+
*
|
141 |
+
* @return string
|
142 |
+
*/
|
143 |
+
private function generateUrlForStoreExtender(
|
144 |
+
InventoryManagerProductInfo $productInfo,
|
145 |
+
$storeUrl,
|
146 |
+
$productId
|
147 |
+
) {
|
148 |
+
$localeCode = $productInfo->getLocaleCode();
|
149 |
+
|
150 |
+
if (is_null($localeCode)) {
|
151 |
+
throw new \InvalidArgumentException( 'Missing locale or URL' );
|
152 |
+
}
|
153 |
+
|
154 |
+
return $storeUrl . '/glopal/' . $localeCode . '/p-' . $productId . '.html';
|
155 |
+
}
|
156 |
+
|
157 |
+
/**
|
158 |
+
* Appends utm_source, utm_medium and utm_campaign params to URL provided
|
159 |
+
*
|
160 |
+
* @param string $redirectUrl URL to append utm_* params to
|
161 |
+
*
|
162 |
+
* @return string
|
163 |
+
*/
|
164 |
+
private function appendUtmParamsToUrl($redirectUrl) {
|
165 |
+
$params = array(
|
166 |
+
'utm_source' => parse_url($this->storeUrl, PHP_URL_HOST),
|
167 |
+
'utm_medium' => 'br', // br = backend redirector
|
168 |
+
'utm_campaign' => Mage::getStoreConfig('general/country/default'),
|
169 |
+
);
|
170 |
+
|
171 |
+
$argSeparator = (strpos( $redirectUrl, '?') === false ? '?' : '&');
|
172 |
+
|
173 |
+
return $redirectUrl . $argSeparator . http_build_query($params);
|
174 |
+
}
|
175 |
+
|
176 |
+
private function getBrowserClient()
|
177 |
+
{
|
178 |
+
if (function_exists('curl_version')) {
|
179 |
+
return new Curl();
|
180 |
+
} else {
|
181 |
+
return new FileGetContents();
|
182 |
+
}
|
183 |
+
}
|
184 |
+
}
|
app/code/community/Webinterpret/Connector/Model/Observer.php
CHANGED
@@ -56,6 +56,30 @@ class Webinterpret_Connector_Model_Observer
|
|
56 |
}
|
57 |
}
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
return $observer;
|
60 |
}
|
61 |
}
|
56 |
}
|
57 |
}
|
58 |
|
59 |
+
return $observer;
|
60 |
+
}
|
61 |
+
|
62 |
+
public function hookIntoProductInit($observer)
|
63 |
+
{
|
64 |
+
if (!Mage::helper('webinterpret_connector')->isBackendRedirectorEnabled()) {
|
65 |
+
return $observer;
|
66 |
+
}
|
67 |
+
|
68 |
+
try {
|
69 |
+
/** @var Webinterpret_Connector_Model_BackendRedirector $backendRedirector */
|
70 |
+
$backendRedirector = Mage::getModel('webinterpret_connector/backendRedirector');
|
71 |
+
$redirectionUrl = $backendRedirector->generateInternationalRedirectionUrlIfAvailable();
|
72 |
+
} catch (\Exception $e) {
|
73 |
+
return $observer;
|
74 |
+
}
|
75 |
+
|
76 |
+
if (!is_null($redirectionUrl)) {
|
77 |
+
Mage::app()->getFrontController()->getResponse()->setRedirect($redirectionUrl);
|
78 |
+
Mage::app()->getResponse()->sendResponse();
|
79 |
+
exit;
|
80 |
+
}
|
81 |
+
|
82 |
+
|
83 |
return $observer;
|
84 |
}
|
85 |
}
|
app/code/community/Webinterpret/Connector/Model/StoreExtender.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
use
|
4 |
-
use
|
5 |
-
use
|
6 |
-
use
|
7 |
-
use
|
8 |
|
9 |
/**
|
10 |
* StoreExtender
|
@@ -14,7 +14,7 @@ use WebinterpretConnector\Buzz\Message\Response;
|
|
14 |
* @author Webinterpret Team <info@webinterpret.com>
|
15 |
* @license http://opensource.org/licenses/osl-3.0.php
|
16 |
*/
|
17 |
-
class Webinterpret_Connector_Model_StoreExtender extends
|
18 |
{
|
19 |
/**
|
20 |
* @var string Prefix for cookies that should be forwarded to store extender proxy
|
@@ -23,7 +23,10 @@ class Webinterpret_Connector_Model_StoreExtender extends Varien_object
|
|
23 |
|
24 |
public function __construct()
|
25 |
{
|
|
|
26 |
spl_autoload_register(array($this, 'loadStoreExtenderDependencies'), true, true);
|
|
|
|
|
27 |
}
|
28 |
|
29 |
public static function loadStoreExtenderDependencies($class)
|
@@ -126,7 +129,7 @@ class Webinterpret_Connector_Model_StoreExtender extends Varien_object
|
|
126 |
}
|
127 |
|
128 |
/**
|
129 |
-
* @param \
|
130 |
* @return array
|
131 |
*/
|
132 |
private function parseResponseHeadersToArray(Response $response)
|
1 |
<?php
|
2 |
|
3 |
+
use Buzz\Browser;
|
4 |
+
use Buzz\Client\Curl;
|
5 |
+
use Buzz\Client\FileGetContents;
|
6 |
+
use Buzz\Exception\ClientException;
|
7 |
+
use Buzz\Message\Response;
|
8 |
|
9 |
/**
|
10 |
* StoreExtender
|
14 |
* @author Webinterpret Team <info@webinterpret.com>
|
15 |
* @license http://opensource.org/licenses/osl-3.0.php
|
16 |
*/
|
17 |
+
class Webinterpret_Connector_Model_StoreExtender extends Varien_Object
|
18 |
{
|
19 |
/**
|
20 |
* @var string Prefix for cookies that should be forwarded to store extender proxy
|
23 |
|
24 |
public function __construct()
|
25 |
{
|
26 |
+
require_once(Mage::getModuleDir('', 'Webinterpret_Connector') . '/Lib/autoload.php');
|
27 |
spl_autoload_register(array($this, 'loadStoreExtenderDependencies'), true, true);
|
28 |
+
|
29 |
+
parent::__construct();
|
30 |
}
|
31 |
|
32 |
public static function loadStoreExtenderDependencies($class)
|
129 |
}
|
130 |
|
131 |
/**
|
132 |
+
* @param \Buzz\Message\Response $response
|
133 |
* @return array
|
134 |
*/
|
135 |
private function parseResponseHeadersToArray(Response $response)
|
app/code/community/Webinterpret/Connector/etc/config.xml
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
<config>
|
9 |
<modules>
|
10 |
<Webinterpret_Connector>
|
11 |
-
<version>1.3.
|
12 |
</Webinterpret_Connector>
|
13 |
</modules>
|
14 |
<global>
|
@@ -55,6 +55,15 @@
|
|
55 |
</webinterpret_connector_notifications_before>
|
56 |
</observers>
|
57 |
</webinterpret_connector_notifications_before>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
</events>
|
59 |
<request>
|
60 |
<direct_front_name>
|
@@ -133,6 +142,8 @@
|
|
133 |
38d6cBHbci6rLRJ0PdaP6ZABz9OI3UE8VCz5n5BZEJ0QWmXmnn2YnWq8p3Si53KK
|
134 |
tQMgSP58oPZ6Nq6qM6KrlmkCAwEAAQ==
|
135 |
-----END PUBLIC KEY-----</public_key>
|
|
|
|
|
136 |
</webinterpret_connector>
|
137 |
</default>
|
138 |
</config>
|
8 |
<config>
|
9 |
<modules>
|
10 |
<Webinterpret_Connector>
|
11 |
+
<version>1.3.1.0</version>
|
12 |
</Webinterpret_Connector>
|
13 |
</modules>
|
14 |
<global>
|
55 |
</webinterpret_connector_notifications_before>
|
56 |
</observers>
|
57 |
</webinterpret_connector_notifications_before>
|
58 |
+
<catalog_controller_product_init>
|
59 |
+
<observers>
|
60 |
+
<webinterpret_catalog_controller_product_init>
|
61 |
+
<type>singleton</type>
|
62 |
+
<class>Webinterpret_Connector_Model_Observer</class>
|
63 |
+
<method>hookIntoProductInit</method>
|
64 |
+
</webinterpret_catalog_controller_product_init>
|
65 |
+
</observers>
|
66 |
+
</catalog_controller_product_init>
|
67 |
</events>
|
68 |
<request>
|
69 |
<direct_front_name>
|
142 |
38d6cBHbci6rLRJ0PdaP6ZABz9OI3UE8VCz5n5BZEJ0QWmXmnn2YnWq8p3Si53KK
|
143 |
tQMgSP58oPZ6Nq6qM6KrlmkCAwEAAQ==
|
144 |
-----END PUBLIC KEY-----</public_key>
|
145 |
+
<inventory_manager_url><![CDATA[https://d1f68rsmoq5ae3.cloudfront.net]]></inventory_manager_url>
|
146 |
+
<backend_redirector_enabled><![CDATA[0]]></backend_redirector_enabled>
|
147 |
</webinterpret_connector>
|
148 |
</default>
|
149 |
</config>
|
app/code/community/Webinterpret/Connector/resources/geoip/COPYRIGHT.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
Database and Contents Copyright (c) 2016 MaxMind, Inc.
|
2 |
+
|
3 |
+
This database is confidential and proprietary to MaxMind, Inc., and may not be
|
4 |
+
reproduced, published or disclosed to others without company authorization.
|
app/code/community/Webinterpret/Connector/resources/geoip/GeoIP2-Country.mmdb
ADDED
Binary file
|
app/code/community/Webinterpret/Connector/resources/geoip/LICENSE.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
Use of this MaxMind product is governed by MaxMind's End User License Agreement, which can be viewed at https://www.maxmind.com/en/end-user-license-agreement.
|
2 |
+
|
3 |
+
This database incorporates GeoNames [http://www.geonames.org] geographical data, which is made available under the Creative Commons Attribution 3.0 License. To view a copy of this license, visit http://www.creativecommons.org/licenses/by/3.0/us/.
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Webinterpret_Connector</name>
|
4 |
-
<version>1.3.0
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Integrate Magento with Webinterpret.</summary>
|
10 |
<description>Translate and market your products internationally with Webinterpret. This is the official Magento extension for integrating with Webinterpret.</description>
|
11 |
-
<notes>-
|
12 |
<authors><author><name>Webinterpret</name><user>webinterpret</user><email>info@webinterpret.com</email></author></authors>
|
13 |
-
<date>2016-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir><dir name="Webinterpret"><dir name="Connector"><dir><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="5e1935e32f1b5d10f0b76fee427a23a6"/><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Status.php" hash="99b95c7991e91a4d4d98efdaf8007b88"/></dir></dir></dir></dir><file name="Footer.php" hash="160f03e528d7e9411e85d524919fd280"/><file name="Head.php" hash="1261ad40df9f0dc708178d78d63158d8"/><dir name="Product"><file name="View.php" hash="3b3b40108b53d326c0dcff0e45fa8407"/></dir></dir><dir name="Helper"><file name="Data.php" hash="bdce8c1bef0471de67c3893b24abe69d"/></dir><dir name="Lib"><dir name="Buzz"><file name="Browser.php" hash="faa5485f0fa3ca4958890052fe90ac92"/><dir name="Client"><file name="AbstractClient.php" hash="e35ab76a0453cd49d25eb677fdfb1cfb"/><file name="AbstractCurl.php" hash="39b85ceac150c234ab7ac9855f5b4afd"/><file name="AbstractStream.php" hash="651db2b755b301ad8b5f8dba6172b800"/><file name="BatchClientInterface.php" hash="3f8ddac0208efa3c8abe2b1025cb2b9c"/><file name="ClientInterface.php" hash="42583838ba59397e693e4d34db056ade"/><file name="Curl.php" hash="7002d06681911925bc67196a64be5e48"/><file name="FileGetContents.php" hash="e9a64db88683338e0a720f0046e413c2"/><file name="MultiCurl.php" hash="5c956bda37ffa542c93cb0582cd51e52"/></dir><dir name="Exception"><file name="ClientException.php" hash="b03c3fc142011180b155916db3016d19"/><file name="ExceptionInterface.php" hash="6dd392e9121db19fc6ee2faf50163175"/><file name="InvalidArgumentException.php" hash="715735e6313fe5d5cc846277ff2635cb"/><file name="LogicException.php" hash="0fb322aa30d4fcf0691471866b1378fb"/><file name="RequestException.php" hash="5ba0bb7e029fd5405f5cdd8b7e247a86"/><file name="RuntimeException.php" hash="8780764e1f114d7ae3f106a656c12a4f"/></dir><dir name="Listener"><file name="BasicAuthListener.php" hash="d3b4bf91414e52137b1bc66a97914da3"/><file name="CallbackListener.php" hash="2b3e473fb154fb424718dcf318c92553"/><file name="CookieListener.php" hash="0dc12bbbafa865701836cb5f1772581e"/><file name="DigestAuthListener.php" hash="991db4773e9d40253e61b2bc9e44ca68"/><dir name="History"><file name="Entry.php" hash="73650b956104e7db6889a373ed3c2522"/><file name="Journal.php" hash="6898357c87dd0d1490b3c004a72fa7a1"/></dir><file name="HistoryListener.php" hash="39f3fd76c57ab4aa7ffebaf49347a078"/><file name="ListenerChain.php" hash="efaa53a20164fae43ea57797b3da3e1f"/><file name="ListenerInterface.php" hash="778bdbf3aa80c34cfab26e5ce3663e96"/><file name="LoggerListener.php" hash="7709c2dfe5c7273dc7e6df8da2b7276e"/></dir><dir name="Message"><file name="AbstractMessage.php" hash="b8fbd6ecb218f09736a21b2396fc93c7"/><dir name="Factory"><file name="Factory.php" hash="19505683584eb8d9aab014288f21ace9"/><file name="FactoryInterface.php" hash="0f5d14dbc1a7b7e99826e33a6bd9b1c7"/></dir><dir name="Form"><file name="FormRequest.php" hash="335bcc0fb762fa3934883165c5f103f9"/><file name="FormRequestInterface.php" hash="cdce91424c9287a154cd53637c2142c4"/><file name="FormUpload.php" hash="3ffdbacf5d22643cab4afca459444a93"/><file name="FormUploadInterface.php" hash="7e0ca9ae5cc0c3b0bfef3717033d36bc"/></dir><file name="MessageInterface.php" hash="e755508e39647ebc9278d9d1b77c9f5a"/><file name="Request.php" hash="2d805ac034a28d4bd04c1275cef06234"/><file name="RequestInterface.php" hash="d5259b58d09230aa97227e798c5334ee"/><file name="Response.php" hash="a6b32fbae2a6b380d5f7bc68cbffea61"/></dir><dir name="Util"><file name="Cookie.php" hash="b08275dc28e7ce1923dc1f16a0500b77"/><file name="CookieJar.php" hash="c6eb7bb4958cac7a8b334e0843cb7b4a"/><file name="Url.php" hash="1825c6e2ff3e1e230c6dde833dbf655d"/></dir></dir></dir><dir name="Model"><file name="Notification.php" hash="a62c3b7ff11cd2d1082c0d959d8eb295"/><file name="Observer.php" hash="b3cb7f22f5bc376b6f834a211a7c205b"/><file name="StoreExtender.php" hash="c5fd0294f6b36c05d1293ca899deb152"/></dir><dir name="bridge2cart"><file name="bridge.php" hash="cdd197a1af1a05082a8836ea24922dad"/><file name="config.php" hash="0fb8e12c8d9c293354eb4fb96a713608"/><file name="helper.php" hash="afb5e2141259c580285ac85d0c180144"/><file name="preloader.php" hash="8a8ada3537394687defdc28d4b6077e8"/></dir><dir name="controllers"><file name="HelperController.php" hash="73fb01f035db7d75eb1ee0a3d535fd0b"/><file name="IndexController.php" hash="a76fb36d3f6fa4c370b766ed9ba818ed"/></dir><dir name="etc"><file name="adminhtml.xml" hash="07e287503c40ce7c588efe7863c05002"/><file name="config.xml" hash="f9eeac722631b966f1231b8ee8cd9712"/><file name="system.xml" hash="cfe59ca34ebfef69b900f4ad275a809a"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="867fafe49fa978668f6e5d7027c57aa6"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="system"><dir name="config"><file name="activate.phtml" hash="5ef389ad58cb1be9cc666fecd8379fbf"/><dir name="fieldset"><file name="banner.phtml" hash="921b677bd3e52d9c86172bdf26ab4a37"/><file name="status.phtml" hash="412bd1ea314a7f0c8897e6a9225c3551"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="1226a298ca08a92008293ba4e8c09eab"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="connector"><file name="footer.phtml" hash="bd48d0e36dea0936b9f28fbdada3b8c1"/><file name="head.phtml" hash="107312871a7b2730532db8d986de5726"/><file name="product_view.phtml" hash="2036bc444284b99f4cc8228fa4751777"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Webinterpret_Connector.xml" hash="087c2742f6bcb89ed6a77921e6493feb"/></dir></target><target name="magelocale"><dir><dir name="de_DE"><file name="Webinterpret_Connector.csv" hash="91312fd3bd2645b88e3b3643b6b614a9"/></dir><dir name="en_US"><file name="Webinterpret_Connector.csv" hash="c382db753974630198cf029cf90b5d27"/></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.3.
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Webinterpret_Connector</name>
|
4 |
+
<version>1.3.1.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Integrate Magento with Webinterpret.</summary>
|
10 |
<description>Translate and market your products internationally with Webinterpret. This is the official Magento extension for integrating with Webinterpret.</description>
|
11 |
+
<notes>- Backend redirector</notes>
|
12 |
<authors><author><name>Webinterpret</name><user>webinterpret</user><email>info@webinterpret.com</email></author></authors>
|
13 |
+
<date>2016-10-31</date>
|
14 |
+
<time>12:13:43</time>
|
15 |
+
<contents><target name="magecommunity"><dir><dir name="Webinterpret"><dir name="Connector"><dir><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="5e1935e32f1b5d10f0b76fee427a23a6"/><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Status.php" hash="99b95c7991e91a4d4d98efdaf8007b88"/></dir></dir></dir></dir><file name="Footer.php" hash="160f03e528d7e9411e85d524919fd280"/><file name="Head.php" hash="1261ad40df9f0dc708178d78d63158d8"/><dir name="Product"><file name="View.php" hash="3b3b40108b53d326c0dcff0e45fa8407"/></dir></dir><dir name="Helper"><file name="Data.php" hash="f159aa66d7a8160abb5df53085c2235c"/></dir><dir name="Lib"><dir name="Webinterpret"><file name="InventoryManagerClient.php" hash="d6acf256009835b2d389ffdb8abe48b8"/><file name="InventoryManagerProductInfo.php" hash="bb57591383e0422f6d053092a1e8820c"/><dir name="Toolkit"><file name="GeoIP.php" hash="04b858256cee73a321e34b1cdd81953f"/></dir></dir><file name="autoload.php" hash="38dfc2154472b80340528faa44a36522"/><dir name="composer"><file name="ClassLoader.php" hash="c67ebce5ff31e99311ceb750202adf2e"/><file name="LICENSE" hash="cfdafe5f67fbcc46c00fcb2f5b80a0cf"/><file name="autoload_classmap.php" hash="8645d3a4e3ad87e7cf4d88a46717aab4"/><file name="autoload_namespaces.php" hash="f7aec47106fe386a4d7710cee304fc7c"/><file name="autoload_psr4.php" hash="a1ee1e33d38bf972aaa8596aed6b9498"/><file name="autoload_real.php" hash="097fc6becad3c938f052e71bc46ab58a"/><dir name="ca-bundle"><file name="LICENSE" hash="783e50a8f248e56536e25b4746d035af"/><file name="README.md" hash="04096c5cd7666bbb481909761dd7d528"/><file name="composer.json" hash="719cc746e830f62c35eb73f694b02881"/><dir name="res"><file name="cacert.pem" hash="dcd698b7138230c1a9b6d04051a4fc83"/></dir><dir name="src"><file name="CaBundle.php" hash="ce2de2d0d2ac7d0035333c47f062f7f3"/></dir></dir><file name="installed.json" hash="309fa5b7f42e66abb184c0d81e0eaca9"/></dir><dir name="geoip2"><dir name="geoip2"><file name="CHANGELOG.md" hash="c93aaf66d68f404db1143ac548e72f69"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="99be28bbbbf4e4e4d9ade38af2172c7b"/><file name="composer.json" hash="684eb00e319ab4b9f463712d2ea07ee2"/><dir name="src"><dir name="Compat"><file name="JsonSerializable.php" hash="b328c8968d8f6fd793da9ec8266b7ead"/></dir><dir name="Database"><file name="Reader.php" hash="69128baa625870ba775cdbce95bff033"/></dir><dir name="Exception"><file name="AddressNotFoundException.php" hash="f7b42f2f1952b78482e1cc6ae3e9c92e"/><file name="AuthenticationException.php" hash="a664ef571be82c82fa584545e66ff1fb"/><file name="GeoIp2Exception.php" hash="b14e09b853d258d93f7a0fd50e07b1d3"/><file name="HttpException.php" hash="c8129a00315622f4b2ce282096d41562"/><file name="InvalidRequestException.php" hash="79b7b13a3057e02ad573f01795bad4d3"/><file name="OutOfQueriesException.php" hash="35f4fa482a66d2e424b0f0ca9d19d390"/></dir><dir name="Model"><file name="AbstractModel.php" hash="34ef56e9aa17d1b408bcb5f48652e921"/><file name="AnonymousIp.php" hash="3c241f7efdde4dd769611f725384cc20"/><file name="City.php" hash="05f32089542682ec031911c66f457799"/><file name="ConnectionType.php" hash="202313369fa7d759d0c2f842a707cc42"/><file name="Country.php" hash="75526b5928bde78331e1cbaaf8551c30"/><file name="Domain.php" hash="8dcd1be751d401e66a8d220b0f15dca1"/><file name="Enterprise.php" hash="34fac18339d7cdff0492376a2d6ddaaf"/><file name="Insights.php" hash="1f0131cf93a2a64af5f7b1ae4c7f3a87"/><file name="Isp.php" hash="fbeb9ae86063258f363f6d2ed3e18057"/></dir><file name="ProviderInterface.php" hash="ada7808f8ef411d055c74f8e1e607930"/><dir name="Record"><file name="AbstractPlaceRecord.php" hash="746e0df11901479b60cb5dabf938cced"/><file name="AbstractRecord.php" hash="d821f2fb8a4ebd3c75f78ad82bd7a32c"/><file name="City.php" hash="54a21bf0b8984bea0091ee4e4eea9a5d"/><file name="Continent.php" hash="05ec67b54e6be3287cc3f2e439e1eaf5"/><file name="Country.php" hash="626d0e71d01876f400787be9e51ab628"/><file name="Location.php" hash="7552ff9d0f2a415bfee76f0141ffe9e2"/><file name="MaxMind.php" hash="05a43644700119689bf9940ab480b967"/><file name="Postal.php" hash="63832bd023c1c91a63c55477f14bb671"/><file name="RepresentedCountry.php" hash="9def588dc86e3302178992be480c5592"/><file name="Subdivision.php" hash="95008667190f6465669dbe6314d1e1e8"/><file name="Traits.php" hash="b70cdd26fd9a8b72e4e116c3cfef686a"/></dir><dir name="WebService"><file name="Client.php" hash="43a9140d8c9e6f52ee8369de1a6db5d8"/></dir></dir><file name=".gitmodules" hash="a1da842003e271f63f73319ab5d4e555"/></dir></dir><dir name="kriswallsmith"><dir name="buzz"><file name="CHANGELOG.md" hash="52f99dd3ede5d1ce97bf3b84597d1f69"/><file name="LICENSE" hash="8a10d9e96a9a0925ec7ebcacdd311337"/><file name="README.md" hash="901c8c869022838a7b1d5c355b678f41"/><file name="composer.json" hash="450defd5c92b8f905eb533c7b68775b7"/><dir name="examples"><file name="CookieListener.php" hash="424842bc2eee0b7bebdb9e105afe850f"/><file name="DigestAuthListener.php" hash="c4bfba70ecdd10b34174dbabda70bd38"/></dir><dir name="lib"><dir name="Buzz"><file name="Browser.php" hash="b59c3a87d43f0341ed310543e7dc8555"/><dir name="Client"><file name="AbstractClient.php" hash="f40f342282ce950321ee033e38c0f861"/><file name="AbstractCurl.php" hash="d86e03512358f4e946e623382da97afb"/><file name="AbstractStream.php" hash="f81315ba845a61eb3065eb988e32051d"/><file name="BatchClientInterface.php" hash="3216ee78dd79fab5cf54bcb94ca7cbad"/><file name="ClientInterface.php" hash="0ba9521f57320a50bc912565b45f3324"/><file name="Curl.php" hash="9208ca282da8907429e0c5ffb8a91e91"/><file name="FileGetContents.php" hash="a74d11f3053c37ad3ec74f80bb17df46"/><file name="MultiCurl.php" hash="097a75700f0781016e5b8bfa574af159"/></dir><dir name="Exception"><file name="ClientException.php" hash="2290c9bb236df1415e63ee4b50199524"/><file name="ExceptionInterface.php" hash="887286cc69d88403826f2cde0fb05d6d"/><file name="InvalidArgumentException.php" hash="40bcc515ead31256f723daa920ea970e"/><file name="LogicException.php" hash="1f93d93a6173bc3dc83071928d855a1c"/><file name="RequestException.php" hash="603c99142aa41fb69373c46d0c4d5eff"/><file name="RuntimeException.php" hash="2a5c17331eb1b01dcf82138668f149fb"/></dir><dir name="Listener"><file name="BasicAuthListener.php" hash="a01fae7d3a226d7b4c4a213cf2784ea4"/><file name="CallbackListener.php" hash="2b80a85e1dd5905bab79af7dc851d780"/><file name="CookieListener.php" hash="f2d400cbe1973e0bf2e70d233c71976e"/><file name="DigestAuthListener.php" hash="4205ee1295ae9e6046187b2a05436378"/><dir name="History"><file name="Entry.php" hash="e21f16b7547b4571f8325f8e2d1a0a32"/><file name="Journal.php" hash="4a7382bf0aa15400795dad3bcc0b3a0b"/></dir><file name="HistoryListener.php" hash="c20a2823330ad1c62c1e00d666062feb"/><file name="ListenerChain.php" hash="a19636acd50c32e7f1f3e74f70fa1c04"/><file name="ListenerInterface.php" hash="843663d54fc7362a9ff1aa79a8bc0503"/><file name="LoggerListener.php" hash="a1848cf1541d6c573ac17f216b6113e4"/></dir><dir name="Message"><file name="AbstractMessage.php" hash="d26608e2edb470f57c315005885bb359"/><dir name="Factory"><file name="Factory.php" hash="5cf89875f6796df4df08926b5f1006ad"/><file name="FactoryInterface.php" hash="96293478c30ce7ab5f6c8e1385d839db"/></dir><dir name="Form"><file name="FormRequest.php" hash="cd16d45436dab763aa8026e5adc43e7f"/><file name="FormRequestInterface.php" hash="57147f32a199d34858494aa9e935046e"/><file name="FormUpload.php" hash="5ad3c1fc47ea6d222915944b39bf46b2"/><file name="FormUploadInterface.php" hash="e654b096b82b5a4275489492387f568b"/></dir><file name="MessageInterface.php" hash="bd99826f8e2c9d1a1b0c65a5eb997e9e"/><file name="Request.php" hash="a1342c3ea578ddefa2b120814ba8bf80"/><file name="RequestInterface.php" hash="2b0fe4438cfc90c017389b191c94652b"/><file name="Response.php" hash="f4ffe4a64514548b0beb621a3d9f0089"/></dir><dir name="Util"><file name="Cookie.php" hash="1d42f5324611c19e8a6ea5c2cb6eb9f2"/><file name="CookieJar.php" hash="a3a92e31e139f797445e6be14c32e155"/><file name="Url.php" hash="888ec065b1a992dd2e8062bd7ba9e679"/></dir></dir></dir><file name="phpunit.xml.dist" hash="188b17738bbcd66e1fd408b454243572"/><dir name="test"><dir name="Buzz"><dir name="Test"><file name="BrowserTest.php" hash="e813cb5807345aff24698449f1ae5be9"/><dir name="Client"><file name="AbstractStreamTest.php" hash="e7b47d0fe24b7149c62ac736177d203d"/><file name="ClientTest.php" hash="8a14503e884cdf9b5e833b5206be61a4"/><file name="FunctionalTest.php" hash="0f069b79b734fb2efbde5f276d6ce37a"/></dir><dir name="Listener"><file name="BasicAuthListenerTest.php" hash="ae5c0fd244f7743d81080118b42dc73c"/><file name="CallbackListenerTest.php" hash="07d0e399b18e0cdd69aa66bf62bcbadc"/><file name="DigestAuthListenerTest.php" hash="595dbd612d2f1fde1264f738d1ed2c1e"/><dir name="History"><file name="EntryTest.php" hash="b7c001167cc0131c399e071538a66cb7"/><file name="JournalTest.php" hash="4111eb643fbcb05129dded0067aeefa7"/></dir><file name="HistoryListenerTest.php" hash="9953cad9320b6c78ce477532d454b3af"/><file name="ListenerChainTest.php" hash="ff5b9727f91f7a9da2d322d5a97deddb"/><file name="LoggerListenerTest.php" hash="7e40e0735e7dac71bcd9119c7a3c2e56"/></dir><dir name="Message"><file name="AbstractMessageTest.php" hash="90d531511705842c573b28f4c8fb5d68"/><file name="FactoryTest.php" hash="ced832a48cbc0d9e288136c1ff77d075"/><dir name="Fixtures"><file name="google.png" hash="169e859db7f28a01e1b51e1c9e2d6b2b"/></dir><file name="FormRequestTest.php" hash="a2ffa5131fd015f512b4a27c346d5657"/><file name="FormUploadTest.php" hash="34879f48bef94f8e33da964873cab449"/><file name="RequestTest.php" hash="e317c4e28a35a1aaebb7bec68cfe896c"/><file name="ResponseTest.php" hash="579841f50c45431092ca535aefbd9dc8"/></dir><dir name="Util"><file name="CookieJarTest.php" hash="79ee72e90586bc4be15b609c62b6db40"/><file name="CookieTest.php" hash="52f9472651d7cd7933fe5cf91daff218"/><file name="UrlTest.php" hash="2161e86caf2c229e63be62b555375054"/></dir></dir></dir><dir name="etc"><file name="nginx.conf" hash="db731e2d76cb867039bbc90014ba6476"/><file name="squid.conf" hash="77d3d02b7f2d73d6330a207b579785e7"/></dir><file name="server.php" hash="479689cf2fe15407f6280e83160b0277"/></dir><file name=".gitignore" hash="f7d5a75baf3a1beeb22243dd7ef578bd"/><file name=".travis.yml" hash="1b91a4fa3e3b4cc60d31f5f0eddb7e79"/></dir></dir><dir name="maxmind"><dir name="web-service-common"><file name="CHANGELOG.md" hash="7f2f05525acaaf52f3771f0129676e4a"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="37316c741db7f5ae8dc1eaff4a045bd8"/><file name="composer.json" hash="ec42bb19ef5ba2b22192e89f3bd7b1ce"/><dir name="src"><dir name="Exception"><file name="AuthenticationException.php" hash="a1fdcba6decc96345545f4f10287e162"/><file name="HttpException.php" hash="6579aa42001dbe77ca3e8d1e51aac3d2"/><file name="InsufficientFundsException.php" hash="14886d684f1be0b4b28a66f4b22e490f"/><file name="InvalidInputException.php" hash="72dc20089eb4a5cfaccafe6e2b17a36e"/><file name="InvalidRequestException.php" hash="b55c1b8b30715dc40416be8c1ce3bd61"/><file name="IpAddressNotFoundException.php" hash="16313ab0d82195477e1ba071e7696313"/><file name="PermissionRequiredException.php" hash="f832cea2f10902ae2ffa4521e13c73d1"/><file name="WebServiceException.php" hash="6882e0d113e22478202f99caf306bde9"/></dir><dir name="WebService"><file name="Client.php" hash="6253acd40102faead6d8750f5467d420"/><dir name="Http"><file name="CurlRequest.php" hash="da8ba5cf09aea35ee6a69c074d70f3f8"/><file name="Request.php" hash="b493bca240735584dd610eadf2372880"/><file name="RequestFactory.php" hash="5c41aa383b7be71773fa2b68c0ad4e6e"/></dir></dir></dir></dir></dir><dir name="maxmind-db"><dir name="reader"><file name="CHANGELOG.md" hash="6e0348104ab013c82482394c0d10322e"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="4d6518a9c5916e04e55cd394f0f39424"/><file name="composer.json" hash="0a95937043bf1924fb18f70ba453122a"/><dir name="ext"><file name="config.m4" hash="e6d700d321e152a73797148a486c449d"/><file name="maxminddb.c" hash="0ac67b9330fa433be129f77c2b9622c6"/><file name="php_maxminddb.h" hash="312cbe9b3aa017e727b52d421475b7fa"/><dir name="tests"><file name="001-load.phpt" hash="86ba1adc502540b42cbb1ef2fe5cfd67"/></dir></dir><dir name="src"><dir name="MaxMind"><dir name="Db"><dir name="Reader"><file name="Decoder.php" hash="ac9cc72ca5d65bf0e2bc26254d2e08e6"/><file name="InvalidDatabaseException.php" hash="30a5d8369ea2012e747ac1e59f78c76f"/><file name="Metadata.php" hash="643d939699d39a80c3a8c3adb19ee9e7"/><file name="Util.php" hash="92c382f8642000eef497745ec9bf2e91"/></dir><file name="Reader.php" hash="dd648dd18ea4df0c8ff6eabee28ddf57"/></dir></dir></dir></dir></dir></dir><dir name="Model"><file name="BackendRedirector.php" hash="23201003d6ce909be11f274ff45247eb"/><file name="Notification.php" hash="a62c3b7ff11cd2d1082c0d959d8eb295"/><file name="Observer.php" hash="f95067dfec736812f55b60c7a82db024"/><file name="StoreExtender.php" hash="316db9a49ce8c22edf44648f2fa7baa6"/></dir><dir name="bridge2cart"><file name="bridge.php" hash="cdd197a1af1a05082a8836ea24922dad"/><file name="config.php" hash="0fb8e12c8d9c293354eb4fb96a713608"/><file name="helper.php" hash="afb5e2141259c580285ac85d0c180144"/><file name="preloader.php" hash="8a8ada3537394687defdc28d4b6077e8"/></dir><dir name="controllers"><file name="HelperController.php" hash="73fb01f035db7d75eb1ee0a3d535fd0b"/><file name="IndexController.php" hash="a76fb36d3f6fa4c370b766ed9ba818ed"/></dir><dir name="etc"><file name="adminhtml.xml" hash="07e287503c40ce7c588efe7863c05002"/><file name="config.xml" hash="b77efdfa43556d028ea3e1166c4b1d7f"/><file name="system.xml" hash="cfe59ca34ebfef69b900f4ad275a809a"/></dir><dir name="resources"><dir name="geoip"><file name="COPYRIGHT.txt" hash="37e1c6f4fc26ec1993d127575029c079"/><file name="GeoIP2-Country.mmdb" hash="33a191481c2840aa2ad482d00773d6b5"/><file name="LICENSE.txt" hash="46fce10ea30c7c62dbf39fc979604d68"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="867fafe49fa978668f6e5d7027c57aa6"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="system"><dir name="config"><file name="activate.phtml" hash="5ef389ad58cb1be9cc666fecd8379fbf"/><dir name="fieldset"><file name="banner.phtml" hash="921b677bd3e52d9c86172bdf26ab4a37"/><file name="status.phtml" hash="412bd1ea314a7f0c8897e6a9225c3551"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="1226a298ca08a92008293ba4e8c09eab"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="connector"><file name="footer.phtml" hash="bd48d0e36dea0936b9f28fbdada3b8c1"/><file name="head.phtml" hash="107312871a7b2730532db8d986de5726"/><file name="product_view.phtml" hash="2036bc444284b99f4cc8228fa4751777"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Webinterpret_Connector.xml" hash="087c2742f6bcb89ed6a77921e6493feb"/></dir></target><target name="magelocale"><dir><dir name="de_DE"><file name="Webinterpret_Connector.csv" hash="91312fd3bd2645b88e3b3643b6b614a9"/></dir><dir name="en_US"><file name="Webinterpret_Connector.csv" hash="c382db753974630198cf029cf90b5d27"/></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.3.2</min><max>7.0.10</max></php></required></dependencies>
|
18 |
</package>
|