code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
/* * Galois/Counter Mode (GCM) and GMAC with AES * * Copyright (c) 2012, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #include "rtw_crypto_wrap.h" #include "aes.h" #include "aes_wrap.h" static void inc32(u8 *block) { u32 va...
2301_81045437/rtl8852be
core/crypto/aes-gcm.c
C
agpl-3.0
6,615
/* * AES (Rijndael) cipher - encrypt * * Modifications to public domain implementation: * - cleanup * - use C pre-processor to make it easier to change S table access * - added option (AES_SMALL_TABLES) for reducing code size by about 8 kB at * cost of reduced throughput (quite small difference on Pentium 4, ...
2301_81045437/rtl8852be
core/crypto/aes-internal-enc.c
C
agpl-3.0
2,722
/* * AES (Rijndael) cipher * * Modifications to public domain implementation: * - cleanup * - use C pre-processor to make it easier to change S table access * - added option (AES_SMALL_TABLES) for reducing code size by about 8 kB at * cost of reduced throughput (quite small difference on Pentium 4, * 10-25%...
2301_81045437/rtl8852be
core/crypto/aes-internal.c
C
agpl-3.0
42,188
/* * One-key CBC MAC (OMAC1) hash with AES * * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #include "rtw_crypto_wrap.h" #include "aes.h" #include "aes_wrap.h" static void gf_mulx(u8 *pad) { int i, ...
2301_81045437/rtl8852be
core/crypto/aes-omac1.c
C
agpl-3.0
4,558
/* * AES SIV (RFC 5297) * Copyright (c) 2013 Cozybit, Inc. * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #include "rtw_crypto_wrap.h" #include "aes.h" #include "aes_wrap.h" #include "aes_siv.h" static const u8 zero[AES_BLOCK_SIZE]; static void dbl...
2301_81045437/rtl8852be
core/crypto/aes-siv.c
C
agpl-3.0
4,148
/* * AES functions * Copyright (c) 2003-2006, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef AES_H #define AES_H #define AES_BLOCK_SIZE 16 void * aes_encrypt_init(const u8 *key, size_t len); int aes_encrypt(void *ctx, c...
2301_81045437/rtl8852be
core/crypto/aes.h
C
agpl-3.0
548
/* * AES (Rijndael) cipher * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef AES_I_H #define AES_I_H #include "aes.h" /* #define FULL_UNROLL */ #define AES_SMALL_TABLES extern const u32 Te0[256]...
2301_81045437/rtl8852be
core/crypto/aes_i.h
C
agpl-3.0
4,228
/* * AES SIV (RFC 5297) * Copyright (c) 2013 Cozybit, Inc. * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef AES_SIV_H #define AES_SIV_H int aes_siv_encrypt(const u8 *key, size_t key_len, const u8 *pw, size_t pwlen, size_t num_elem, co...
2301_81045437/rtl8852be
core/crypto/aes_siv.h
C
agpl-3.0
565
/* * AES-based functions * * - AES Key Wrap Algorithm (RFC3394) * - One-Key CBC MAC (OMAC1) hash with AES-128 and AES-256 * - AES-128/192/256 CTR mode encryption * - AES-128 EAX mode encryption/decryption * - AES-128 CBC * - AES-GCM * - AES-CCM * * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi> * * This ...
2301_81045437/rtl8852be
core/crypto/aes_wrap.h
C
agpl-3.0
2,975
/* * CTR with CBC-MAC Protocol (CCMP) * Copyright (c) 2010-2012, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #include "rtw_crypto_wrap.h" #include "aes.h" #include "aes_wrap.h" #include "wlancrypto_wrap.h" static void ccmp...
2301_81045437/rtl8852be
core/crypto/ccmp.c
C
agpl-3.0
13,510
/* * GCM with GMAC Protocol (GCMP) * Copyright (c) 2012, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #include "rtw_crypto_wrap.h" #include "aes.h" #include "aes_wrap.h" #include "wlancrypto_wrap.h" static void gcmp_aad_nonc...
2301_81045437/rtl8852be
core/crypto/gcmp.c
C
agpl-3.0
5,360
#include "rtw_crypto_wrap.h" #ifndef DEBUG_CRYPTO #define DEBUG_CRYPTO 0 #endif /* DEBUG_CRYTO */ int os_memcmp(const void *s1, const void *s2, size_t n) { return _rtw_memcmp2(s1, s2, n); } int os_memcmp_const(const void *a, const void *b, size_t len) { const u8 *aa = a; const u8 *bb = b; size_t i; u8 res; fo...
2301_81045437/rtl8852be
core/crypto/rtw_crypto_wrap.c
C
agpl-3.0
1,418
#ifndef RTW_CRYTO_WRAP_H #define RTW_CRYTO_WRAP_H #include <drv_types.h> #define TEST_FAIL() 0 #define os_memset _rtw_memset #define os_memcpy _rtw_memcpy #define os_malloc rtw_malloc #define le_to_host16 le16_to_cpu #define host_to_le16 cpu_to_le16 #define WPA_PUT_LE16 RTW_PUT_LE16 #define WPA_GET_LE16 RTW_GET_LE...
2301_81045437/rtl8852be
core/crypto/rtw_crypto_wrap.h
C
agpl-3.0
1,860
/* * SHA-256 hash implementation and interface functions * Copyright (c) 2003-2011, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #include "rtw_crypto_wrap.h" //#include "common.h" #include "sha256.h" #include "sha256_i.h" //#i...
2301_81045437/rtl8852be
core/crypto/sha256-internal.c
C
agpl-3.0
6,187
/* * SHA256-based PRF (IEEE 802.11r) * Copyright (c) 2003-2016, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #include "rtw_crypto_wrap.h" //#include "common.h" #include "sha256.h" //#include "crypto.h" #include "wlancrypto_wra...
2301_81045437/rtl8852be
core/crypto/sha256-prf.c
C
agpl-3.0
2,945
/* * SHA-256 hash implementation and interface functions * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #include "rtw_crypto_wrap.h" #include "sha256.h" //#include "crypto.h" #include "wlancrypto_wrap....
2301_81045437/rtl8852be
core/crypto/sha256.c
C
agpl-3.0
2,718
/* * SHA256 hash implementation and interface functions * Copyright (c) 2003-2016, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef SHA256_H #define SHA256_H #define SHA256_MAC_LEN 32 int hmac_sha256_vector(const u8 *key,...
2301_81045437/rtl8852be
core/crypto/sha256.h
C
agpl-3.0
1,095
/* * SHA-256 internal definitions * Copyright (c) 2003-2011, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef SHA256_I_H #define SHA256_I_H #define SHA256_BLOCK_SIZE 64 struct _sha256_state { u64 length; u32 state[8], c...
2301_81045437/rtl8852be
core/crypto/sha256_i.h
C
agpl-3.0
589
/* * wlantest - IEEE 802.11 protocol monitoring and testing tool * Copyright (c) 2010-2013, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef WLANCRYPTO_WRAP_H #define WLANCRYPTO_WRAP_H int sha256_vector(size_t num_elem, co...
2301_81045437/rtl8852be
core/crypto/wlancrypto_wrap.h
C
agpl-3.0
1,834
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/mesh/rtw_mesh.c
C
agpl-3.0
122,929
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/mesh/rtw_mesh.h
C
agpl-3.0
20,503
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/mesh/rtw_mesh_hwmp.c
C
agpl-3.0
49,321
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/mesh/rtw_mesh_hwmp.h
C
agpl-3.0
2,155
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/mesh/rtw_mesh_pathtbl.c
C
agpl-3.0
33,187
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/mesh/rtw_mesh_pathtbl.h
C
agpl-3.0
7,614
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/monitor/rtw_radiotap.c
C
agpl-3.0
25,676
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/monitor/rtw_radiotap.h
C
agpl-3.0
1,500
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_ap.c
C
agpl-3.0
194,643
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_beamforming.c
C
agpl-3.0
57,990
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_br_ext.c
C
agpl-3.0
46,479
/****************************************************************************** * * Copyright(c) 2013 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_btc.c
C
agpl-3.0
2,769
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_chplan.c
C
agpl-3.0
164,190
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_chplan.h
C
agpl-3.0
10,017
/****************************************************************************** * * Copyright(c) 2007 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_cmd.c
C
agpl-3.0
188,504
/****************************************************************************** * * Copyright(c) 2019 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_csa.c
C
agpl-3.0
15,190
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_debug.c
C
agpl-3.0
204,636
/****************************************************************************** * * Copyright(c) 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. *...
2301_81045437/rtl8852be
core/rtw_fake_ap.c
C
agpl-3.0
11,840
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_ft.c
C
agpl-3.0
26,834
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_he.c
C
agpl-3.0
51,445
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_ieee80211.c
C
agpl-3.0
86,817
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_io.c
C
agpl-3.0
1,995
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_ioctl_query.c
C
agpl-3.0
710
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_ioctl_set.c
C
agpl-3.0
21,375
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_mbo.c
C
agpl-3.0
44,349
/****************************************************************************** * * Copyright(c) 2016 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_mem.c
C
agpl-3.0
3,422
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_mi.c
C
agpl-3.0
40,080
/****************************************************************************** * * Copyright(c) 2007 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_mlme.c
C
agpl-3.0
177,636
/****************************************************************************** * * Copyright(c) 2007 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_mlme_ext.c
C
agpl-3.0
415,906
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_mp.c
C
agpl-3.0
101,895
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_p2p.c
C
agpl-3.0
87,623
/****************************************************************************** * * Copyright(c) 2019 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_phl.c
C
agpl-3.0
68,075
/****************************************************************************** * * Copyright(c) 2019 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_phl_cmd.c
C
agpl-3.0
10,616
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_pwrctrl.c
C
agpl-3.0
61,443
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_recv.c
C
agpl-3.0
155,461
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_recv_shortcut.c
C
agpl-3.0
7,988
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_rf.c
C
agpl-3.0
37,827
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_rm.c
C
agpl-3.0
67,040
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_rm_fsm.c
C
agpl-3.0
24,277
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_rm_util.c
C
agpl-3.0
10,909
/****************************************************************************** * * Copyright(c) 2019 - 2020 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_scan.c
C
agpl-3.0
93,389
/****************************************************************************** * * Copyright(c) 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. *...
2301_81045437/rtl8852be
core/rtw_sdio.c
C
agpl-3.0
4,651
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_sec_cam.c
C
agpl-3.0
26,161
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_security.c
C
agpl-3.0
78,170
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_sreset.c
C
agpl-3.0
9,089
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_sta_mgt.c
C
agpl-3.0
42,418
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_swcrypto.c
C
agpl-3.0
8,265
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_tdls.c
C
agpl-3.0
109,856
/****************************************************************************** * * Copyright(c) 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. *...
2301_81045437/rtl8852be
core/rtw_trx.c
C
agpl-3.0
3,804
/****************************************************************************** * * Copyright(c) 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. *...
2301_81045437/rtl8852be
core/rtw_trx_pci.c
C
agpl-3.0
7,566
/****************************************************************************** * * Copyright(c) 2015 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_trx_sdio.c
C
agpl-3.0
12,983
/****************************************************************************** * * Copyright(c) 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. *...
2301_81045437/rtl8852be
core/rtw_trx_usb.c
C
agpl-3.0
2,621
/****************************************************************************** * * Copyright(c) 2007 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_vht.c
C
agpl-3.0
49,200
/****************************************************************************** * * Copyright(c) 2016 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_wapi.c
C
agpl-3.0
43,404
/****************************************************************************** * * Copyright(c) 2016 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_wapi_sms4.c
C
agpl-3.0
27,858
/****************************************************************************** * * Copyright(c) 2007 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_wlan_util.c
C
agpl-3.0
84,675
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_wnm.c
C
agpl-3.0
39,208
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_wow.c
C
agpl-3.0
29,529
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_xmit.c
C
agpl-3.0
251,863
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/rtw_xmit_shortcut.c
C
agpl-3.0
28,492
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/wds/rtw_wds.c
C
agpl-3.0
17,738
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
core/wds/rtw_wds.h
C
agpl-3.0
2,058
/****************************************************************************** * * Copyright(c) 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. *...
2301_81045437/rtl8852be
include/_hal_api_tmp.h
C
agpl-3.0
13,009
/****************************************************************************** * * Copyright(c) 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. *...
2301_81045437/rtl8852be
include/_hal_rate.h
C
agpl-3.0
28,518
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/autoconf.h
C
agpl-3.0
8,723
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/basic_types.h
C
agpl-3.0
10,391
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/byteorder/big_endian.h
C
agpl-3.0
3,214
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/byteorder/generic.h
C
agpl-3.0
6,897
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/byteorder/little_endian.h
C
agpl-3.0
3,386
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/byteorder/swab.h
C
agpl-3.0
3,243
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/byteorder/swabb.h
C
agpl-3.0
4,020
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/circ_buf.h
C
agpl-3.0
864
/****************************************************************************** * * Copyright(c) 2016 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/custom_gpio.h
C
agpl-3.0
1,045
/****************************************************************************** * * Copyright(c) 2007 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/drv_conf.h
C
agpl-3.0
18,222
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/drv_types.h
C
agpl-3.0
49,328
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/drv_types_gspi.h
C
agpl-3.0
1,367
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/drv_types_pci.h
C
agpl-3.0
2,125
/****************************************************************************** * * Copyright(c) 2007 - 2021 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/drv_types_sdio.h
C
agpl-3.0
3,066
/****************************************************************************** * * Copyright(c) 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. *...
2301_81045437/rtl8852be
include/drv_types_usb.h
C
agpl-3.0
1,559
/****************************************************************************** * * Copyright(c) 2007 - 2019 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/ethernet.h
C
agpl-3.0
1,567
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundat...
2301_81045437/rtl8852be
include/gspi_hal.h
C
agpl-3.0
786