├── admin └── jscripts │ └── dvz_hash_benchmark.js └── inc ├── 3rdparty └── defuse-crypto.phar ├── languages └── english │ └── admin │ └── dvz_hash.lang.php └── plugins ├── dvz_hash.php └── dvz_hash ├── Benchmark.php ├── algorithm_interface.php ├── algorithms ├── argon2i.php ├── argon2id.php ├── bcrypt.php ├── mybb.php ├── mybb_argon2i.php ├── mybb_argon2id.php ├── mybb_bcrypt.php └── sha512_bcrypt.php ├── core.php ├── core_encryption.php ├── hooks_acp.php ├── hooks_frontend.php └── wrappable_algorithm_interface.php /admin/jscripts/dvz_hash_benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/admin/jscripts/dvz_hash_benchmark.js -------------------------------------------------------------------------------- /inc/3rdparty/defuse-crypto.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/3rdparty/defuse-crypto.phar -------------------------------------------------------------------------------- /inc/languages/english/admin/dvz_hash.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/languages/english/admin/dvz_hash.lang.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/Benchmark.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/algorithm_interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/algorithm_interface.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/algorithms/argon2i.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/algorithms/argon2i.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/algorithms/argon2id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/algorithms/argon2id.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/algorithms/bcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/algorithms/bcrypt.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/algorithms/mybb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/algorithms/mybb.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/algorithms/mybb_argon2i.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/algorithms/mybb_argon2i.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/algorithms/mybb_argon2id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/algorithms/mybb_argon2id.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/algorithms/mybb_bcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/algorithms/mybb_bcrypt.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/algorithms/sha512_bcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/algorithms/sha512_bcrypt.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/core.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/core_encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/core_encryption.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/hooks_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/hooks_acp.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/hooks_frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/hooks_frontend.php -------------------------------------------------------------------------------- /inc/plugins/dvz_hash/wrappable_algorithm_interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvz/mybb-dvzHash/HEAD/inc/plugins/dvz_hash/wrappable_algorithm_interface.php --------------------------------------------------------------------------------