wlan_common/ie/wpa/fake_wpa_ies.rs
1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use crate::ie::rsn::akm::{Akm, PSK};
6use crate::ie::rsn::cipher::{Cipher, CCMP_128, TKIP};
7use crate::ie::wpa::WpaIe;
8use crate::organization::Oui;
9
10pub fn fake_deprecated_wpa1_vendor_ie() -> WpaIe {
11 WpaIe {
12 unicast_cipher_list: vec![Cipher { oui: Oui::MSFT, suite_type: CCMP_128 }],
13 akm_list: vec![Akm { oui: Oui::MSFT, suite_type: PSK }],
14 multicast_cipher: Cipher { oui: Oui::MSFT, suite_type: TKIP },
15 }
16}