Commit b9ed727 1 parent 4ad8f9e commit b9ed727 Copy full SHA for b9ed727
File tree 34 files changed +28
-28
lines changed
34 files changed +28
-28
lines changed File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import (
22
22
23
23
"os"
24
24
25
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
26
- "github.com/hyperledger/fabric/core/crypto/ bccsp/sw"
25
+ "github.com/hyperledger/fabric/bccsp"
26
+ "github.com/hyperledger/fabric/bccsp/sw"
27
27
)
28
28
29
29
var (
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
19
19
"os"
20
20
"testing"
21
21
22
- "github.com/hyperledger/fabric/core/crypto/ bccsp/sw"
22
+ "github.com/hyperledger/fabric/bccsp/sw"
23
23
)
24
24
25
25
func TestGetDefault (t * testing.T ) {
File renamed without changes.
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ import (
20
20
"fmt"
21
21
"sync"
22
22
23
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
24
- "github.com/hyperledger/fabric/core/crypto/ bccsp/sw"
23
+ "github.com/hyperledger/fabric/bccsp"
24
+ "github.com/hyperledger/fabric/bccsp/sw"
25
25
)
26
26
27
27
const (
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ import (
21
21
"fmt"
22
22
"io"
23
23
24
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
25
- "github.com/hyperledger/fabric/core/crypto/ bccsp/utils"
24
+ "github.com/hyperledger/fabric/bccsp"
25
+ "github.com/hyperledger/fabric/bccsp/utils"
26
26
)
27
27
28
28
// CryptoSigner is the BCCSP-based implementation of a crypto.Signer
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ import (
20
20
"os"
21
21
"testing"
22
22
23
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
24
- "github.com/hyperledger/fabric/core/crypto/ bccsp/sw"
23
+ "github.com/hyperledger/fabric/bccsp"
24
+ "github.com/hyperledger/fabric/bccsp/sw"
25
25
)
26
26
27
27
var (
File renamed without changes.
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
"math/big"
23
23
"testing"
24
24
25
- "github.com/hyperledger/fabric/core/crypto/ bccsp/utils"
25
+ "github.com/hyperledger/fabric/bccsp/utils"
26
26
)
27
27
28
28
// TestCBCPKCS7EncryptCBCPKCS7Decrypt encrypts using CBCPKCS7Encrypt and decrypts using CBCPKCS7Decrypt.
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import (
20
20
21
21
"crypto/sha256"
22
22
23
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
23
+ "github.com/hyperledger/fabric/bccsp"
24
24
)
25
25
26
26
type aesPrivateKey struct {
File renamed without changes.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package sw
3
3
import (
4
4
"errors"
5
5
6
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
6
+ "github.com/hyperledger/fabric/bccsp"
7
7
)
8
8
9
9
// DummyKeyStore is a read-only KeyStore that neither loads nor stores keys.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
26
26
27
27
"crypto/elliptic"
28
28
29
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
29
+ "github.com/hyperledger/fabric/bccsp"
30
30
)
31
31
32
32
type ecdsaPrivateKey struct {
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ import (
29
29
"fmt"
30
30
"path/filepath"
31
31
32
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
33
- "github.com/hyperledger/fabric/core/crypto/ bccsp/utils"
32
+ "github.com/hyperledger/fabric/bccsp"
33
+ "github.com/hyperledger/fabric/bccsp/utils"
34
34
)
35
35
36
36
// FileBasedKeyStore is a folder-based KeyStore.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ import (
35
35
"crypto/sha256"
36
36
"crypto/sha512"
37
37
38
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
39
- "github.com/hyperledger/fabric/core/crypto/ bccsp/utils"
38
+ "github.com/hyperledger/fabric/bccsp"
39
+ "github.com/hyperledger/fabric/bccsp/utils"
40
40
"github.com/op/go-logging"
41
41
"golang.org/x/crypto/sha3"
42
42
)
Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ import (
40
40
"crypto/sha512"
41
41
"hash"
42
42
43
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
44
- "github.com/hyperledger/fabric/core/crypto/ bccsp/signer"
45
- "github.com/hyperledger/fabric/core/crypto/ bccsp/utils"
43
+ "github.com/hyperledger/fabric/bccsp"
44
+ "github.com/hyperledger/fabric/bccsp/signer"
45
+ "github.com/hyperledger/fabric/bccsp/utils"
46
46
"golang.org/x/crypto/sha3"
47
47
)
48
48
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import (
27
27
"encoding/asn1"
28
28
"math/big"
29
29
30
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
30
+ "github.com/hyperledger/fabric/bccsp"
31
31
)
32
32
33
33
// rsaPublicKey reflects the ASN.1 structure of a PKCS#1 public key.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ import (
26
26
"errors"
27
27
28
28
"github.com/golang/protobuf/proto"
29
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
30
- "github.com/hyperledger/fabric/core/crypto/ bccsp/signer"
29
+ "github.com/hyperledger/fabric/bccsp"
30
+ "github.com/hyperledger/fabric/bccsp/signer"
31
31
)
32
32
33
33
type identity struct {
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ import (
26
26
"encoding/json"
27
27
28
28
"github.com/golang/protobuf/proto"
29
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
30
- "github.com/hyperledger/fabric/core/crypto/ bccsp/signer"
31
- "github.com/hyperledger/fabric/core/crypto/ bccsp/sw"
29
+ "github.com/hyperledger/fabric/bccsp"
30
+ "github.com/hyperledger/fabric/bccsp/signer"
31
+ "github.com/hyperledger/fabric/bccsp/sw"
32
32
m "github.com/hyperledger/fabric/protos/msp"
33
33
)
34
34
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ import (
23
23
"bytes"
24
24
25
25
"github.com/golang/protobuf/proto"
26
- "github.com/hyperledger/fabric/core/crypto/ bccsp"
27
- "github.com/hyperledger/fabric/core/crypto/ bccsp/factory"
26
+ "github.com/hyperledger/fabric/bccsp"
27
+ "github.com/hyperledger/fabric/bccsp/factory"
28
28
"github.com/hyperledger/fabric/msp"
29
29
"github.com/hyperledger/fabric/protos/common"
30
30
"github.com/hyperledger/fabric/protos/peer"
You can’t perform that action at this time.
0 commit comments