tsig_strlowercmp
if(tsig_strlowercmp(q->tsig.algorithm->short_name,
tsig_strlowercmp(q->tsig.algorithm->short_name+5,
if (tsig_strlowercmp(name, algorithm_entry->algorithm->short_name) == 0)
if(strncmp("hmac-", algorithm_entry->algorithm->short_name, 5) == 0 && tsig_strlowercmp(name, algorithm_entry->algorithm->short_name+5) == 0) {
int tsig_strlowercmp(const char* str1, const char* str2);