Re: [go-nuts] Handle gziped request bodies

2017-03-04 Thread John Kemp
AFAIK, there is (still?) no out-of-the-box support for gzip. See, for example, https://github.com/NYTimes/gziphandler - johnk > On Mar 4, 2017, at 5:11 PM, Kevin Conway wrote: > > I'm running a go 1.7 HTTP server. One of my clients is applying gzip to the > POST

Re: [go-nuts] Biometric login (webauthn) in Go, need help in verifying signature

2016-08-17 Thread John Kemp
I’d say that you should look at the code in: > On Aug 13, 2016, at 3:51 PM, ayngl...@gmail.com wrote: > > rsa.VerifyPKCS1v15 (which is publicly available: https://go.googlesource.com/go/+/master/src/crypto/rsa/pkcs1v15.go) And see if it matches what your JS crypto.subtle.verify does… I do