crypt_test.php 164 B

12345678
  1. <?php
  2. $str = "hello";
  3. $str_base32 = Dy\Crypt::base32_encode($str);
  4. var_dump($str_base32);
  5. var_dump(Dy\Crypt::base32_decode($str_base32));
  6. echo Dy\Crypt::md5(1);