• Home
  • Raw
  • Download

Lines Matching refs:strcmp

77 	if (strcmp(pkey->pkey_algo, "rsa") == 0) {  in software_key_determine_akcipher()
81 if (strcmp(encoding, "pkcs1") == 0) { in software_key_determine_akcipher()
92 if (strcmp(encoding, "raw") != 0) in software_key_determine_akcipher()
101 if (strcmp(encoding, "x962") != 0) in software_key_determine_akcipher()
112 if (strcmp(hash_algo, "sha1") != 0 && in software_key_determine_akcipher()
113 strcmp(hash_algo, "sha224") != 0 && in software_key_determine_akcipher()
114 strcmp(hash_algo, "sha256") != 0 && in software_key_determine_akcipher()
115 strcmp(hash_algo, "sha384") != 0 && in software_key_determine_akcipher()
116 strcmp(hash_algo, "sha512") != 0) in software_key_determine_akcipher()
118 } else if (strcmp(pkey->pkey_algo, "sm2") == 0) { in software_key_determine_akcipher()
119 if (strcmp(encoding, "raw") != 0) in software_key_determine_akcipher()
123 if (strcmp(hash_algo, "sm3") != 0) in software_key_determine_akcipher()
125 } else if (strcmp(pkey->pkey_algo, "ecrdsa") == 0) { in software_key_determine_akcipher()
126 if (strcmp(encoding, "raw") != 0) in software_key_determine_akcipher()
130 if (strcmp(hash_algo, "streebog256") != 0 && in software_key_determine_akcipher()
131 strcmp(hash_algo, "streebog512") != 0) in software_key_determine_akcipher()
308 if (!sig->hash_algo || strcmp(sig->hash_algo, "sm3") != 0) in cert_sig_digest_update()
384 if (strcmp(pkey->pkey_algo, sig->pkey_algo) != 0 && in public_key_verify_signature()
386 strcmp(sig->pkey_algo, "ecdsa") != 0)) in public_key_verify_signature()
424 if (strcmp(pkey->pkey_algo, "sm2") == 0 && sig->data_size) { in public_key_verify_signature()