From e152fd2614a2159f2918d2ac721793856ca4d873 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 9 May 2018 20:22:54 +0200 Subject: osmo-bts-trx: Enable A5/3 cipher support This actually should have been working since 2015, when the following patch was merged to libosmcore: commit f8699ca51eeb4f3d34336501abcaf071b4a95a47 Author: Max Date: Wed Mar 25 17:20:31 2015 +0100 gsm: Add A5/3-4 cipher support however, it seems nobody so far bothered to actually enable A5/3 for osmo-bts-trx! Change-Id: I8192d6d07cdb87783bce997456ead673c600f7c0 Closes: OS#3253 --- src/osmo-bts-trx/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bts-trx/main.c b/src/osmo-bts-trx/main.c index 6e5a4cad..3b82e42b 100644 --- a/src/osmo-bts-trx/main.c +++ b/src/osmo-bts-trx/main.c @@ -98,7 +98,7 @@ int bts_model_handle_options(int argc, char **argv) int bts_model_init(struct gsm_bts *bts) { bts->variant = BTS_OSMO_TRX; - bts->support.ciphers = CIPHER_A5(1) | CIPHER_A5(2); + bts->support.ciphers = CIPHER_A5(1) | CIPHER_A5(2) | CIPHER_A5(3); /* FIXME: this needs to be overridden with the real hardrware * value */ -- cgit v1.2.3