1<?php
2
3class Crypt
4{
5
6  /**
7   * @access private
8   */
9    protected $plain = '';
10
11    /**
12     * @access private
13     */
14    protected $password;
15
16    protected $size;
17
18
19    public function __construct($plaintext)
20    {
21        $this->plain = $plaintext;
22    }
23
24    /**
25     * @return bool
26     */
27    public function crypt($algorithm)
28    {
29        return true;
30    }
31
32    public function get()
33    {
34        return $this->password;
35    }
36}
37