All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] simutil: Made UMTS/GSM authenticate more consitent
@ 2017-11-01 17:32 James Prestwood
  2017-11-02 16:38 ` Denis Kenzior
  0 siblings, 1 reply; 2+ messages in thread
From: James Prestwood @ 2017-11-01 17:32 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 645 bytes --]

The Le parameter in the AUTHENTICATE command was not being
set for GSM authentication. This did work, but explicitly
setting it to 0 as UMTS does was more consitent.
---
 src/simutil.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/simutil.c b/src/simutil.c
index 2f49500..c25b3a8 100644
--- a/src/simutil.c
+++ b/src/simutil.c
@@ -1628,9 +1628,10 @@ static int build_authenticate(unsigned char *buffer, const unsigned char *rand,
 		buffer[pos++] = 0x10;
 		memcpy(buffer + pos, autn, 16);
 		pos += 16;
-		buffer[pos++] = 0x00;
 	}
 
+	buffer[pos++] = 0x00;
+
 	return pos;
 }
 
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] simutil: Made UMTS/GSM authenticate more consitent
  2017-11-01 17:32 [PATCH] simutil: Made UMTS/GSM authenticate more consitent James Prestwood
@ 2017-11-02 16:38 ` Denis Kenzior
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2017-11-02 16:38 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 368 bytes --]

Hi James,

On 11/01/2017 12:32 PM, James Prestwood wrote:
> The Le parameter in the AUTHENTICATE command was not being
> set for GSM authentication. This did work, but explicitly
> setting it to 0 as UMTS does was more consitent.
> ---
>   src/simutil.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 

Applied, thanks.

Regards,
-Denis


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-11-02 16:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-01 17:32 [PATCH] simutil: Made UMTS/GSM authenticate more consitent James Prestwood
2017-11-02 16:38 ` Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.