Home
last modified time | relevance | path

Searched refs:v (Results 1 – 25 of 25) sorted by relevance

/mbedtls-development/include/psa/
A Dcrypto_struct.h97 const struct psa_hash_operation_s v = PSA_HASH_OPERATION_INIT; in psa_hash_operation_init() local
98 return( v ); in psa_hash_operation_init()
123 return( v ); in psa_cipher_operation_init()
147 const struct psa_mac_operation_s v = PSA_MAC_OPERATION_INIT; in psa_mac_operation_init() local
148 return( v ); in psa_mac_operation_init()
180 const struct psa_aead_operation_s v = PSA_AEAD_OPERATION_INIT; in psa_aead_operation_init() local
181 return( v ); in psa_aead_operation_init()
268 return( v ); in psa_key_derivation_operation_init()
282 const struct psa_key_policy_s v = PSA_KEY_POLICY_INIT; in psa_key_policy_init() local
283 return( v ); in psa_key_policy_init()
[all …]
A Dcrypto_extra.h1816 const struct psa_pake_operation_s v = PSA_PAKE_OPERATION_INIT; in psa_pake_operation_init() local
1817 return(v); in psa_pake_operation_init()
/mbedtls-development/library/
A Dpkcs12.c212 size_t hlen, use_len, v, i; in mbedtls_pkcs12_derivation() local
232 v = 64; in mbedtls_pkcs12_derivation()
234 v = 128; in mbedtls_pkcs12_derivation()
236 memset( diversifier, (unsigned char) id, v ); in mbedtls_pkcs12_derivation()
238 pkcs12_fill_buffer( salt_block, v, salt, saltlen ); in mbedtls_pkcs12_derivation()
239 pkcs12_fill_buffer( pwd_block, v, pwd, pwdlen ); in mbedtls_pkcs12_derivation()
254 if( ( ret = mbedtls_md_update( &md_ctx, pwd_block, v ) ) != 0 ) in mbedtls_pkcs12_derivation()
276 pkcs12_fill_buffer( hash_block, v, hash_output, hlen ); in mbedtls_pkcs12_derivation()
279 for( i = v; i > 0; i-- ) in mbedtls_pkcs12_derivation()
285 for( i = v; i > 0; i-- ) in mbedtls_pkcs12_derivation()
[all …]
A Ddes.c861 int i, j, u, v, ret = 0; in mbedtls_des_self_test() local
878 v = i & 1; in mbedtls_des_self_test()
883 ( v == MBEDTLS_DES_DECRYPT ) ? "dec" : "enc" ); in mbedtls_des_self_test()
929 if( ( v == MBEDTLS_DES_DECRYPT && in mbedtls_des_self_test()
931 ( v != MBEDTLS_DES_DECRYPT && in mbedtls_des_self_test()
955 v = i & 1; in mbedtls_des_self_test()
960 ( v == MBEDTLS_DES_DECRYPT ) ? "dec" : "enc" ); in mbedtls_des_self_test()
998 if( v == MBEDTLS_DES_DECRYPT ) in mbedtls_des_self_test()
1003 ret = mbedtls_des_crypt_cbc( &ctx, v, 8, iv, buf, buf ); in mbedtls_des_self_test()
1031 if( ( v == MBEDTLS_DES_DECRYPT && in mbedtls_des_self_test()
[all …]
A Dcamellia.c909 int i, j, u, v; in mbedtls_camellia_self_test() local
931 v = j & 1; in mbedtls_camellia_self_test()
935 (v == MBEDTLS_CAMELLIA_DECRYPT) ? "dec" : "enc"); in mbedtls_camellia_self_test()
940 if( v == MBEDTLS_CAMELLIA_DECRYPT ) { in mbedtls_camellia_self_test()
950 mbedtls_camellia_crypt_ecb( &ctx, v, src, buf ); in mbedtls_camellia_self_test()
974 v = j & 1; in mbedtls_camellia_self_test()
984 if( v == MBEDTLS_CAMELLIA_DECRYPT ) { in mbedtls_camellia_self_test()
992 if( v == MBEDTLS_CAMELLIA_DECRYPT ) { in mbedtls_camellia_self_test()
1002 mbedtls_camellia_crypt_cbc( &ctx, v, 16, iv, src, buf ); in mbedtls_camellia_self_test()
1027 v = i & 1; in mbedtls_camellia_self_test()
[all …]
A Decjpake.c333 mbedtls_mpi v; in ecjpake_zkp_write() local
341 mbedtls_mpi_init( &v ); in ecjpake_zkp_write()
346 G, &v, &V, f_rng, p_rng ) ); in ecjpake_zkp_write()
349 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &h, &v, &h ) ); /* v - x*h */ in ecjpake_zkp_write()
370 mbedtls_mpi_free( &v ); in ecjpake_zkp_write()
A Dbignum.c76 static void mbedtls_mpi_zeroize( mbedtls_mpi_uint *v, size_t n ) in mbedtls_mpi_zeroize() argument
78 mbedtls_platform_zeroize( v, ciL * n ); in mbedtls_mpi_zeroize()
/mbedtls-development/programs/test/
A Dselftest.c343 int v = 1; /* v=1 for verbose mode */ in main() local
377 v = 0; in main()
388 if( v != 0 ) in main()
406 if( test->function( v ) != 0 ) in main()
436 if( v ) in main()
441 if( test->function( v ) != 0 ) in main()
454 if( v != 0 ) in main()
/mbedtls-development/tests/include/test/drivers/
A Dhash.h42 const mbedtls_test_driver_hash_hooks_t v = MBEDTLS_TEST_DRIVER_HASH_INIT; in mbedtls_test_driver_hash_hooks_init() local
43 return( v ); in mbedtls_test_driver_hash_hooks_init()
A Dkey_management.h48 v = MBEDTLS_TEST_DRIVER_KEY_MANAGEMENT_INIT; in mbedtls_test_driver_key_management_hooks_init() local
49 return( v ); in mbedtls_test_driver_key_management_hooks_init()
A Dmac.h42 const mbedtls_test_driver_mac_hooks_t v = MBEDTLS_TEST_DRIVER_MAC_INIT; in mbedtls_test_driver_mac_hooks_init() local
43 return( v ); in mbedtls_test_driver_mac_hooks_init()
A Daead.h53 const mbedtls_test_driver_aead_hooks_t v = MBEDTLS_TEST_DRIVER_AEAD_INIT; in mbedtls_test_driver_aead_hooks_init() local
54 return( v ); in mbedtls_test_driver_aead_hooks_init()
A Dsignature.h44 v = MBEDTLS_TEST_DRIVER_SIGNATURE_INIT; in mbedtls_test_driver_signature_hooks_init() local
45 return( v ); in mbedtls_test_driver_signature_hooks_init()
A Dcipher.h46 const mbedtls_test_driver_cipher_hooks_t v = MBEDTLS_TEST_DRIVER_CIPHER_INIT; in mbedtls_test_driver_cipher_hooks_init() local
47 return( v ); in mbedtls_test_driver_cipher_hooks_init()
/mbedtls-development/tests/data_files/base64/
A Dv2.19.1.txt1 // Context creaded by MbedTLS v.2.19.1
/mbedtls-development/tests/
A D.gitignore6 /suites/test_suite_psa_crypto_storage_format.v[0-9]*.data
/mbedtls-development/tests/data_files/
A Dcli-rsa.key6 7vk2DmqV9gmaBmf0ZXH4yqSxJeD+PIs1BGe64E92hfx//DZrtenNLQNiTrM9AM+v
A Drsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.pem12 ER2LK2PDUrk3tqTwpIcRKIqeMRayqNQ9MUsjjQ+v+yPcbwbZ78Ci2niq4vclq+84
A Drsa_pkcs8_pbes2_pbkdf2_2048_3des.pem6 v+OaVo5X5N/AqvP5cdB2g4q2l/MDtY+/m19XqzAAWvmvZjZxOJ+xLk1jzK+uSi0B
A Dtest-ca-alt.key22 VMkEU3S72vVvzJFe1jovL6dl85wAOAybsA6QAdHDY+v/j7HHa597RyNRU6lbMc/Y
A Drsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.pem8 v+0aObO3JsaxLVML6JGhabd2k1v3QAZLawMVGBNa/7IEOBVeD4j6VSiZPdKN473i
/mbedtls-development/scripts/mbedtls_dev/
A Dpsa_storage.py56 for e, v in zip(expressions, values):
57 self.value_cache[e] = int(v, 0)
/mbedtls-development/tests/suites/
A Dhost_test.function95 " -v | --verbose Display full information about each test\n" \
132 c != '\v' && c != '\f' && c != '\r' )
576 strcmp( next_arg, "-v" ) == 0 )
A Dtest_suite_ecp.data76 ECP check pubkey Curve25519 low-order point #4 (let's call this v)
101 ECP check pubkey Curve25519 low-order point #9 p+v
/mbedtls-development/doxygen/
A Dmbedtls.doxyfile277 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s.

Completed in 32 milliseconds