mirror of
https://github.com/nxp-imx/mwifiex.git
synced 2024-11-20 09:01:44 +00:00
bd8827d169
The sdk release is from NXP offial web: https://www.nxp.com/products/wireless/wi-fi-plus-bluetooth/ 88w8997-wi-fi-dual-band-with-bluetooth-5-for-a-v-streaming-and-digital-tv:88W8997?tab=Design_Tools_Tab The release file is: PCIE-WLAN-UART-BT-8997-U16-X86-W16.68.10.p16-16.26.10.p16-C4X16640_V4-MGPL The sdk version is: W16.68.10.p16 Signed-off-by: Fugang Duan <fugang.duan@nxp.com>
58 lines
1.6 KiB
Text
Executable file
58 lines
1.6 KiB
Text
Executable file
# File : crypto_test.conf
|
|
|
|
######################### crypto_test command configuration ##################
|
|
# support algorithm:1-RC4, 2-AES, 3-AES_KEY_WRAP,4-AES-CCM
|
|
|
|
crypto_test={
|
|
CmdCode=0x0078 # do NOT change this line
|
|
#EncDec: 0-Decrypt, 1-Encrypt
|
|
EncDec:2=0
|
|
#Algorithm: 1-RC4, 2-AES, 3-AES_KEY_WRAP
|
|
Algorithm:2=1
|
|
#KeyIVLength: Length of KeyIV (bytes)
|
|
KeyIVLength:2=8
|
|
#KeyIV: Key IV
|
|
KeyIV:32='0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11'
|
|
#KeyLength: Length of Key (bytes)
|
|
KeyLength:2=16
|
|
#Key: Key
|
|
Key:32='0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22'
|
|
#DataType: DataType
|
|
DataType:2=0x0111
|
|
#DataLength: Data Length
|
|
DataLength:2={
|
|
#Data: Data
|
|
Data:8='0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33'
|
|
}
|
|
}
|
|
|
|
#####Sample crypto_test command configuration for AES-CCM algorithm #########
|
|
|
|
#crypto_test={
|
|
# CmdCode=0x0078 # do NOT change this line
|
|
# #EncDec: 0-Decrypt, 1-Encrypt
|
|
# EncDec:2=1
|
|
# #Algorithm: 4-AES-CCM
|
|
# Algorithm:2=4
|
|
# #KeyLength: Length of Key (bytes)
|
|
# KeyLength:2=16
|
|
# #Key: Key
|
|
# Key:32='0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22'
|
|
# #NonceLength: Length of Nonce (bytes)
|
|
# NonceLength:2=10
|
|
# #Nonce: Nonce
|
|
# Nonce:14='0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11'
|
|
# #AADLength: Length of AAD (bytes)
|
|
# AADLength:2=12
|
|
# #AAD: AAD
|
|
# AAD:32='0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33'
|
|
# #DataType: DataType
|
|
# DataType:2=0x0111
|
|
# #DataLength: Data Length
|
|
# DataLength:2={
|
|
# #Data: Data
|
|
# Data:8='0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33'
|
|
# }
|
|
#}
|
|
|
|
######################### End of crypto_test configuration command ##################
|