diff --git a/phpBB/includes/crypto/driver/base.php b/phpBB/includes/crypto/driver/base.php new file mode 100644 index 0000000000..c913767989 --- /dev/null +++ b/phpBB/includes/crypto/driver/base.php @@ -0,0 +1,43 @@ +config = $config; + } + + /** + * @inheritdoc + */ + public function is_supported() + { + return true; + } +} diff --git a/phpBB/includes/crypto/driver/interface.php b/phpBB/includes/crypto/driver/interface.php new file mode 100644 index 0000000000..b8383bda5a --- /dev/null +++ b/phpBB/includes/crypto/driver/interface.php @@ -0,0 +1,56 @@ +