PATH:
home
/
lab2454c
/
archfort.com
/
wp-content
/
plugins
/
wordfence
/
modules
/
login-security
/
classes
/
utility
<?php namespace WordfenceLS; use WordfenceLS\Crypto\Model_Base2n; class Utility_BaseConversion { public static function get_base32() { static $base32 = null; if ($base32 === null) $base32 = new Model_Base2n(5, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567', false, true, true); return $base32; } public static function base32_encode($data) { $base32 = self::get_base32(); return $base32->encode($data); } }
[-] baseconversion.php
[edit]
[+]
..
[-] array.php
[edit]
[-] serialization.php
[edit]
[-] number.php
[edit]
[-] multisite.php
[edit]
[-] url.php
[edit]
[-] measuredstring.php
[edit]
[-] lock.php
[edit]
[-] databaselock.php
[edit]
[-] nulllock.php
[edit]
[-] multisiteconfigurationextractor.php
[edit]
[-] sleep.php
[edit]