mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-04-19 12:42:18 +03:00
36 lines
448 B
PHP
36 lines
448 B
PHP
<?php
|
|
|
|
class Crypt
|
|
{
|
|
/**
|
|
* @access private
|
|
*/
|
|
protected $plain = '';
|
|
|
|
/**
|
|
* @access private
|
|
*/
|
|
protected $password;
|
|
|
|
protected $size;
|
|
|
|
|
|
public function __construct($plaintext)
|
|
{
|
|
$this->plain = $plaintext;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function crypt($algorithm)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function get()
|
|
{
|
|
return $this->password;
|
|
}
|
|
}
|