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.

crypt.php 441B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. class Crypt {
  3. /**
  4. * @access private
  5. */
  6. protected $plain = '';
  7. /**
  8. * @access private
  9. */
  10. protected $password;
  11. protected $size;
  12. function __construct($plaintext) {
  13. $this->plain = $plaintext;
  14. }
  15. /**
  16. * @return true/false boolean
  17. */
  18. public function crypt($algorithm) {
  19. return true;
  20. }
  21. public function get() {
  22. return $this->password;
  23. }
  24. }