Lines Matching refs:strcasecmp

514 	if (strcasecmp(keystore_str, "pkcs11") == 0)  in KS2Int()
516 else if (strcasecmp(keystore_str, "nss") == 0) in KS2Int()
518 else if (strcasecmp(keystore_str, "file") == 0) in KS2Int()
543 } else if (strcasecmp(algm, "DSA") == 0) { in Str2KeyType()
552 } else if (strcasecmp(algm, "RSA") == 0) { in Str2KeyType()
567 } else if (strcasecmp(algm, "EC") == 0) { in Str2KeyType()
593 else if (strcasecmp(algm, "aes") == 0) in Str2SymKeyType()
595 else if (strcasecmp(algm, "arcfour") == 0) in Str2SymKeyType()
597 else if (strcasecmp(algm, "des") == 0) in Str2SymKeyType()
599 else if (strcasecmp(algm, "3des") == 0) in Str2SymKeyType()
601 else if (strcasecmp(algm, "generic") == 0) in Str2SymKeyType()
625 if (strcasecmp(timetok, "day") == 0|| in Str2Lifetime()
626 strcasecmp(timetok, "days") == 0) { in Str2Lifetime()
628 } else if (strcasecmp(timetok, "hour") == 0|| in Str2Lifetime()
629 strcasecmp(timetok, "hours") == 0) { in Str2Lifetime()
631 } else if (strcasecmp(timetok, "year") == 0 || in Str2Lifetime()
632 strcasecmp(timetok, "years") == 0) { in Str2Lifetime()
653 if (strcasecmp(c, ":private") == 0) in OT2Int()
655 else if (strcasecmp(c, ":public") == 0) in OT2Int()
657 else if (strcasecmp(c, ":both") == 0) in OT2Int()
665 if (strcasecmp(objclass, "public") == 0) { in OT2Int()
669 } else if (strcasecmp(objclass, "private") == 0) { in OT2Int()
673 } else if (strcasecmp(objclass, "both") == 0) { in OT2Int()
677 } else if (strcasecmp(objclass, "cert") == 0) { in OT2Int()
679 } else if (strcasecmp(objclass, "key") == 0) { in OT2Int()
691 } else if (strcasecmp(objclass, "crl") == 0) { in OT2Int()
705 if (formstr == NULL || strcasecmp(formstr, "der") == 0) in Str2Format()
707 if (strcasecmp(formstr, "pem") == 0) in Str2Format()
709 if (strcasecmp(formstr, "pkcs12") == 0) in Str2Format()
711 if (strcasecmp(formstr, "raw") == 0) in Str2Format()
1356 if (strcasecmp(name, oid_table[i].name) == 0) in ecc_name_to_oid()