mirror of
https://github.com/crypto-pro-web/crypto-pro-php.git
synced 2025-01-18 11:25:50 +03:00
поправил phpdoc
This commit is contained in:
parent
0ce05ac65c
commit
91b3aa1f25
@ -24,7 +24,7 @@ class CryptoPro
|
|||||||
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
||||||
*
|
*
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
* @return void
|
* @return Certificate[]
|
||||||
*/
|
*/
|
||||||
public static function getUserCertificates(bool $resetCache = false)
|
public static function getUserCertificates(bool $resetCache = false)
|
||||||
{
|
{
|
||||||
@ -44,7 +44,7 @@ class CryptoPro
|
|||||||
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
||||||
*
|
*
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
* @return void
|
* @return Certificate[]
|
||||||
*/
|
*/
|
||||||
public static function getAllUserCertificates(bool $resetCache = false)
|
public static function getAllUserCertificates(bool $resetCache = false)
|
||||||
{
|
{
|
||||||
@ -68,7 +68,7 @@ class CryptoPro
|
|||||||
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
||||||
*
|
*
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
* @return void
|
* @return Certificate[]
|
||||||
*/
|
*/
|
||||||
public static function getContainerCertificates(bool $resetCache = false)
|
public static function getContainerCertificates(bool $resetCache = false)
|
||||||
{
|
{
|
||||||
@ -88,7 +88,7 @@ class CryptoPro
|
|||||||
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
||||||
*
|
*
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
* @return void
|
* @return Certificate[]
|
||||||
*/
|
*/
|
||||||
public static function getAllContainerCertificates(bool $resetCache = false)
|
public static function getAllContainerCertificates(bool $resetCache = false)
|
||||||
{
|
{
|
||||||
@ -111,7 +111,7 @@ class CryptoPro
|
|||||||
*
|
*
|
||||||
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
||||||
*
|
*
|
||||||
* @return array
|
* @return Certificate[]
|
||||||
*/
|
*/
|
||||||
public static function getCertificates(bool $resetCache = false)
|
public static function getCertificates(bool $resetCache = false)
|
||||||
{
|
{
|
||||||
@ -153,7 +153,7 @@ class CryptoPro
|
|||||||
*
|
*
|
||||||
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
* @param bool $resetCache Сбросить кэш. true - повторно получить список сертификатов из хранилища
|
||||||
*
|
*
|
||||||
* @return array
|
* @return Certificate[]
|
||||||
*/
|
*/
|
||||||
public static function getAllCertificates(bool $resetCache = false)
|
public static function getAllCertificates(bool $resetCache = false)
|
||||||
{
|
{
|
||||||
@ -608,7 +608,7 @@ class CryptoPro
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
$cadesHashedData->set_Algorithm(CADESCOM_HASH_ALGORITHM_CP_GOST_3411_2012_256);
|
$cadesHashedData->set_Algorithm(CADESCOM_HASH_ALGORITHM::HASH_CP_GOST_3411_2012_256);
|
||||||
$cadesHashedData->set_DataEncoding(BASE64_TO_BINARY);
|
$cadesHashedData->set_DataEncoding(BASE64_TO_BINARY);
|
||||||
$cadesHashedData->Hash($messageBase64);
|
$cadesHashedData->Hash($messageBase64);
|
||||||
}
|
}
|
||||||
@ -748,6 +748,14 @@ class CryptoPro
|
|||||||
return $certificates;
|
return $certificates;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $thumbprint
|
||||||
|
* @param int $storeLocation
|
||||||
|
* @param string $storeName
|
||||||
|
*
|
||||||
|
* @throws \Exception
|
||||||
|
* @return \CPCertificate
|
||||||
|
*/
|
||||||
protected static function getCadesCertificateFromStore(string $thumbprint, int $storeLocation, string $storeName = 'My')
|
protected static function getCadesCertificateFromStore(string $thumbprint, int $storeLocation, string $storeName = 'My')
|
||||||
{
|
{
|
||||||
$thumbprint = mb_strtoupper($thumbprint);
|
$thumbprint = mb_strtoupper($thumbprint);
|
||||||
|
Loading…
Reference in New Issue
Block a user