You are here

function _simplenews_statistics_rc4Decrypt in Simplenews Statistics 6.3

Decrypt given cipher text using the key with RC4 algorithm. All parameters and return value are in binary format.

1 call to _simplenews_statistics_rc4Decrypt()
_simplenews_statistics_decode in ./simplenews_statistics.module
Decode a request.

File

includes/rc4.inc, line 50
RC4 symmetric cipher encryption/decryption Copyright (c) 2006 by Ali Farhadi. released under the terms of the Gnu Public License. see the GPL for details.

Code

function _simplenews_statistics_rc4Decrypt($key, $ct) {
  return _simplenews_statistics_rc4Encrypt($key, $ct);
}