File tree Expand file tree Collapse file tree 14 files changed +23
-23
lines changed Expand file tree Collapse file tree 14 files changed +23
-23
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
6
6
GOARCH := $(shell go env GOARCH)
7
7
GOOS := $(shell go env GOOS)
8
8
BUILDDATE := $(shell date -u +'% Y-% m-% dT% H:% M:% SZ')
9
- CODEVERSION := "1.1.3 "
9
+ CODEVERSION := "1.1.4 "
10
10
CODEBUILDREVISION := $(shell git rev-parse HEAD)
11
11
.PHONY : all dep build clean test coverage zip lint
12
12
Original file line number Diff line number Diff line change 4
4
** ecutils**
5
5
6
6
## Version of the * Software*
7
- ** 1.1.3 **
7
+ ** 1.1.4 **
8
8
9
9
## * Software* Description
10
10
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ PKG="$PROJECT_NAME"
5
5
PKG_LIST=$( go list " ${PKG} /..." | grep -v /vendor/)
6
6
GO_FILES=$( find . -name ' *.go' | grep -v /vendor/ | grep -v _test.go)
7
7
BUILDDATE=$( date -u +' %Y-%m-%dT%H:%M:%SZ' )
8
- CODEVERSION=" 1.1.3 "
8
+ CODEVERSION=" 1.1.4 "
9
9
CODEBUILDREVISION=$( git rev-parse HEAD)
10
10
TARGETS=(
11
11
" linux/386"
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
3
import (
4
- pkg_ec "github.com/isakruas/go-ecutils/internal /ec"
5
- pkg_ecdh "github.com/isakruas/go-ecutils/internal /ecdh"
6
- pkg_ecdsa "github.com/isakruas/go-ecutils/internal /ecdsa"
7
- pkg_eck "github.com/isakruas/go-ecutils/internal /eck"
8
- pkg_ecmo "github.com/isakruas/go-ecutils/internal /ecmo"
4
+ pkg_ec "github.com/isakruas/go-ecutils/pkg /ec"
5
+ pkg_ecdh "github.com/isakruas/go-ecutils/pkg /ecdh"
6
+ pkg_ecdsa "github.com/isakruas/go-ecutils/pkg /ecdsa"
7
+ pkg_eck "github.com/isakruas/go-ecutils/pkg /eck"
8
+ pkg_ecmo "github.com/isakruas/go-ecutils/pkg /ecmo"
9
9
10
10
"flag"
11
11
"fmt"
File renamed without changes.
Original file line number Diff line number Diff line change 4
4
"math/big"
5
5
"testing"
6
6
7
- "github.com/isakruas/go-ecutils/internal /ec"
7
+ "github.com/isakruas/go-ecutils/pkg /ec"
8
8
)
9
9
10
10
func TestECTrapdoorPanic (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ package ecdh
9
9
import (
10
10
"math/big"
11
11
12
- "github.com/isakruas/go-ecutils/internal /ec"
12
+ "github.com/isakruas/go-ecutils/pkg /ec"
13
13
)
14
14
15
15
// ECDH represents an Elliptic Curve Diffie Hellman entity with a curve and a private key
Original file line number Diff line number Diff line change 4
4
"math/big"
5
5
"testing"
6
6
7
- "github.com/isakruas/go-ecutils/internal /ec"
8
- "github.com/isakruas/go-ecutils/internal /ecdh"
7
+ "github.com/isakruas/go-ecutils/pkg /ec"
8
+ "github.com/isakruas/go-ecutils/pkg /ecdh"
9
9
)
10
10
11
11
func TestECDHPublicKey (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
"math/rand"
12
12
"time"
13
13
14
- "github.com/isakruas/go-ecutils/internal /ec"
14
+ "github.com/isakruas/go-ecutils/pkg /ec"
15
15
)
16
16
17
17
// ECDSA structure
Original file line number Diff line number Diff line change 4
4
"math/big"
5
5
"testing"
6
6
7
- "github.com/isakruas/go-ecutils/internal /ec"
8
- "github.com/isakruas/go-ecutils/internal /ecdsa"
7
+ "github.com/isakruas/go-ecutils/pkg /ec"
8
+ "github.com/isakruas/go-ecutils/pkg /ecdsa"
9
9
)
10
10
11
11
func TestECDSAPublicKey (t * testing.T ) {
Original file line number Diff line number Diff line change 9
9
"fmt"
10
10
"math/big"
11
11
12
- "github.com/isakruas/go-ecutils/internal /ec"
12
+ "github.com/isakruas/go-ecutils/pkg /ec"
13
13
)
14
14
15
15
// ECK structure holding an elliptic curve
Original file line number Diff line number Diff line change 5
5
"math/big"
6
6
"testing"
7
7
8
- "github.com/isakruas/go-ecutils/internal /ec"
9
- "github.com/isakruas/go-ecutils/internal /eck"
8
+ "github.com/isakruas/go-ecutils/pkg /ec"
9
+ "github.com/isakruas/go-ecutils/pkg /eck"
10
10
)
11
11
12
12
func TestECKEncodeDefault (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ package ecmo
13
13
import (
14
14
"math/big"
15
15
16
- "github.com/isakruas/go-ecutils/internal /ec"
17
- "github.com/isakruas/go-ecutils/internal /ecdsa"
18
- "github.com/isakruas/go-ecutils/internal /eck"
16
+ "github.com/isakruas/go-ecutils/pkg /ec"
17
+ "github.com/isakruas/go-ecutils/pkg /ecdsa"
18
+ "github.com/isakruas/go-ecutils/pkg /eck"
19
19
)
20
20
21
21
// ECMO represents the Massey–Omura elliptic curve protocol.
Original file line number Diff line number Diff line change 5
5
"math/big"
6
6
"testing"
7
7
8
- "github.com/isakruas/go-ecutils/internal /ec"
9
- "github.com/isakruas/go-ecutils/internal /ecmo"
8
+ "github.com/isakruas/go-ecutils/pkg /ec"
9
+ "github.com/isakruas/go-ecutils/pkg /ecmo"
10
10
)
11
11
12
12
func TestECMOPublicKey (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments