* Version 1.8.3 (unreleased)
+** ykinfo: New tool to print information about YubiKey.
+
+** ykpersonalize: Add -z flag to zap configuration on YubiKey.
+
+** Fix PBKDF2 implementation.
+
* Version 1.8.2 (released 2012-10-17)
** Add udev rules files to packed distribution.
\fB\-p\fR
get the programming sequence and output it.
.TP
+\fB\-a\fR
+get all the information above.
+.TP
\fB\-q\fR
modifier, only show the relevant data from the YubiKey, no extra information.
.TP
"\t-v Get version from YubiKey\n"
"\t-t Get touchlevel from YubiKey\n"
"\t-p Get programming sequence from YubiKey\n"
+ "\t-a Get all information above\n"
"\n"
"\t-q Only output information from YubiKey\n"
"\n"
"\n"
"\n"
;
-const char *optstring = "smHvtpqh";
+const char *optstring = "asmHvtpqh";
static void report_yk_error(void)
{
while((c = getopt(argc, argv, optstring)) != -1) {
switch (c) {
+ case 'a':
+ *serial_dec = true;
+ *serial_modhex = true;
+ *serial_hex = true;
+ *version = true;
+ *touch_level = true;
+ *pgm_seq = true;
+ break;
case 's':
*serial_dec = true;
break;