Home
last modified time | relevance | path

Searched refs:KeyRotation (Results 1 – 13 of 13) sorted by relevance

/external/uwb/src/rust/uwb_core/src/params/
Dccc_app_config_params.rs23 DeviceRole, DeviceType, KeyRotation, MultiNodeMode, RangeDataNtfConfig, StsConfig,
39 const CCC_KEY_ROTATION: KeyRotation = KeyRotation::Enable;
103 (AppConfigTlvType::KeyRotation, u8_to_bytes(CCC_KEY_ROTATION as u8)), in generate_config_map()
339 (AppConfigTlvType::KeyRotation, u8_to_bytes(CCC_KEY_ROTATION as u8)), in test_ok()
Daliro_app_config_params.rs23 DeviceRole, DeviceType, KeyRotation, MultiNodeMode, RangeDataNtfConfig, StsConfig,
39 const ALIRO_KEY_ROTATION: KeyRotation = KeyRotation::Enable;
103 (AppConfigTlvType::KeyRotation, u8_to_bytes(ALIRO_KEY_ROTATION as u8)), in generate_config_map()
340 (AppConfigTlvType::KeyRotation, u8_to_bytes(ALIRO_KEY_ROTATION as u8)), in test_ok()
Dfira_app_config_params.rs56 const DEFAULT_KEY_ROTATION: KeyRotation = KeyRotation::Disable;
108 key_rotation: KeyRotation,
230 getter_field!(key_rotation, KeyRotation);
457 (AppConfigTlvType::KeyRotation, u8_to_bytes(self.key_rotation as u8)), in generate_config_map()
525 key_rotation: KeyRotation,
741 builder_field!(key_rotation, KeyRotation);
1040 pub enum KeyRotation { enum
1173 let key_rotation = KeyRotation::Enable; in test_ok()
1278 (AppConfigTlvType::KeyRotation, vec![key_rotation as u8]), in test_ok()
/external/rust/pica/src/
Dapp_config.rs67 key_rotation: uci::KeyRotation,
133 key_rotation: uci::KeyRotation::Disable, in default()
287 uci::AppConfigTlvType::KeyRotation => self.key_rotation = try_parse(value)?, in set()
437 uci::AppConfigTlvType::KeyRotation => Ok(vec![self.key_rotation.into()]), in get()
Duci_packets.pdl399 enum KeyRotation : 8 {
/external/cronet/tot/net/third_party/quiche/src/quiche/quic/tools/
Dsimple_ticket_crypter_test.cc91 TEST_F(SimpleTicketCrypterTest, KeyRotation) { in TEST_F() argument
/external/cronet/stable/net/third_party/quiche/src/quiche/quic/tools/
Dsimple_ticket_crypter_test.cc91 TEST_F(SimpleTicketCrypterTest, KeyRotation) { in TEST_F() argument
/external/uwb/src/rust/uwb_core/protos/
Duwb_service.proto333 // Represent uwb_core::params::fira_app_config_params::KeyRotation.
334 enum KeyRotation { enum
416 KeyRotation key_rotation = 28;
/external/uwb/src/rust/uwb_core/src/proto/
Dmappings.rs24 FiraAppConfigParamsBuilder, HoppingMode, KeyRotation, MacAddressMode, MacFcsType,
42 KeyRotation as ProtoKeyRotation, MacAddressIndicator as ProtoMacAddressIndicator,
670 ProtoKeyRotation => KeyRotation,
/external/tink/cc/jwt/internal/
Djwt_mac_wrapper_test.cc224 TEST_F(JwtMacWrapperTest, KeyRotation) { in TEST_F() argument
Djwt_public_key_wrappers_test.cc251 TEST_F(JwtPublicKeyWrappersTest, KeyRotation) { in TEST_F() argument
/external/uwb/src/rust/uwb_core/src/session/
Dsession_manager.rs613 use crate::params::{FiraAppConfigParamsBuilder, KeyRotation};
1040 let non_default_key_rotation_val = KeyRotation::Enable; in test_reconfigure_app_config()
/external/rust/pica/py/pica/pica/packets/
Duci.py673 class KeyRotation(enum.IntEnum): class
680 return KeyRotation(v)