0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00
postfixadmin/scripts/snippets/crypt.php
2022-06-28 14:06:33 +01:00

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;
}
}