PHP Интерфейс SAML2\Configuration\CertificateProvider

Наследование: extends SAML2\Configuration\Queryable
Показать файл Открыть проект Примеры использования интерфейса

Открытые методы

Метод Описание
getCertificateData ( ) : null | string Returns the contents of an X509 pem certificate, without the '-----BEGIN CERTIFICATE-----' and '-----END CERTIFICATE-----'.
getCertificateFile ( ) : null | string Returns the full path to the (local) file that contains the X509 pem certificate.
getCertificateFingerprints ( ) : null | array | Traversable Returns an array or \Traversable where each element represents a certificate fingerprint. A certificate fingerprint is a string containing the certificate fingerprint.
getKeys ( ) : null | array | Traversable Returns an array or \Traversable of keys, where each element represents a configured key.

Описание методов

getCertificateData() публичный Метод

Returns the contents of an X509 pem certificate, without the '-----BEGIN CERTIFICATE-----' and '-----END CERTIFICATE-----'.
public getCertificateData ( ) : null | string
Результат null | string

getCertificateFile() публичный Метод

Returns the full path to the (local) file that contains the X509 pem certificate.
public getCertificateFile ( ) : null | string
Результат null | string

getCertificateFingerprints() публичный Метод

Returns an array or \Traversable where each element represents a certificate fingerprint. A certificate fingerprint is a string containing the certificate fingerprint.
Устаревший: Please use getCertifiateFile() or getCertificateData()
public getCertificateFingerprints ( ) : null | array | Traversable
Результат null | array | Traversable

getKeys() публичный Метод

A configured key itself is an array or object implementing ArrayAccess where the array key/property is the configuration key and the value is the configured value.
public getKeys ( ) : null | array | Traversable
Результат null | array | Traversable