} else if (!strcmp(params[i], "search")) {
search = params[i+1];
params[i+1] = NULL;
- if (search != NULL) {
+ if (search != NULL && strlen(search) == 42 &&
+ search[0] == '0' && search[1] == 'x') {
+ /*
+ * Fingerprint. Truncate to last 64 bits for
+ * now.
+ */
+ keyid = strtoull(&search[26], &end, 16);
+ if (end != NULL && *end == 0) {
+ ishex = true;
+ }
+ } else if (search != NULL) {
keyid = strtoull(search, &end, 16);
if (*search != 0 &&
end != NULL &&
size_t length = 0;
if (getphoto(publickey, indx, &photo,
- &length)) {
+ &length) == ONAK_E_OK) {
fwrite(photo,
1,
length,