Skip to content

Commit 431d6bc

Browse files
committed
Module changes
1 parent 462cc97 commit 431d6bc

26 files changed

+32
-39
lines changed

cmd/echoserver/echo_server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
mynet "libiso/net"
5+
mynet "github.com/rkbalgi/libiso/net"
66
"log"
77
"net"
88
//"testing"

cmd/iso_host/iso_host.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"encoding/hex"
77
"flag"
88
"fmt"
9-
"libiso/iso8583"
10-
"libiso/iso_host"
11-
bnet "libiso/net"
9+
"github.com/rkbalgi/libiso/iso8583"
10+
"github.com/rkbalgi/libiso/iso_host"
11+
bnet "github.com/rkbalgi/libiso/net"
1212
"log"
1313
"net"
1414
"os"

cmd/netcat/netcat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
mynet "libiso/net"
4+
mynet "github.com/rkbalgi/libiso/net"
55
"log"
66
)
77
import (

cmd/scratchpad/scratchpad.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package main
22

33
//import hexutils "github.com/rkbalgi/utils"
4-
import "libiso/crypto"
4+
import "github.com/rkbalgi/libiso/crypto"
55
import (
66
"bytes"
77
"encoding/hex"
88
"fmt"
9-
"libiso/utils"
9+
"github.com/rkbalgi/libiso/utils"
1010
"reflect"
1111
"sync"
1212
//"os"

cmd/thales_hsm/thales_hsm.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4-
_ "libiso/hsm"
5-
"libiso/hsm/console"
4+
_ "github.com/rkbalgi/libiso/hsm"
5+
"github.com/rkbalgi/libiso/hsm/console"
66
"sync"
77
)
88

cmd/thales_hsm_client/thales_hsm_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"encoding/hex"
55
"fmt"
6-
"libiso/net"
6+
"github.com/rkbalgi/libiso/net"
77
"os"
88
"time"
99
)

crypto/mac/x99_mac.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package mac
55

66
import (
77
"encoding/hex"
8-
"libiso/crypto"
8+
"github.com/rkbalgi/libiso/crypto"
99
)
1010

1111
//generate a X9.9 MAC using a single length key

crypto/mac/x9x_mac_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package mac
22

33
import (
44
"bytes"
5-
"libiso/utils"
5+
"github.com/rkbalgi/libiso/utils"
66
"testing"
77
)
88

crypto/pin/crypto_pin.go

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,9 @@ package pin
66

77
import (
88
"bytes"
9-
"encoding/hex"
10-
_ "fmt"
11-
_ "log"
12-
_ "strconv"
13-
_ "strings"
14-
//"math"
159
"crypto/rand"
16-
_crypt "libiso/crypto"
17-
//"github.com/rkbalgi/crypto/pin"
10+
"encoding/hex"
11+
_crypt "github.com/rkbalgi/libiso/crypto"
1812
)
1913

2014
type PinBlocker interface {

hsm/console/console.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package console
33
import (
44
"bufio"
55
"fmt"
6-
"libiso/hsm"
6+
"github.com/rkbalgi/libiso/hsm"
77
//"io"
88
_ "flag"
99
"os"

0 commit comments

Comments
 (0)