You are here

function encrypt_test_encrypt_test in Encrypt 7

Callback for encryption. We'll just return the text, since we're not concerned with testing encryption.

1 string reference to 'encrypt_test_encrypt_test'
encrypt_test_encrypt_method_info in tests/encrypt_test.module
Implementation of hook_encrypt_method_info().

File

tests/encrypt_test.module, line 38
Declares a bogus encryption method for testing purposes.

Code

function encrypt_test_encrypt_test($op = 'encrypt', $text = '', $options = array()) {
  return $text;
}