GSSAPI sequence numbers

2021-03-26 Thread Jake Scott
Hi.. I am writing a native Golang implementation of GSSAPI, first for krb5 - using Johnathan Turner's library (https://github.com/jcmturner/gokrb5). I took the naive approach of handling the initial sequence numbers by simply casting the uint32 value from the authenticator and AP-REP encpart to u

Re: GSSAPI sequence numbers

2021-03-26 Thread Greg Hudson
On 3/26/21 3:26 PM, Jake Scott wrote: > I took the naive approach of handling the initial sequence numbers by > simply casting the uint32 value from the authenticator and AP-REP encpart > to uint64. However that causes compatibility issues with the MIT > implementation that appears to cast first t

Re: GSSAPI sequence numbers

2021-03-26 Thread Robbie Harwood
Jake Scott writes: > I am writing a native Golang implementation of GSSAPI, first for krb5 - > using Johnathan Turner's library (https://github.com/jcmturner/gokrb5). Unless this is never to see production, I would be remiss if I didn't suggest you not use the pure Go implementation. I suggest