1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-02-08 03:54:20 +01:00

Delete ClientInfoFormat.adoc

This commit is contained in:
Henrik Stråth 2014-08-11 15:58:22 +02:00
parent 0900b41981
commit fc04b61766

View File

@ -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`.