Alan Jones
Alan Jones
I've changed my Editor setting for Tab Length to 8 to match my other tools. Unfortunately, when I toggle on inline deleted text I see them displayed with the original...
My current application goes though hoops to workaround the fact that the database type timestamp (without the -tz for Vertica) is returned with the local timestamp. The intention here was...
Got "tls: first record does not look like a TLS handshake" trying to use SendWithTLS() My solution was to use net.Dial() instead of tls.Dial() inside this function. See my fork...
I'm trying to use the SignedAndEncrypted() / ParseSignedAndEncrypted() workflow to implement JWE and I ran into problems with the import path in this repo: ``` cannot use sig (type "bitbucket.eng.zebrium.com/zsw/zwsd/vendor/github.com/square/go-jose".Signer)...
… an expired session This change is needed to avoid returning true from IsAuthenticated() on the first API access after a session is expired. This was tested using yosssi/boltstore for...
It is typical for a session token to be renewed on every API call. What strategy would we use to do this with the sessionauth package? It looks to me...
This change is needed to avoid returning true from IsAuthenticated() on the first API access after a session is expired. This was tested using yosssi/boltstore for session cookies, which correctly...
I'm attempting to use the service provider (SP) side of this library in a multi-tenant service were each tenant can have a different identity provider (IP). So far the only...
## Reproducible Example ```go package main import ( "fmt" "github.com/jinzhu/copier" ) func main() { dst := []byte("(to be replaced)(extra stuff)") src := []byte("(replacement --)") copier.Copy(&dst, &src) fmt.Printf("Result: %s\n", string(dst)) //...
For my SAML integration I need to be able to track the initial request across different source URLs. For this purpose I forked the project and added the following diff....