From fc04b6176683868d458cc5b3749c347039913f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Str=C3=A5th?= Date: Mon, 11 Aug 2014 15:58:22 +0200 Subject: [PATCH] Delete ClientInfoFormat.adoc --- doc/ClientInfoFormat.adoc | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 doc/ClientInfoFormat.adoc diff --git a/doc/ClientInfoFormat.adoc b/doc/ClientInfoFormat.adoc deleted file mode 100644 index 9717748..0000000 --- a/doc/ClientInfoFormat.adoc +++ /dev/null @@ -1,39 +0,0 @@ -Format of Client Info Data -========================== - -This file holds data used in the YubiKey OTP validation phase. - -Each of the lines in the file follows the following format: - -``` -id,active,created,secret,email,notes,otp -``` - -Any empty line, or a line beginning with a # is ignored. - -The meaning are as follows: - -``` -id: - the client identity, decimal integer -active - the client state, 1 if active, 0 if not -created - unix timestamp of when the client was created, decimal integer -secret - printable ascii string with shared HMAC secret for client id -email - the email address used by the client, printable ascii string -notes - not used, printable ascii string -otp - the YubiKey OTP used to create the client, modhex string -``` - -An examples of a valid data line: - -``` -1,1,1359550387,foobar,user@example.com,,cccccccccccbubfncnklbknnkrfvfkbubftlfliikdrt -``` - -For an example of importing and exporting Client Info data, please see `ImportExportData.adoc`.