Home
last modified time | relevance | path

Searched refs:rekey (Results 1 – 16 of 16) sorted by relevance

/third_party/grpc/test/core/tsi/alts/frame_protector/
Dalts_frame_protector_test.cc34 const size_t key_size, bool rekey, const uint8_t* client_message, in alts_test_do_round_trip_check_frames() argument
49 alts_create_frame_protector(key, key_size, /*is_client=*/true, rekey, in alts_test_do_round_trip_check_frames()
58 alts_create_frame_protector(key, key_size, /*is_client=*/false, rekey, in alts_test_do_round_trip_check_frames()
331 bool rekey) { in alts_test_do_round_trip() argument
339 size_t key_length = rekey ? kAes128GcmRekeyKeyLength : kAes128GcmKeyLength; in alts_test_do_round_trip()
345 alts_create_frame_protector(key, key_length, /*is_client=*/true, rekey, in alts_test_do_round_trip()
354 alts_create_frame_protector(key, key_length, /*is_client=*/false, rekey, in alts_test_do_round_trip()
366 static void alts_test_do_round_trip_all(bool rekey) { in alts_test_do_round_trip_all() argument
383 alts_test_do_round_trip(fixture, rekey); in alts_test_do_round_trip_all()
Dalts_crypter_test.cc349 gsec_aead_crypter** client_crypter_unseal, bool rekey) { in create_random_alts_seal_crypter() argument
350 size_t key_length = rekey ? kAes128GcmRekeyKeyLength : kAes128GcmKeyLength; in create_random_alts_seal_crypter()
354 kAesGcmTagLength, rekey, server_crypter_seal, in create_random_alts_seal_crypter()
357 kAesGcmTagLength, rekey, in create_random_alts_seal_crypter()
360 kAesGcmTagLength, rekey, client_crypter_seal, in create_random_alts_seal_crypter()
363 kAesGcmTagLength, rekey, in create_random_alts_seal_crypter()
366 size_t overflow_size = rekey ? 8 : 5; in create_random_alts_seal_crypter()
/third_party/grpc/test/core/tsi/alts/zero_copy_frame_protector/
Dalts_grpc_record_protocol_test.cc113 test_fixture_integrity_only_create(bool rekey, bool extra_copy) { in test_fixture_integrity_only_create() argument
117 size_t key_length = rekey ? kAes128GcmRekeyKeyLength : kAes128GcmKeyLength; in test_fixture_integrity_only_create()
124 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in test_fixture_integrity_only_create()
131 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in test_fixture_integrity_only_create()
138 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in test_fixture_integrity_only_create()
145 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in test_fixture_integrity_only_create()
171 test_fixture_privacy_integrity_create(bool rekey) { in test_fixture_privacy_integrity_create() argument
175 size_t key_length = rekey ? kAes128GcmRekeyKeyLength : kAes128GcmKeyLength; in test_fixture_privacy_integrity_create()
182 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in test_fixture_privacy_integrity_create()
189 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in test_fixture_privacy_integrity_create()
[all …]
Dalts_zero_copy_grpc_protector_test.cc103 alts_zero_copy_grpc_protector_test_fixture_create(bool rekey, in alts_zero_copy_grpc_protector_test_fixture_create() argument
110 size_t key_length = rekey ? kAes128GcmRekeyKeyLength : kAes128GcmKeyLength; in alts_zero_copy_grpc_protector_test_fixture_create()
116 key, key_length, rekey, /*is_client=*/true, integrity_only, in alts_zero_copy_grpc_protector_test_fixture_create()
123 key, key_length, rekey, /*is_client=*/false, integrity_only, in alts_zero_copy_grpc_protector_test_fixture_create()
Dalts_iovec_record_protocol_test.cc93 alts_iovec_record_protocol_test_fixture_create(bool rekey, in alts_iovec_record_protocol_test_fixture_create() argument
99 size_t key_length = rekey ? kAes128GcmRekeyKeyLength : kAes128GcmKeyLength; in alts_iovec_record_protocol_test_fixture_create()
105 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in alts_iovec_record_protocol_test_fixture_create()
113 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in alts_iovec_record_protocol_test_fixture_create()
121 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in alts_iovec_record_protocol_test_fixture_create()
129 key, key_length, kAesGcmNonceLength, kAesGcmTagLength, rekey, in alts_iovec_record_protocol_test_fixture_create()
/third_party/sqlite/include/
Dsqlite3sym.h30 int (*rekey)(sqlite3*,const void*,int); member
39 #define sqlite3_rekey sqlite3_export_hw_symbols->rekey
/third_party/grpc/src/core/tsi/alts/crypt/
Daes_gcm.cc633 size_t tag_length, bool rekey, in gsec_aes_gcm_aead_crypter_create() argument
645 if ((rekey && key_length != kAes128GcmRekeyKeyLength) || in gsec_aes_gcm_aead_crypter_create()
646 (!rekey && key_length != kAes128GcmKeyLength && in gsec_aes_gcm_aead_crypter_create()
662 if (rekey) { in gsec_aes_gcm_aead_crypter_create()
Dgsec.h452 size_t tag_length, bool rekey,
/third_party/grpc/test/core/tsi/alts/crypt/
Daes_gcm_test.cc725 bool rekey = false) { in gsec_test_get_crypter_from_test_vector() argument
737 tag_length, rekey, crypter, nullptr); in gsec_test_get_crypter_from_test_vector()
741 gsec_aead_test_vector* test_vector, bool rekey = false) { in gsec_test_verify_crypter_on_test_vector() argument
743 gsec_test_get_crypter_from_test_vector(&crypter, test_vector, rekey); in gsec_test_verify_crypter_on_test_vector()
781 bool rekey) { in gsec_test_create_random_aes_gcm_crypter() argument
785 rekey, crypter, nullptr); in gsec_test_create_random_aes_gcm_crypter()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/
Dwpa.c1831 int rekey, ret; in wpa_supplicant_process_1_of_2() local
1843 rekey = wpa_sm_get_state(sm) == WPA_COMPLETED; in wpa_supplicant_process_1_of_2()
1873 if (rekey) { in wpa_supplicant_process_1_of_2()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/
Dwpa.c2100 int rekey, ret; in wpa_supplicant_process_1_of_2() local
2112 rekey = wpa_sm_get_state(sm) == WPA_COMPLETED; in wpa_supplicant_process_1_of_2()
2142 if (rekey) { in wpa_supplicant_process_1_of_2()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
DChangeLog1001 - Support GTK rekey offload.
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
DChangeLog1054 - Support GTK rekey offload.
/third_party/node/doc/changelogs/
DCHANGELOG_V14.md996 * [[`bb9a9adc2b`](https://github.com/nodejs/node/commit/bb9a9adc2b)] - **errors**: don't rekey on p…
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch175956 - "rekey", "restore", "rollback_hook",
175965 + "progress", "rekey", "restore",
246924 …t, last_insert_rowid, nullvalue, onecolumn, preupdate, profile, progress, rekey, restore, rollback…
246925 …t, last_insert_rowid, nullvalue, onecolumn, preupdate, profile, progress, rekey, restore, rollback…
/third_party/sqlite/src/
Dsqlite3.c239592 int (*rekey)(sqlite3*,const void*,int);