Aleksander Machniak
2016-03-30 007c9ddcb0c49733522688c4d2364d1a4ab9ec8e
commit | author | age
48e9c1 1 <?php
58c279 2
AM 3 /**
48e9c1 4  +-------------------------------------------------------------------------+
T 5  | Signature class for the Enigma Plugin                                   |
6  |                                                                         |
a99c34 7  | Copyright (C) 2010-2015 The Roundcube Dev Team                          |
48e9c1 8  |                                                                         |
a99c34 9  | Licensed under the GNU General Public License version 3 or              |
AM 10  | any later version with exceptions for skins & plugins.                  |
11  | See the README file for a full license statement.                       |
48e9c1 12  |                                                                         |
T 13  +-------------------------------------------------------------------------+
14  | Author: Aleksander Machniak <alec@alec.pl>                              |
15  +-------------------------------------------------------------------------+
16 */
17
18 class enigma_signature
19 {
20     public $id;
21     public $valid;
22     public $fingerprint;
23     public $created;
24     public $expires;
25     public $name;
26     public $comment;
27     public $email;
007c9d 28
AM 29     // Set it to true if signature is valid, but part of the message
30     // was out of the signed block
31     public $partial;
48e9c1 32 }