Victor Vrantchan

Results 116 comments of Victor Vrantchan

@kai-h, Thank you for a well thought out proposal. I'll be honest, unless more people jump in to help out with the code, it will probably be a while before...

Bufford has an error that we are somehow failing to use https://github.com/RobotsAndPencils/buford/blob/d6d71aff1447ced56016d09a5d74f4ea488a2d75/certificate/cert.go#L21

What about creating a mock struct like the ones in @benbjohnson's [example](https://github.com/benbjohnson/wtf/blob/eeab3970cd774fd6e5219cff0342342d756b4f7e/mock/mock.go#L7)? Given an interface, these can all be easily generated with a tool like `impl`.

Travis fails with 1.6/1.7 but passes with 1.8+ ``` internal/x509util/x509util.go:115: undefined: x509.SHA256WithRSAPSS internal/x509util/x509util.go:115: undefined: x509.SHA384WithRSAPSS internal/x509util/x509util.go:115: undefined: x509.SHA512WithRSAPSS internal/x509util/x509util.go:183: undefined: x509.SHA256WithRSAPSS internal/x509util/x509util.go:184: undefined: x509.SHA384WithRSAPSS internal/x509util/x509util.go:185: undefined: x509.SHA512WithRSAPSS ``` I can...

Example https://github.com/kolide/launcher/blob/fb08499f16d5fad96a545453f13ddfc2c70148cb/osquery/platform.go

I've been thinking about this. What you want (most likely) is to use build tags to only compile windows code for `exe` and macos code for darwin binaries. Go has...