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