From 0f99598b34b6e1f69c8003682797352326d6d866 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 9 Feb 2026 11:56:23 +0100 Subject: [PATCH] pySim.esim.saip.personalization: Fix docstring error pySim/esim/saip/personalization.py:docstring of pySim.esim.saip.personalization.MilenageXoringConstants:4: ERROR: Unexpected indentation. [docutils] Change-Id: If6ae360b7f74c095fa9075ae9aa988440496e6de --- pySim/esim/saip/personalization.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pySim/esim/saip/personalization.py b/pySim/esim/saip/personalization.py index 54aaa435..c61675f9 100644 --- a/pySim/esim/saip/personalization.py +++ b/pySim/esim/saip/personalization.py @@ -640,12 +640,14 @@ class MilenageRotationConstants(BinaryParam, AlgoConfig): class MilenageXoringConstants(BinaryParam, AlgoConfig): """XOR-ing constants c1,c2,c3,c4,c5 of Milenage, 128bit each. See 3GPP TS 35.206 Sections 2.3 + 5.3. Provided as octet-string concatenation of all 5 constants. The default value by 3GPP is the concetenation - of: + of:: + 00000000000000000000000000000000 00000000000000000000000000000001 00000000000000000000000000000002 00000000000000000000000000000004 00000000000000000000000000000008 + """ name = 'MilenageXOR' algo_config_key = 'xoringConstants'