You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

enigma_signature.php 1.2KB

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