Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Jan 11, 2020
1 parent a06f490 commit 0d2c78d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion examples/client_server_kem/client/client_kem.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ import (
"bufio"
"errors"
"fmt"
"github.com/open-quantum-safe/liboqs-go/oqs"
"io"
"log"
"net"
"os"

"github.com/open-quantum-safe/liboqs-go/oqs"
)

func main() {
Expand Down
3 changes: 2 additions & 1 deletion examples/client_server_kem/server/server_kem.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ package main
import (
"errors"
"fmt"
"github.com/open-quantum-safe/liboqs-go/oqs"
"io"
"log"
"net"
"os"
"sync"

"github.com/open-quantum-safe/liboqs-go/oqs"
)

// Counter is a thread-safe counter.
Expand Down
3 changes: 2 additions & 1 deletion examples/kem/kem.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ package main
import (
"bytes"
"fmt"
"github.com/open-quantum-safe/liboqs-go/oqs"
"log"

"github.com/open-quantum-safe/liboqs-go/oqs"
)

func main() {
Expand Down
3 changes: 2 additions & 1 deletion examples/rand/rand.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ package main

import (
"fmt"
oqsrand "github.com/open-quantum-safe/liboqs-go/oqs/rand" // RNG support
"log"

oqsrand "github.com/open-quantum-safe/liboqs-go/oqs/rand" // RNG support
)

// CustomRNG provides a (trivial) custom random number generator; the memory is
Expand Down
3 changes: 2 additions & 1 deletion examples/sig/sig.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ package main

import (
"fmt"
"github.com/open-quantum-safe/liboqs-go/oqs"
"log"

"github.com/open-quantum-safe/liboqs-go/oqs"
)

func main() {
Expand Down
3 changes: 2 additions & 1 deletion oqstests/kem_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ package oqstests
import (
"bytes"
"fmt"
"github.com/open-quantum-safe/liboqs-go/oqs"
"sync"
"testing"

"github.com/open-quantum-safe/liboqs-go/oqs"
)

// wgKEM groups goroutines and blocks the caller until all goroutines finish.
Expand Down
3 changes: 2 additions & 1 deletion oqstests/sig_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package oqstests

import (
"fmt"
"github.com/open-quantum-safe/liboqs-go/oqs"
"sync"
"testing"

"github.com/open-quantum-safe/liboqs-go/oqs"
)

// wgSig groups goroutines and blocks the caller until all goroutines finish.
Expand Down

0 comments on commit 0d2c78d

Please sign in to comment.