aboutsummaryrefslogtreecommitdiffstats
path: root/requirements.txt
diff options
context:
space:
mode:
authorRobert Falkenberg <robert.falkenberg@tu-dortmund.de>2021-05-07 15:23:20 +0200
committerRobert Falkenberg <robert.falkenberg@tu-dortmund.de>2021-05-10 06:15:39 +0200
commitb07a3e9c87fc742aab2515ce1e6f9e4d20c91cae (patch)
treea73e9b021eeeeede426702535923a6eb3a933d4c /requirements.txt
parentc957ce8adc4ecd5084cd8f7ed86b8c4e200c22f6 (diff)
Add codecs for EF_SPN and GSM strings via construct
This will replace the hand-crafted codec for EF_SPN by a struct definition using the construct library. Old encoders are updated and kept for API compatibility but are not used internally anymore. New data structures: * Rpad(Adapter): Right-padded bytestring (0xff, adjustable) * GsmStringAdapter(Adapter): Codec for "SMS default 7-bit coded alphabet as defined int TS 23.038" using the gsm0338 library. * GsmString(n): Convenient wrapper of both above Adjustments: * utils: update+deprecate old dec_spn(), enc_spn() * remove refs to deprecated functions Change-Id: Ia1d3a3835933bac0002b7c52511481dd8094b994
Diffstat (limited to 'requirements.txt')
-rw-r--r--requirements.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt
index 6e8336c..10e9667 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -5,3 +5,4 @@ cmd2
jsonpath-ng
construct
bidict
+gsm0338