From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../samyoul/u2f-php-server/src/Registration.php | 81 ---------------------- 1 file changed, 81 deletions(-) delete mode 100644 srcs/phpmyadmin/vendor/samyoul/u2f-php-server/src/Registration.php (limited to 'srcs/phpmyadmin/vendor/samyoul/u2f-php-server/src/Registration.php') diff --git a/srcs/phpmyadmin/vendor/samyoul/u2f-php-server/src/Registration.php b/srcs/phpmyadmin/vendor/samyoul/u2f-php-server/src/Registration.php deleted file mode 100644 index dbc1c9a..0000000 --- a/srcs/phpmyadmin/vendor/samyoul/u2f-php-server/src/Registration.php +++ /dev/null @@ -1,81 +0,0 @@ -keyHandle = $keyHandle; - } - - /** - * @param string $publicKey - */ - public function setPublicKey($publicKey) - { - $this->publicKey = $publicKey; - } - - /** - * @param string $certificate - */ - public function setCertificate($certificate) - { - $this->certificate = $certificate; - } - - /** - * @return string - */ - public function getKeyHandle() - { - return $this->keyHandle; - } - - /** - * @return string - */ - public function getPublicKey() - { - return $this->publicKey; - } - - /** - * @return string - */ - public function getCertificate() - { - return $this->certificate; - } - - /** - * @return string - */ - public function getCounter() - { - return $this->counter; - } -} \ No newline at end of file -- cgit