Skip to content
Snippets Groups Projects
Commit 4c05259c authored by Björn Schießle's avatar Björn Schießle
Browse files

legacyBlockDecryprt() needs to be public

parent df22a7c4
No related branches found
No related tags found
No related merge requests found
......@@ -623,7 +623,7 @@ class Crypt
* @param int $maxLength
* @return string
*/
private static function legacyBlockDecrypt( $data, $key = '', $maxLength = 0 ) {
public static function legacyBlockDecrypt( $data, $key = '', $maxLength = 0 ) {
$result = '';
while ( strlen( $data ) ) {
$result .= self::legacyDecrypt( substr( $data, 0, 8192 ), $key );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment