Searched refs:s1 (Results 1 – 9 of 9) sorted by relevance
/test/testutil/ |
A D | tests.c | 281 if (s1 == NULL && s2 == NULL) in test_str_eq() 283 if (s1 == NULL || s2 == NULL || strcmp(s1, s2) != 0) { in test_str_eq() 285 s1, s1 == NULL ? 0 : strlen(s1), in test_str_eq() 297 if (s1 == NULL || strcmp(s1, s2) == 0) { in test_str_ne() 299 s1, s1 == NULL ? 0 : strlen(s1), in test_str_ne() 311 if (n1 != n2 || s1 == NULL || s2 == NULL || strncmp(s1, s2, n1) != 0) { in test_strn_eq() 313 s1, s1 == NULL ? 0 : OPENSSL_strnlen(s1, n1), in test_strn_eq() 325 if (n1 != n2 || s1 == NULL || strncmp(s1, s2, n1) == 0) { in test_strn_ne() 327 s1, s1 == NULL ? 0 : OPENSSL_strnlen(s1, n1), in test_strn_ne() 339 if (n1 != n2 || s1 == NULL || s2 == NULL || memcmp(s1, s2, n1) != 0) { in test_mem_eq() [all …]
|
/test/ssl-tests/ |
A D | 06-sni-ticket.cnf.in | 24 foreach my $s1 ("SessionTicket", "-SessionTicket") { 27 my $ticket_result = expected_result($c, $s1, $s2, $n); 39 "Options" => $s1, 66 my ($c, $s1, $s2, $n) = @_; 69 return "No" if $s1 eq "-SessionTicket";
|
/test/ |
A D | acvp_test.c | 241 const BIGNUM *r1, *s1; in get_ecdsa_sig_rs_bytes() local 247 s1 = ECDSA_SIG_get0_s(sign); in get_ecdsa_sig_rs_bytes() 248 if (r1 == NULL || s1 == NULL) in get_ecdsa_sig_rs_bytes() 252 s1_len = BN_num_bytes(s1); in get_ecdsa_sig_rs_bytes() 259 if (BN_bn2binpad(s1, sbuf, s1_len) <= 0) in get_ecdsa_sig_rs_bytes() 750 const BIGNUM *r1, *s1; in get_dsa_sig_rs_bytes() local 755 DSA_SIG_get0(sign, &r1, &s1); in get_dsa_sig_rs_bytes() 756 if (r1 == NULL || s1 == NULL) in get_dsa_sig_rs_bytes() 760 s1_len = BN_num_bytes(s1); in get_dsa_sig_rs_bytes() 767 if (BN_bn2binpad(s1, sbuf, s1_len) <= 0) in get_dsa_sig_rs_bytes()
|
/test/recipes/30-test_evp_data/ |
A D | evppkey_ml_dsa_87_wycheproof_sign.txt | 383 # 47 private key with s1 vector out of range
|
A D | evppkey_ml_dsa_44_wycheproof_sign.txt | 423 # 52 private key with s1 vector out of range
|
A D | evppkey_ml_dsa_65_wycheproof_sign.txt | 455 # 56 private key with s1 vector out of range
|
A D | evppkey_ml_dsa_87_wycheproof_verify.txt | 538 # 64 private key with s1 vector out of range
|
A D | evppkey_ml_dsa_65_wycheproof_verify.txt | 592 # 71 private key with s1 vector out of range
|
A D | evppkey_ml_dsa_44_wycheproof_verify.txt | 551 # 66 private key with s1 vector out of range
|
Completed in 173 milliseconds