You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
441 B
PHP
34 lines
441 B
PHP
<?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;
|
|
}
|
|
|
|
|
|
} |