From 04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 9 Jan 2020 10:55:03 +0100 Subject: phpmyadmin working --- .../samyoul/u2f-php-server/src/Registration.php | 81 ++++++++++++++++++++++ 1 file changed, 81 insertions(+) create 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 new file mode 100644 index 0000000..dbc1c9a --- /dev/null +++ b/srcs/phpmyadmin/vendor/samyoul/u2f-php-server/src/Registration.php @@ -0,0 +1,81 @@ +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