atrueresistance
atrueresistance

Reputation: 1368

Is there a C library for WEP, WPA, and WPA2

Is there a library much like how openssl is imported into C programs that would allow easy access to WEP, WPA, and WPA2 functions?

I have never programmed in C and a friend is asking.

Upvotes: 1

Views: 2146

Answers (2)

MK.
MK.

Reputation: 34587

I think Open1X is what you want.

Upvotes: 0

Antti
Antti

Reputation: 12489

There's wpa_supplicant which probably fits your needs. It's a program, not a library, but it should be possible to modify it to be used as a library if necessary. However, wpa_supplicant doesn't support all OSes and chipsets as wifi encryption is (in contrast to SSL/TLS) very dependant on the underlying hardware.

Upvotes: 1

Related Questions