PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
mycred
/
addons
/
buy-creds
/
gateways
/
Bitpay
/
Crypto
<?php /** * @license Copyright 2011-2014 BitPay Inc., MIT License * see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE */ namespace Bitpay\Crypto; /** * All crypto extensions MUST support this interface */ interface CryptoInterface { /** * If the users system supports the cryto extension, this should return * true, otherwise it should return false. * * @return boolean */ public static function hasSupport(); /** * @return array */ public function getAlgos(); }
[+]
..
[-] HashExtension.php
[edit]
[-] McryptExtension.php
[edit]
[-] .Crypto.php
[edit]
[-] CryptoInterface.php
[edit]
[-] OpenSSLExtension.php
[edit]