Extension [ <persistent> extension #125 crypto version 0.3.2 ] {

  - Classes [17] {
    Class [ <internal:crypto> class Crypto\CryptoException extends Exception implements Throwable, Stringable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ protected $message = '' ]
        Property [ protected $code = 0 ]
        Property [ protected string $file = '' ]
        Property [ protected int $line = 0 ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> string $message = "" ]
            Parameter #1 [ <optional> int $code = 0 ]
            Parameter #2 [ <optional> ?Throwable $previous = null ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {

          - Parameters [0] {
          }
          - Tentative return [ void ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {

          - Parameters [0] {
          }
          - Return [ ?Throwable ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }
      }
    }

    Class [ <internal:crypto> class Crypto\CipherException extends Crypto\CryptoException implements Stringable, Throwable ] {

      - Constants [30] {
        Constant [ public int ALGORITHM_NOT_FOUND ] { 1 }
        Constant [ public int STATIC_METHOD_NOT_FOUND ] { 2 }
        Constant [ public int STATIC_METHOD_TOO_MANY_ARGS ] { 3 }
        Constant [ public int MODE_NOT_FOUND ] { 4 }
        Constant [ public int MODE_NOT_AVAILABLE ] { 5 }
        Constant [ public int AUTHENTICATION_NOT_SUPPORTED ] { 6 }
        Constant [ public int KEY_LENGTH_INVALID ] { 7 }
        Constant [ public int IV_LENGTH_INVALID ] { 8 }
        Constant [ public int AAD_SETTER_FORBIDDEN ] { 9 }
        Constant [ public int AAD_SETTER_FAILED ] { 10 }
        Constant [ public int AAD_LENGTH_HIGH ] { 11 }
        Constant [ public int TAG_GETTER_FORBIDDEN ] { 12 }
        Constant [ public int TAG_SETTER_FORBIDDEN ] { 13 }
        Constant [ public int TAG_GETTER_FAILED ] { 14 }
        Constant [ public int TAG_SETTER_FAILED ] { 15 }
        Constant [ public int TAG_LENGTH_SETTER_FORBIDDEN ] { 16 }
        Constant [ public int TAG_LENGTH_LOW ] { 17 }
        Constant [ public int TAG_LENGTH_HIGH ] { 18 }
        Constant [ public int TAG_VERIFY_FAILED ] { 19 }
        Constant [ public int INIT_ALG_FAILED ] { 20 }
        Constant [ public int INIT_CTX_FAILED ] { 21 }
        Constant [ public int INIT_ENCRYPT_FORBIDDEN ] { 22 }
        Constant [ public int INIT_DECRYPT_FORBIDDEN ] { 23 }
        Constant [ public int UPDATE_FAILED ] { 24 }
        Constant [ public int UPDATE_ENCRYPT_FORBIDDEN ] { 25 }
        Constant [ public int UPDATE_DECRYPT_FORBIDDEN ] { 26 }
        Constant [ public int FINISH_FAILED ] { 27 }
        Constant [ public int FINISH_ENCRYPT_FORBIDDEN ] { 28 }
        Constant [ public int FINISH_DECRYPT_FORBIDDEN ] { 29 }
        Constant [ public int INPUT_DATA_LENGTH_HIGH ] { 30 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ protected $message = '' ]
        Property [ protected $code = 0 ]
        Property [ protected string $file = '' ]
        Property [ protected int $line = 0 ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> string $message = "" ]
            Parameter #1 [ <optional> int $code = 0 ]
            Parameter #2 [ <optional> ?Throwable $previous = null ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {

          - Parameters [0] {
          }
          - Tentative return [ void ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {

          - Parameters [0] {
          }
          - Return [ ?Throwable ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }
      }
    }

    Class [ <internal:crypto> class Crypto\Cipher ] {

      - Constants [8] {
        Constant [ public int MODE_ECB ] { 1 }
        Constant [ public int MODE_CBC ] { 2 }
        Constant [ public int MODE_CFB ] { 3 }
        Constant [ public int MODE_OFB ] { 4 }
        Constant [ public int MODE_CTR ] { 5 }
        Constant [ public int MODE_GCM ] { 6 }
        Constant [ public int MODE_CCM ] { 7 }
        Constant [ public int MODE_XTS ] { 65537 }
      }

      - Static properties [0] {
      }

      - Static methods [4] {
        Method [ <internal:crypto> static public method getAlgorithms ] {

          - Parameters [2] {
            Parameter #0 [ <optional> $aliases = <default> ]
            Parameter #1 [ <optional> $prefix = <default> ]
          }
        }

        Method [ <internal:crypto> static public method hasAlgorithm ] {

          - Parameters [1] {
            Parameter #0 [ <required> $algorithm ]
          }
        }

        Method [ <internal:crypto> static public method hasMode ] {

          - Parameters [1] {
            Parameter #0 [ <required> $mode ]
          }
        }

        Method [ <internal:crypto> static public method __callStatic ] {

          - Parameters [2] {
            Parameter #0 [ <required> $name ]
            Parameter #1 [ <required> $arguments ]
          }
        }
      }

      - Properties [1] {
        Property [ protected $algorithm = NULL ]
      }

      - Methods [18] {
        Method [ <internal:crypto, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <required> $algorithm ]
            Parameter #1 [ <optional> $mode = <default> ]
            Parameter #2 [ <optional> $key_size = <default> ]
          }
        }

        Method [ <internal:crypto> public method getAlgorithmName ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method encryptInit ] {

          - Parameters [2] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <optional> $iv = <default> ]
          }
        }

        Method [ <internal:crypto> public method encryptUpdate ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:crypto> public method encryptFinish ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method encrypt ] {

          - Parameters [3] {
            Parameter #0 [ <required> $data ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <optional> $iv = <default> ]
          }
        }

        Method [ <internal:crypto> public method decryptInit ] {

          - Parameters [2] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <optional> $iv = <default> ]
          }
        }

        Method [ <internal:crypto> public method decryptUpdate ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:crypto> public method decryptFinish ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method decrypt ] {

          - Parameters [3] {
            Parameter #0 [ <required> $data ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <optional> $iv = <default> ]
          }
        }

        Method [ <internal:crypto> public method getBlockSize ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method getKeyLength ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method getIVLength ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method getMode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method getTag ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method setTag ] {

          - Parameters [1] {
            Parameter #0 [ <required> $tag ]
          }
        }

        Method [ <internal:crypto> public method setTagLength ] {

          - Parameters [1] {
            Parameter #0 [ <required> $tag_length ]
          }
        }

        Method [ <internal:crypto> public method setAAD ] {

          - Parameters [1] {
            Parameter #0 [ <required> $aad ]
          }
        }
      }
    }

    Class [ <internal:crypto> class Crypto\Hash ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [3] {
        Method [ <internal:crypto> static public method getAlgorithms ] {

          - Parameters [2] {
            Parameter #0 [ <optional> $aliases = <default> ]
            Parameter #1 [ <optional> $prefix = <default> ]
          }
        }

        Method [ <internal:crypto> static public method hasAlgorithm ] {

          - Parameters [1] {
            Parameter #0 [ <required> $algorithm ]
          }
        }

        Method [ <internal:crypto> static public method __callStatic ] {

          - Parameters [2] {
            Parameter #0 [ <required> $name ]
            Parameter #1 [ <required> $arguments ]
          }
        }
      }

      - Properties [1] {
        Property [ protected $algorithm = NULL ]
      }

      - Methods [7] {
        Method [ <internal:crypto, ctor> public method __construct ] {

          - Parameters [1] {
            Parameter #0 [ <required> $algorithm ]
          }
        }

        Method [ <internal:crypto> public method update ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:crypto> public method getAlgorithmName ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method digest ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method hexdigest ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method getSize ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method getBlockSize ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:crypto> class Crypto\HashException extends Crypto\CryptoException implements Stringable, Throwable ] {

      - Constants [7] {
        Constant [ public int HASH_ALGORITHM_NOT_FOUND ] { 1 }
        Constant [ public int STATIC_METHOD_NOT_FOUND ] { 2 }
        Constant [ public int STATIC_METHOD_TOO_MANY_ARGS ] { 3 }
        Constant [ public int INIT_FAILED ] { 4 }
        Constant [ public int UPDATE_FAILED ] { 5 }
        Constant [ public int DIGEST_FAILED ] { 6 }
        Constant [ public int INPUT_DATA_LENGTH_HIGH ] { 7 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ protected $message = '' ]
        Property [ protected $code = 0 ]
        Property [ protected string $file = '' ]
        Property [ protected int $line = 0 ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> string $message = "" ]
            Parameter #1 [ <optional> int $code = 0 ]
            Parameter #2 [ <optional> ?Throwable $previous = null ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {

          - Parameters [0] {
          }
          - Tentative return [ void ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {

          - Parameters [0] {
          }
          - Return [ ?Throwable ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }
      }
    }

    Class [ <internal:crypto> abstract class Crypto\MAC extends Crypto\Hash ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [3] {
        Method [ <internal:crypto, inherits Crypto\Hash> static public method getAlgorithms ] {

          - Parameters [2] {
            Parameter #0 [ <optional> $aliases = <default> ]
            Parameter #1 [ <optional> $prefix = <default> ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> static public method hasAlgorithm ] {

          - Parameters [1] {
            Parameter #0 [ <required> $algorithm ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> static public method __callStatic ] {

          - Parameters [2] {
            Parameter #0 [ <required> $name ]
            Parameter #1 [ <required> $arguments ]
          }
        }
      }

      - Properties [1] {
        Property [ protected $algorithm = NULL ]
      }

      - Methods [7] {
        Method [ <internal:crypto, overwrites Crypto\Hash, ctor> public method __construct ] {

          - Parameters [2] {
            Parameter #0 [ <required> $algorithm ]
            Parameter #1 [ <required> $key ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method update ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method getAlgorithmName ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method digest ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method hexdigest ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method getSize ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method getBlockSize ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:crypto> class Crypto\MACException extends Crypto\HashException implements Throwable, Stringable ] {

      - Constants [9] {
        Constant [ public int HASH_ALGORITHM_NOT_FOUND ] { 1 }
        Constant [ public int STATIC_METHOD_NOT_FOUND ] { 2 }
        Constant [ public int STATIC_METHOD_TOO_MANY_ARGS ] { 3 }
        Constant [ public int INIT_FAILED ] { 4 }
        Constant [ public int UPDATE_FAILED ] { 5 }
        Constant [ public int DIGEST_FAILED ] { 6 }
        Constant [ public int INPUT_DATA_LENGTH_HIGH ] { 7 }
        Constant [ public int MAC_ALGORITHM_NOT_FOUND ] { 1 }
        Constant [ public int KEY_LENGTH_INVALID ] { 2 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ protected $message = '' ]
        Property [ protected $code = 0 ]
        Property [ protected string $file = '' ]
        Property [ protected int $line = 0 ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> string $message = "" ]
            Parameter #1 [ <optional> int $code = 0 ]
            Parameter #2 [ <optional> ?Throwable $previous = null ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {

          - Parameters [0] {
          }
          - Tentative return [ void ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {

          - Parameters [0] {
          }
          - Return [ ?Throwable ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }
      }
    }

    Class [ <internal:crypto> class Crypto\HMAC extends Crypto\MAC ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [3] {
        Method [ <internal:crypto, inherits Crypto\Hash> static public method getAlgorithms ] {

          - Parameters [2] {
            Parameter #0 [ <optional> $aliases = <default> ]
            Parameter #1 [ <optional> $prefix = <default> ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> static public method hasAlgorithm ] {

          - Parameters [1] {
            Parameter #0 [ <required> $algorithm ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> static public method __callStatic ] {

          - Parameters [2] {
            Parameter #0 [ <required> $name ]
            Parameter #1 [ <required> $arguments ]
          }
        }
      }

      - Properties [1] {
        Property [ protected $algorithm = NULL ]
      }

      - Methods [7] {
        Method [ <internal:crypto, inherits Crypto\MAC, ctor> public method __construct ] {

          - Parameters [2] {
            Parameter #0 [ <required> $algorithm ]
            Parameter #1 [ <required> $key ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method update ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method getAlgorithmName ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method digest ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method hexdigest ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method getSize ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method getBlockSize ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:crypto> class Crypto\CMAC extends Crypto\MAC ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [3] {
        Method [ <internal:crypto, inherits Crypto\Hash> static public method getAlgorithms ] {

          - Parameters [2] {
            Parameter #0 [ <optional> $aliases = <default> ]
            Parameter #1 [ <optional> $prefix = <default> ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> static public method hasAlgorithm ] {

          - Parameters [1] {
            Parameter #0 [ <required> $algorithm ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> static public method __callStatic ] {

          - Parameters [2] {
            Parameter #0 [ <required> $name ]
            Parameter #1 [ <required> $arguments ]
          }
        }
      }

      - Properties [1] {
        Property [ protected $algorithm = NULL ]
      }

      - Methods [7] {
        Method [ <internal:crypto, inherits Crypto\MAC, ctor> public method __construct ] {

          - Parameters [2] {
            Parameter #0 [ <required> $algorithm ]
            Parameter #1 [ <required> $key ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method update ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method getAlgorithmName ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method digest ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method hexdigest ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method getSize ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\Hash> public method getBlockSize ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:crypto> class Crypto\Base64 ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [2] {
        Method [ <internal:crypto> static public method encode ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:crypto> static public method decode ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }
      }

      - Properties [0] {
      }

      - Methods [5] {
        Method [ <internal:crypto, ctor> public method __construct ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method encodeUpdate ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:crypto> public method encodeFinish ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method decodeUpdate ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:crypto> public method decodeFinish ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:crypto> class Crypto\Base64Exception extends Crypto\CryptoException implements Stringable, Throwable ] {

      - Constants [6] {
        Constant [ public int ENCODE_UPDATE_FORBIDDEN ] { 1 }
        Constant [ public int ENCODE_FINISH_FORBIDDEN ] { 2 }
        Constant [ public int DECODE_UPDATE_FORBIDDEN ] { 3 }
        Constant [ public int DECODE_FINISH_FORBIDDEN ] { 4 }
        Constant [ public int DECODE_UPDATE_FAILED ] { 5 }
        Constant [ public int INPUT_DATA_LENGTH_HIGH ] { 6 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ protected $message = '' ]
        Property [ protected $code = 0 ]
        Property [ protected string $file = '' ]
        Property [ protected int $line = 0 ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> string $message = "" ]
            Parameter #1 [ <optional> int $code = 0 ]
            Parameter #2 [ <optional> ?Throwable $previous = null ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {

          - Parameters [0] {
          }
          - Tentative return [ void ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {

          - Parameters [0] {
          }
          - Return [ ?Throwable ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }
      }
    }

    Class [ <internal:crypto> class Crypto\Rand ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [5] {
        Method [ <internal:crypto> static public method generate ] {

          - Parameters [3] {
            Parameter #0 [ <required> $num ]
            Parameter #1 [ <optional> $must_be_strong = <default> ]
            Parameter #2 [ <optional> &$returned_strong_result = <default> ]
          }
        }

        Method [ <internal:crypto> static public method seed ] {

          - Parameters [2] {
            Parameter #0 [ <required> $buf ]
            Parameter #1 [ <optional> $entropy = <default> ]
          }
        }

        Method [ <internal:crypto> static public method cleanup ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> static public method loadFile ] {

          - Parameters [2] {
            Parameter #0 [ <required> $filename ]
            Parameter #1 [ <optional> $max_bytes = <default> ]
          }
        }

        Method [ <internal:crypto> static public method writeFile ] {

          - Parameters [1] {
            Parameter #0 [ <required> $filename ]
          }
        }
      }

      - Properties [0] {
      }

      - Methods [0] {
      }
    }

    Class [ <internal:crypto> class Crypto\RandException extends Crypto\CryptoException implements Stringable, Throwable ] {

      - Constants [4] {
        Constant [ public int GENERATE_PREDICTABLE ] { 1 }
        Constant [ public int FILE_WRITE_PREDICTABLE ] { 2 }
        Constant [ public int REQUESTED_BYTES_NUMBER_TOO_HIGH ] { 3 }
        Constant [ public int SEED_LENGTH_TOO_HIGH ] { 4 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ protected $message = '' ]
        Property [ protected $code = 0 ]
        Property [ protected string $file = '' ]
        Property [ protected int $line = 0 ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> string $message = "" ]
            Parameter #1 [ <optional> int $code = 0 ]
            Parameter #2 [ <optional> ?Throwable $previous = null ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {

          - Parameters [0] {
          }
          - Tentative return [ void ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {

          - Parameters [0] {
          }
          - Return [ ?Throwable ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }
      }
    }

    Class [ <internal:crypto> abstract class Crypto\KDF ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [6] {
        Method [ <internal:crypto, ctor> public method __construct ] {

          - Parameters [2] {
            Parameter #0 [ <required> $length ]
            Parameter #1 [ <optional> $salt = <default> ]
          }
        }

        Method [ <internal:crypto> abstract public method derive ] {

          - Parameters [1] {
            Parameter #0 [ <required> $password ]
          }
        }

        Method [ <internal:crypto> public method getLength ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method setLength ] {

          - Parameters [1] {
            Parameter #0 [ <required> $length ]
          }
        }

        Method [ <internal:crypto> public method getSalt ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method setSalt ] {

          - Parameters [1] {
            Parameter #0 [ <required> $salt ]
          }
        }
      }
    }

    Class [ <internal:crypto> class Crypto\KDFException extends Crypto\CryptoException implements Stringable, Throwable ] {

      - Constants [5] {
        Constant [ public int KEY_LENGTH_LOW ] { 1 }
        Constant [ public int KEY_LENGTH_HIGH ] { 2 }
        Constant [ public int SALT_LENGTH_HIGH ] { 3 }
        Constant [ public int PASSWORD_LENGTH_INVALID ] { 4 }
        Constant [ public int DERIVATION_FAILED ] { 5 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ protected $message = '' ]
        Property [ protected $code = 0 ]
        Property [ protected string $file = '' ]
        Property [ protected int $line = 0 ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> string $message = "" ]
            Parameter #1 [ <optional> int $code = 0 ]
            Parameter #2 [ <optional> ?Throwable $previous = null ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {

          - Parameters [0] {
          }
          - Tentative return [ void ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {

          - Parameters [0] {
          }
          - Return [ ?Throwable ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }
      }
    }

    Class [ <internal:crypto> class Crypto\PBKDF2 extends Crypto\KDF ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [10] {
        Method [ <internal:crypto, overwrites Crypto\KDF, ctor> public method __construct ] {

          - Parameters [4] {
            Parameter #0 [ <required> $hashAlgorithm ]
            Parameter #1 [ <required> $length ]
            Parameter #2 [ <optional> $salt = <default> ]
            Parameter #3 [ <optional> $iterations = <default> ]
          }
        }

        Method [ <internal:crypto, overwrites Crypto\KDF, prototype Crypto\KDF> public method derive ] {

          - Parameters [1] {
            Parameter #0 [ <required> $password ]
          }
        }

        Method [ <internal:crypto> public method getIterations ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method setIterations ] {

          - Parameters [1] {
            Parameter #0 [ <required> $iterations ]
          }
        }

        Method [ <internal:crypto> public method getHashAlgorithm ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto> public method setHashAlgorithm ] {

          - Parameters [1] {
            Parameter #0 [ <required> $hashAlgorithm ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\KDF> public method getLength ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\KDF> public method setLength ] {

          - Parameters [1] {
            Parameter #0 [ <required> $length ]
          }
        }

        Method [ <internal:crypto, inherits Crypto\KDF> public method getSalt ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:crypto, inherits Crypto\KDF> public method setSalt ] {

          - Parameters [1] {
            Parameter #0 [ <required> $salt ]
          }
        }
      }
    }

    Class [ <internal:crypto> class Crypto\PBKDF2Exception extends Crypto\KDFException implements Throwable, Stringable ] {

      - Constants [7] {
        Constant [ public int KEY_LENGTH_LOW ] { 1 }
        Constant [ public int KEY_LENGTH_HIGH ] { 2 }
        Constant [ public int SALT_LENGTH_HIGH ] { 3 }
        Constant [ public int PASSWORD_LENGTH_INVALID ] { 4 }
        Constant [ public int DERIVATION_FAILED ] { 5 }
        Constant [ public int HASH_ALGORITHM_NOT_FOUND ] { 1 }
        Constant [ public int ITERATIONS_HIGH ] { 2 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ protected $message = '' ]
        Property [ protected $code = 0 ]
        Property [ protected string $file = '' ]
        Property [ protected int $line = 0 ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> string $message = "" ]
            Parameter #1 [ <optional> int $code = 0 ]
            Parameter #2 [ <optional> ?Throwable $previous = null ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {

          - Parameters [0] {
          }
          - Tentative return [ void ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {

          - Parameters [0] {
          }
          - Return [ int ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {

          - Parameters [0] {
          }
          - Return [ array ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {

          - Parameters [0] {
          }
          - Return [ ?Throwable ]
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }

        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {

          - Parameters [0] {
          }
          - Return [ string ]
        }
      }
    }
  }
}