diff options
author | Max <msuraev@sysmocom.de> | 2016-04-21 16:51:04 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2016-04-22 15:10:53 +0200 |
commit | fdb3d8ce7898801d5b18d446a17ccc0f09451d4f (patch) | |
tree | 0fcc7aab404a56084a9e9f0ba40f6994dd75830c /include/osmocom | |
parent | aead05da321e3accaffec471d547d3a7174091b2 (diff) |
Deprecate osmo_a5_1 and osmo_a5_2
Mark the functions as deprecated to discourage their use: people should
use unified osmo_a5 which supports all the A5/1-4 ciphers.
Diffstat (limited to 'include/osmocom')
-rw-r--r-- | include/osmocom/gsm/a5.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/osmocom/gsm/a5.h b/include/osmocom/gsm/a5.h index d22cdbbb..a2278f22 100644 --- a/include/osmocom/gsm/a5.h +++ b/include/osmocom/gsm/a5.h @@ -24,6 +24,7 @@ #include <stdint.h> +#include <osmocom/core/defs.h> #include <osmocom/core/bits.h> /*! \defgroup a5 GSM A5 ciphering algorithm @@ -54,7 +55,7 @@ osmo_a5_fn_count(uint32_t fn) * (converted internally to fn_count) */ int osmo_a5(int n, const uint8_t *key, uint32_t fn, ubit_t *dl, ubit_t *ul); -void osmo_a5_1(const uint8_t *key, uint32_t fn, ubit_t *dl, ubit_t *ul); -void osmo_a5_2(const uint8_t *key, uint32_t fn, ubit_t *dl, ubit_t *ul); +void osmo_a5_1(const uint8_t *key, uint32_t fn, ubit_t *dl, ubit_t *ul) OSMO_DEPRECATED("Use generic osmo_a5() instead"); +void osmo_a5_2(const uint8_t *key, uint32_t fn, ubit_t *dl, ubit_t *ul) OSMO_DEPRECATED("Use generic osmo_a5() instead"); /*! @} */ |