Browse Source

update paths

pull/1782/head
Ethan Buchman 7 years ago
parent
commit
8bb25ec5ed
10 changed files with 15 additions and 16 deletions
  1. +1
    -1
      armor.go
  2. +1
    -1
      embed_test.go
  3. +1
    -1
      encode_test.go
  4. +3
    -4
      glide.yaml
  5. +2
    -2
      priv_key.go
  6. +2
    -2
      pub_key.go
  7. +1
    -1
      random.go
  8. +2
    -2
      signature.go
  9. +1
    -1
      signature_test.go
  10. +1
    -1
      symmetric.go

+ 1
- 1
armor.go View File

@ -4,7 +4,7 @@ import (
"bytes"
"io/ioutil"
. "github.com/tendermint/go-common"
. "github.com/tendermint/tmlibs/common"
"golang.org/x/crypto/openpgp/armor"
)


+ 1
- 1
embed_test.go View File

@ -6,7 +6,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
data "github.com/tendermint/go-data"
data "github.com/tendermint/go-wire/data"
)
type PubName struct {


+ 1
- 1
encode_test.go View File

@ -7,7 +7,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
data "github.com/tendermint/go-data"
data "github.com/tendermint/go-wire/data"
wire "github.com/tendermint/go-wire"
)


+ 3
- 4
glide.yaml View File

@ -9,11 +9,10 @@ import:
- package: github.com/tendermint/ed25519
subpackages:
- extra25519
- package: github.com/tendermint/go-common
- package: github.com/tendermint/go-data
version: develop
- package: github.com/tendermint/tmlibs
version: unstable
- package: github.com/tendermint/go-wire
version: develop
version: unstable
- package: golang.org/x/crypto
subpackages:
- blowfish


+ 2
- 2
priv_key.go View File

@ -6,8 +6,8 @@ import (
secp256k1 "github.com/btcsuite/btcd/btcec"
"github.com/tendermint/ed25519"
"github.com/tendermint/ed25519/extra25519"
. "github.com/tendermint/go-common"
data "github.com/tendermint/go-data"
. "github.com/tendermint/tmlibs/common"
data "github.com/tendermint/go-wire/data"
"github.com/tendermint/go-wire"
)


+ 2
- 2
pub_key.go View File

@ -7,8 +7,8 @@ import (
secp256k1 "github.com/btcsuite/btcd/btcec"
"github.com/tendermint/ed25519"
"github.com/tendermint/ed25519/extra25519"
. "github.com/tendermint/go-common"
data "github.com/tendermint/go-data"
. "github.com/tendermint/tmlibs/common"
data "github.com/tendermint/go-wire/data"
"github.com/tendermint/go-wire"
"golang.org/x/crypto/ripemd160"
)


+ 1
- 1
random.go View File

@ -8,7 +8,7 @@ import (
"io"
"sync"
. "github.com/tendermint/go-common"
. "github.com/tendermint/tmlibs/common"
)
var gRandInfo *randInfo


+ 2
- 2
signature.go View File

@ -4,8 +4,8 @@ import (
"bytes"
"fmt"
. "github.com/tendermint/go-common"
data "github.com/tendermint/go-data"
. "github.com/tendermint/tmlibs/common"
data "github.com/tendermint/go-wire/data"
"github.com/tendermint/go-wire"
)


+ 1
- 1
signature_test.go View File

@ -7,7 +7,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/tendermint/ed25519"
data "github.com/tendermint/go-data"
data "github.com/tendermint/go-wire/data"
)
func TestSignAndValidateEd25519(t *testing.T) {


+ 1
- 1
symmetric.go View File

@ -3,7 +3,7 @@ package crypto
import (
"errors"
. "github.com/tendermint/go-common"
. "github.com/tendermint/tmlibs/common"
"golang.org/x/crypto/nacl/secretbox"
)


Loading…
Cancel
Save