summaryrefslogtreecommitdiffstats
path: root/src/gsm/auth_core.c
Commit message (Collapse)AuthorAgeFilesLines
* auth_core: Add osmo_auth_3g_from_2g() to compute CK+IK from KcHarald Welte2016-05-051-0/+41
| | | | | This function performs the C5+C4 conversion to derive UMTS key material from a 2G-only subscriber.
* misc: Doxygen tweaks: fixed some typos and minor errorsKaterina Barone-Adesi2013-02-151-2/+2
| | | | | Doxygen generates quite a lot of warnings on libosmocore. Some of them are obvious typos - this patch aims to fix such low-hanging fruit.
* authentication: More documentationHarald Welte2012-07-181-3/+54
|
* libosmogsm: Introduce explicit list of exported symbolsHarald Welte2012-04-041-1/+1
| | | | | | | | There is now a "libosmogsm.map" file containing an explicit list of to-be-exported symbols. This should prevent us from leaking non-static symbols into the global namespace. A similar scheme should be adopted by all other osmocom libraries
* auth_core: add missing string.h include to reduce warningsHarald Welte2011-12-071-0/+1
|
* auth_core: Make sure we always save the RAND in the vectorHarald Welte2011-12-071-1/+8
|
* auth_core: add functions for parsing algorithm namesHarald Welte2011-12-071-0/+20
|
* Auth: Import milenage implementation from hostap (Jouni Malinen)Harald Welte2011-12-061-2/+2
| | | | ... and add integration into the osmo_auth core.
* Add a generic abstraction for GSM/3G authentication algorithmsHarald Welte2011-12-061-0/+93
Indiidual algorithms can be implemented as plugins. libosmogsm itself only provides COMP128v1 via this generic interface.