| 12345678910111213141516171819202122232425262728293031323334 | 
							- <?php
 - 
 - class Crypt {
 - 
 -   /**
 -    * @access private
 -    */
 -   protected $plain = '';
 -   
 -   /**
 -    * @access private
 -    */
 -   protected $password;
 -   
 -   protected $size;
 - 
 -   
 -   function __construct($plaintext) {
 -     $this->plain = $plaintext;
 -   }
 -   
 -   /**
 -    * @return true/false boolean
 -    */
 -   public function crypt($algorithm) {
 -     return true;
 -   }
 - 
 -   public function get() {
 -     return $this->password;
 -   }
 - 
 - 
 - }
 
 
  |