You are here

function encrypt_phpseclib_encrypt_encryption_methods in Encrypt 7.3

Same name and namespace in other branches
  1. 7.2 plugins/encryption_methods/phpseclib.inc \encrypt_phpseclib_encrypt_encryption_methods()

Implements MODULE_FILENAME_encrypt_encryption_methods().

1 call to encrypt_phpseclib_encrypt_encryption_methods()
phpseclib.inc in plugins/encryption_methods/phpseclib.inc

File

plugins/encryption_methods/phpseclib.inc, line 13

Code

function encrypt_phpseclib_encrypt_encryption_methods() {
  return array(
    'title' => t('PHP Secure Communications Library (phpseclib)'),
    'description' => t('Uses the <a href="http://phpseclib.sourceforge.net/">phpseclib</a> library. This method is only preferable if you cannot install mcrypt.'),
    'encrypt callback' => '_encrypt_encryption_methods_phpseclib',
    'dependency callback' => '_encrypt_phpseclib_dependencies',
  );
}