Files
yubikey.rs/ykcs11/vendors.c
T
Alessio Di Mauro 4b668502ee Minor fixes.
2015-09-17 17:05:29 +02:00

11 lines
175 B
C

#include "vendors.h"
#include <string.h>
vendor_id_t get_vendor_id(char *vendor_name) {
if (strstr(vendor_name, "Yubico") != NULL)
return YUBICO;
return UNKNOWN;
}