You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-07-04 19:02:25 +03:00
33 lines
453 B
PHP
33 lines
453 B
PHP
<?php
|
|
|
|
class Crypt {
|
|
|
|
/**
|
|
* @access private
|
|
*/
|
|
protected $plain = '';
|
|
|
|
/**
|
|
* @access private
|
|
*/
|
|
protected $password;
|
|
|
|
protected $size;
|
|
|
|
|
|
public function __construct($plaintext) {
|
|
$this->plain = $plaintext;
|
|
}
|
|
|
|
/**
|
|
* @return true/false boolean
|
|
*/
|
|
public function crypt($algorithm) {
|
|
return true;
|
|
}
|
|
|
|
public function get() {
|
|
return $this->password;
|
|
}
|
|
}
|