Interface EncryptionAlgorithmInterface

Summary

Fully Qualified Name: Zend\Filter\Encrypt\EncryptionAlgorithmInterface

Description

Encryption interface

Methods

Name Description Defined By
decrypt() Decrypts $value with the defined settings EncryptionAlgorithmInterface
encrypt() Encrypts $value with the defined settings EncryptionAlgorithmInterface
toString() Return the adapter name EncryptionAlgorithmInterface

Method Details

decrypt()

Decrypts $value with the defined settings

Parameter Name Type Description
$value string Data

Returns: string The decrypted data

encrypt()

Encrypts $value with the defined settings

Parameter Name Type Description
$value string Data

Returns: string The encrypted data

toString()

Return the adapter name

Returns: string

Top