Searched refs:PreSharedKeyProposal (Results 1 – 11 of 11) sorted by relevance
/external/rust/android-crates-io/crates/mls-rs/src/group/ |
D | proposal.rs | 145 pub struct PreSharedKeyProposal { struct 150 impl PreSharedKeyProposal { impl 331 Psk(PreSharedKeyProposal), 402 ProposalType::PSK => Proposal::Psk(PreSharedKeyProposal::mls_decode(reader)?), in mls_decode() 448 Psk(&'a PreSharedKeyProposal), 532 impl<'a> From<&'a PreSharedKeyProposal> for BorrowedProposal<'a> { 533 fn from(p: &'a PreSharedKeyProposal) -> Self { in from()
|
D | external_commit.rs | 39 PreSharedKeyProposal, {JustPreSharedKeyID, PreSharedKeyID}, 220 .map(|psk| Proposal::Psk(PreSharedKeyProposal { psk })), in build()
|
D | commit.rs | 868 group::proposal::PreSharedKeyProposal, 909 …Proposal::Psk(PreSharedKeyProposal { psk: PreSharedKeyID { key_id: JustPreSharedKeyID::External(ps… in assert_commit_builder_output() 912 …t found = expected.iter().any(|item| matches!(item, Proposal::Psk(PreSharedKeyProposal { psk: PreS… in assert_commit_builder_output()
|
D | proposal_cache.rs | 720 group::proposal::PreSharedKeyProposal, 1860 let psk = Proposal::Psk(PreSharedKeyProposal { in test_path_update_not_required() 2293 fn make_external_psk(id: &[u8], nonce: PskNonce) -> PreSharedKeyProposal { in make_external_psk() argument 2294 PreSharedKeyProposal { in make_external_psk() 2303 fn new_external_psk(id: &[u8]) -> PreSharedKeyProposal { in new_external_psk() argument 2375 fn make_resumption_psk(usage: ResumptionPSKUsage) -> PreSharedKeyProposal { in make_resumption_psk() argument 2376 PreSharedKeyProposal { in make_resumption_psk()
|
D | mod.rs | 989 Ok(Proposal::Psk(PreSharedKeyProposal { in psk_proposal() 1513 psks: &[ProposalInfo<PreSharedKeyProposal>], in get_psk() argument
|
/external/rust/android-crates-io/crates/mls-rs/src/group/proposal_filter/ |
D | bundle.rs | 23 use crate::group::PreSharedKeyProposal; 43 pub(crate) psks: Vec<ProposalInfo<PreSharedKeyProposal>>, 185 self.retain_by_type::<PreSharedKeyProposal, _, _>(|proposal| { in retain() 354 pub fn psk_proposals(&self) -> &[ProposalInfo<PreSharedKeyProposal>] { in psk_proposals() argument 626 impl_proposable!(PreSharedKeyProposal, PSK, psks);
|
D | filtering_lite.rs | 36 proposal::PreSharedKeyProposal, JustPreSharedKeyID, ResumptionPSKUsage, ResumptionPsk,
|
D | filtering_common.rs | 36 use crate::group::proposal::PreSharedKeyProposal; 458 .for_each(|i| proposals.remove::<PreSharedKeyProposal>(i)); in filter_out_invalid_psks()
|
D | filtering.rs | 40 use crate::group::proposal::PreSharedKeyProposal; 515 proposals.remove::<PreSharedKeyProposal>(i); in filter_out_invalid_proposers()
|
/external/rust/android-crates-io/crates/mls-rs/src/group/interop_test_vectors/ |
D | serialization.rs | 14 AddProposal, ExternalInit, PreSharedKeyProposal, ReInitProposal, RemoveProposal, 120 PreSharedKeyProposal::mls_decode(&mut &*test_case.pre_shared_key_proposal).unwrap(); in serialization()
|
/external/rust/android-crates-io/crates/mls-rs/src/external_client/ |
D | group.rs | 64 group::proposal::PreSharedKeyProposal, 335 Ok(Proposal::Psk(PreSharedKeyProposal { in psk_proposal()
|