[go-nuts] Decrypting TripleDES (.Net to Golang)

2016-08-11 Thread sc28
I'm receiving a file encrypted with TripleDES by a .Net process. The code they are using is: class TripleDES { private static System.Security.Cryptography.TripleDES CreateDES(string key) { MD5 md5 = new MD5CryptoServiceProvider();

[go-nuts] Govendor and Docker Build Container issues

2016-09-20 Thread sc28
I have a application structure as follows in my GoPath: --/ myproject | |-- apps |-- app1 |-- main.go |-- app2 |-- main.go |-- appN |-- main.go |-- libs

[go-nuts] Interface help

2016-11-30 Thread sc28
I'm trying to better understand how to properly use interfaces and created this scenario: Let's say I have an 'evaluator' program, that over time will want to add more and more evaluations of a Go-NoGo nature (Nasa?) Here's want I was trying: // My Go-NoGo interface - method should return

[go-nuts] Re: Interface help

2016-11-30 Thread sc28
e mercredi 30 novembre 2016 17:59:07 UTC+1, sc28 a écrit : >> >> I'm trying to better understand how to properly use interfaces and >> created this scenario: >> >> Let's say I have an 'evaluator' program, that over time will want to add >> more and more e

[go-nuts] Re: Go 1.11.1 is released

2018-10-02 Thread sc28
Just installed (Mac pkg version): Tried to compile simple "hello, world" # errors compile: version "go1.11.1" does not match go tool version "go1.11" # internal/race compile: version "go1.11.1" does not match go tool version "go1.11" # unicode/utf8 compile: version "go1.11.1" does not match go

[go-nuts] Re: Go 1.11.1 is released

2018-10-02 Thread sc28
My bad -- Had installs in both /usr/local/bin and /usr/local/bin/go -- cleared everything and reinstalled -- sorry! On Tuesday, October 2, 2018 at 3:20:52 PM UTC-4, sc28 wrote: > > Just installed (Mac pkg version): > > Tried to compile simple "hello, world" > > &