pass

Paddy 2015-12-14 Parent:22ce15152c43

2:7304f24504cf Go to Latest

pass/pass.go

Update to new crypto import path. Our the Go crypto library is now located at golang.org/x/crypto, so we need to update to use that instead of Google Code.

History
     1.1 --- a/pass.go	Wed Nov 19 00:18:52 2014 -0500
     1.2 +++ b/pass.go	Mon Dec 14 04:02:02 2015 -0800
     1.3 @@ -6,7 +6,7 @@
     1.4  	"hash"
     1.5  	"time"
     1.6  
     1.7 -	"code.google.com/p/go.crypto/pbkdf2"
     1.8 +	"golang.org/x/crypto/pbkdf2"
     1.9  )
    1.10  
    1.11  func Create(h func() hash.Hash, iters int, passphrase []byte) (result, salt []byte, err error) {