Свойство | Тип | Описание | |
---|---|---|---|
$_cache | array | Cached data. |
Метод | Описание | |
---|---|---|
__get ( $name ) | ||
containsEmail ( $email ) : boolean | Does this key contain an e-mail address? | |
getEncryptKeys ( ) : array | Return the list of verified encryption subkeys in this key. | |
getFingerprints ( ) : array | Return the list of key fingerprints. | |
getPublicKey ( ) : Horde_Pgp_Element_PublicKey | Return the public key. | |
getSignKeys ( ) : array | Returns the list of signing subkeys within this key. | |
getUserIds ( ) : array | Returns the list of user ID information associated with this key. |
Метод | Описание | |
---|---|---|
_parse ( ) | Parse the message data, verifying the key contents. | |
_parseCreation ( $p ) | ||
_parseRevokePacket ( $p ) | ||
_parseVerify ( $key, $data, $sig ) |
public containsEmail ( $email ) : boolean | ||
Результат | boolean | True if the key contains the e-mail address. |
public getEncryptKeys ( ) : array | ||
Результат | array | An array of objects, with these keys: - created: (DateTime) Creation time. - fingerprint: (string) Key fingerprint. - id: (string) Key ID. - key: (OpenPGP_PublicKeyPacket) Key packet. - revoke: (object) Revocation information. Elements: - created: (DateTime) Creation time. - info: (string) Human readable reason string. - reason: (integer) Revocation reason. |
public getFingerprints ( ) : array | ||
Результат | array | Keys are key IDs; values are fingerprints. |
abstract public getPublicKey ( ) : Horde_Pgp_Element_PublicKey | ||
Результат | Horde_Pgp_Element_PublicKey | Public key. |
public getSignKeys ( ) : array | ||
Результат | array | An array of objects, with these keys: - created: (DateTime) Creation time. - fingerprint: (string) Key fingerprint. - id: (string) Key ID. - key: (OpenPGP_PublicKeyPacket) Key packet. - revoke: (object) Revocation information. Elements: - created: (DateTime) Creation time. - info: (string) Human readable reason string. - reason: (integer) Revocation reason. |
public getUserIds ( ) : array | ||
Результат | array | An array of objects, with these keys: - comment: (string) Comment. - created: (DateTime) Creation time. - email: (Horde_Mail_Rfc822_Address) E-mail address. - key: (OpenPGP_PublicKeyPacket) Key packet. - revoke: (object) Revocation information. Elements: - created: (DateTime) Creation time. - info: (string) Human readable reason string. - reason: (integer) Revocation reason. - sig: (OpenPGP_SignaturePacket) Signature packet. |