TwclWiFiCipherAlgorithm Enumeration

Defines a cipher algorithm for data encryption and decryption.

Namespace: wclWiFi
type
 TwclWiFiCipherAlgorithm = (
 caNone,
 caWep40,
 caTkip,
 caCcmp,
 caWep104,
 caBip,
 caGcmp128,
 caGcmp256,
 caCcmp256,
 caBipGmac128,
 caBipGmac256,
 caBipCmac256,
 caUseGroup,
 caWep,
 caUnknown
 );

The TwclWiFiCipherAlgorithm type exposes the following members.

Show:
 NameDescription
caBip

Specifies a WiFi Protected Access (WPA) Use Group Key cipher suite. For more information about the Use Group Key cipher suite, refer to Clause 7.3.2.25.1 of the IEEE 802.11i-2004 standard.

caBipCmac256

Specifies a Broadcast Integrity Protocol Cipher-based Message Authentication Code (BIP-CMAC) cipher algorithm with a 256-bit cipher key.

caBipGmac128

Specifies a Broadcast Integrity Protocol Galois Message Authentication Code (BIP-GMAC) cipher algorithm with a 128-bit cipher key.

caBipGmac256

Specifies a Broadcast Integrity Protocol Galois Message Authentication Code (BIP-GMAC) cipher algorithm with a 256-bit cipher key.

caCcmp

Specifies an AES-CCMP algorithm, as specified in the IEEE 802.11i-2004 standard and RFC 3610. Advanced Encryption Standard (AES) is the encryption algorithm defined in FIPS PUB 197.

caCcmp256

Specifies an AES-CCMP algorithm with a 256-bit cipher key.

caGcmp128

Specifies a GCMP cipher algorithm with a 128-bit cipher key.

caGcmp256

Specifies a GCMP cipher algorithm with a 256-bit cipher key.

caNone

Specifies that no cipher algorithm is enabled or supported.

caTkip

Specifies a Temporal Key Integrity Protocol (TKIP) algorithm, which is the RC4-based cipher suite that is based on the algorithms that are defined in the WPA specification and IEEE 802.11i-2004 standard. This cipher also uses the Michael Message Integrity Code (MIC) algorithm for forgery protection.

caUnknown

The cipher algorithm is unknown or unsupported.

caUseGroup

Specifies a Robust Security Network (RSN) Use Group Key cipher suite. For more information about the Use Group Key cipher suite, refer to Clause 7.3.2.25.1 of the IEEE 802.11i-2004 standard.

caWep

Specifies a WEP cipher algorithm with a cipher key of any length.

caWep104

Specifies a WEP cipher algorithm with a 104-bit cipher key.

caWep40

Specifies a Wired Equivalent Privacy (WEP) algorithm, which is the RC4-based algorithm that is specified in the 802.11-1999 standard. This enumerator specifies the WEP cipher algorithm with a 40-bit cipher key.

Top