PHP 클래스 ManaPHP\Security\Crypt

상속: extends ManaPHP\Component, implements ManaPHP\Security\CryptInterface
파일 보기 프로젝트 열기: manaphp/manaphp

보호된 프로퍼티들

프로퍼티 타입 설명
$_key string
$_mcrypt resource

공개 메소드들

메소드 설명
__construct ( string | array $options = [] ) Crypt constructor.
decrypt ( string $text, string $key = null ) : string Decrypts an encrypted text
encrypt ( string $text, string $key = null ) : string Encrypts a text

메소드 상세

__construct() 공개 메소드

Crypt constructor.
public __construct ( string | array $options = [] )
$options string | array

decrypt() 공개 메소드

echo $crypt->decrypt($encrypted, "decrypt password");
public decrypt ( string $text, string $key = null ) : string
$text string
$key string
리턴 string

encrypt() 공개 메소드

$encrypted = $crypt->encrypt("Ultra-secret text", "encrypt password");
public encrypt ( string $text, string $key = null ) : string
$text string
$key string
리턴 string

프로퍼티 상세

$_key 보호되어 있는 프로퍼티

protected string $_key
리턴 string

$_mcrypt 보호되어 있는 프로퍼티

protected resource $_mcrypt
리턴 resource