Searched refs:s1 (Results 1 – 9 of 9) sorted by relevance
/mbedtls-latest/library/ |
D | pem.c | 275 const unsigned char *s1, *s2, *end; in mbedtls_pem_read_buffer() local 288 s1 = (unsigned char *) strstr((const char *) data, header); in mbedtls_pem_read_buffer() 290 if (s1 == NULL) { in mbedtls_pem_read_buffer() 296 if (s2 == NULL || s2 <= s1) { in mbedtls_pem_read_buffer() 300 s1 += strlen(header); in mbedtls_pem_read_buffer() 301 if (*s1 == ' ') { in mbedtls_pem_read_buffer() 302 s1++; in mbedtls_pem_read_buffer() 304 if (*s1 == '\r') { in mbedtls_pem_read_buffer() 305 s1++; in mbedtls_pem_read_buffer() 307 if (*s1 == '\n') { in mbedtls_pem_read_buffer() [all …]
|
D | constant_time_impl.h | 289 uint64_t s1; in mbedtls_ct_uint_lt() local 297 [s1] "=&r" (s1), in mbedtls_ct_uint_lt() 305 uint32_t s1; in mbedtls_ct_uint_lt() 321 [s1] "=&l" (s1), in mbedtls_ct_uint_lt()
|
D | sha512.c | 404 uint64x2_t s1 = (uint64x2_t) vld1q_u8(msg + 16 * 1); in mbedtls_internal_sha512_process_many_a64_crypto() local 414 s1 = vreinterpretq_u64_u8(vrev64q_u8(vreinterpretq_u8_u64(s1))); in mbedtls_internal_sha512_process_many_a64_crypto() 431 initial_sum = vaddq_u64(s1, vld1q_u64(&K[2])); in mbedtls_internal_sha512_process_many_a64_crypto() 481 s0 = vsha512su1q_u64(vsha512su0q_u64(s0, s1), s7, vextq_u64(s4, s5, 1)); in mbedtls_internal_sha512_process_many_a64_crypto() 489 s1 = vsha512su1q_u64(vsha512su0q_u64(s1, s2), s0, vextq_u64(s5, s6, 1)); in mbedtls_internal_sha512_process_many_a64_crypto() 490 initial_sum = vaddq_u64(s1, vld1q_u64(&K[t + 2])); in mbedtls_internal_sha512_process_many_a64_crypto() 497 s2 = vsha512su1q_u64(vsha512su0q_u64(s2, s3), s1, vextq_u64(s6, s7, 1)); in mbedtls_internal_sha512_process_many_a64_crypto() 513 s4 = vsha512su1q_u64(vsha512su0q_u64(s4, s5), s3, vextq_u64(s0, s1, 1)); in mbedtls_internal_sha512_process_many_a64_crypto() 521 s5 = vsha512su1q_u64(vsha512su0q_u64(s5, s6), s4, vextq_u64(s1, s2, 1)); in mbedtls_internal_sha512_process_many_a64_crypto()
|
D | bn_mul.h | 1050 mbedtls_mpi_uint s0, s1, b0, b1; \ 1057 s1 = ( *s >> biH ); s++; \ 1059 ry = s1 * b0; r1 = s1 * b1; \
|
D | x509_crt.c | 248 static int x509_memcasecmp(const void *s1, const void *s2, size_t len) in x509_memcasecmp() argument 252 const unsigned char *n1 = s1, *n2 = s2; in x509_memcasecmp()
|
/mbedtls-latest/programs/util/ |
D | pem2der.c | 52 const unsigned char *s1, *s2, *end = input + ilen; in convert_pem_to_der() local 55 s1 = (unsigned char *) strstr((const char *) input, "-----BEGIN"); in convert_pem_to_der() 56 if (s1 == NULL) { in convert_pem_to_der() 65 s1 += 10; in convert_pem_to_der() 66 while (s1 < end && *s1 != '-') { in convert_pem_to_der() 67 s1++; in convert_pem_to_der() 69 while (s1 < end && *s1 == '-') { in convert_pem_to_der() 70 s1++; in convert_pem_to_der() 72 if (*s1 == '\r') { in convert_pem_to_der() 73 s1++; in convert_pem_to_der() [all …]
|
/mbedtls-latest/tests/suites/ |
D | test_suite_alignment.function | 133 size_t s1 = i * 8; 135 uint64_t a = (input & ((uint64_t) 0xff << s1)) >> s1;
|
/mbedtls-latest/3rdparty/everest/library/ |
D | Hacl_Curve25519.c | 168 uint128_t s1 = (uint128_t)d0 * r1 + (uint128_t)d4 * r2 + (uint128_t)(r3 * (uint64_t)19U) * r3; in Hacl_Bignum_Fsquare_fsquare__() local 173 tmp[1U] = s1; in Hacl_Bignum_Fsquare_fsquare__()
|
/mbedtls-latest/3rdparty/everest/library/legacy/ |
D | Hacl_Curve25519.c | 188 s1 = in Hacl_Bignum_Fsquare_fsquare__() local 208 tmp[1U] = s1; in Hacl_Bignum_Fsquare_fsquare__()
|