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 453B

1234567891011121314151617181920212223242526272829303132
  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. public 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. }