Skip to content

Commit b59b08f

Browse files
author
vanderbr
committed
uppercase
1 parent 1d88072 commit b59b08f

File tree

342 files changed

+514
-517
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

342 files changed

+514
-517
lines changed

abe/cpabe/tkn20/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"log"
88
"strconv"
99

10-
cpabe "github.com/reallymelabs/circl/abe/cpabe/tkn20"
10+
cpabe "github.com/ReallyMeLabs/circl/abe/cpabe/tkn20"
1111
)
1212

1313
func checkPolicy(in map[string][]string) bool {

abe/cpabe/tkn20/gen_testdata.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"os"
1111
"path/filepath"
1212

13-
cpabe "github.com/reallymelabs/circl/abe/cpabe/tkn20"
13+
cpabe "github.com/ReallyMeLabs/circl/abe/cpabe/tkn20"
1414
)
1515

1616
func writeToFile(name string, data []byte) {

abe/cpabe/tkn20/internal/dsl/ast.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package dsl
33
import (
44
"fmt"
55

6-
"github.com/reallymelabs/circl/abe/cpabe/tkn20/internal/tkn"
6+
"github.com/ReallyMeLabs/circl/abe/cpabe/tkn20/internal/tkn"
77
)
88

99
var operators = map[string]int{

abe/cpabe/tkn20/internal/dsl/dsl.go

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

3-
import "github.com/reallymelabs/circl/abe/cpabe/tkn20/internal/tkn"
3+
import "github.com/ReallyMeLabs/circl/abe/cpabe/tkn20/internal/tkn"
44

55
var AttrHashKey = []byte("attribute value hashing")
66

abe/cpabe/tkn20/internal/dsl/dsl_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"errors"
55
"testing"
66

7-
"github.com/reallymelabs/circl/abe/cpabe/tkn20/internal/dsl"
8-
"github.com/reallymelabs/circl/abe/cpabe/tkn20/internal/tkn"
7+
"github.com/ReallyMeLabs/circl/abe/cpabe/tkn20/internal/dsl"
8+
"github.com/ReallyMeLabs/circl/abe/cpabe/tkn20/internal/tkn"
99
)
1010

1111
var testCases = []struct {

abe/cpabe/tkn20/internal/tkn/bk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"io"
77

8-
pairing "github.com/reallymelabs/circl/ecc/bls12381"
8+
pairing "github.com/ReallyMeLabs/circl/ecc/bls12381"
99
"golang.org/x/crypto/blake2b"
1010
)
1111

abe/cpabe/tkn20/internal/tkn/matrixG1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"io"
77

8-
pairing "github.com/reallymelabs/circl/ecc/bls12381"
8+
pairing "github.com/ReallyMeLabs/circl/ecc/bls12381"
99
)
1010

1111
// matrixG1 represents a matrix of G1 elements. They are stored in row-major order.

abe/cpabe/tkn20/internal/tkn/matrixG2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"io"
77

8-
pairing "github.com/reallymelabs/circl/ecc/bls12381"
8+
pairing "github.com/ReallyMeLabs/circl/ecc/bls12381"
99
)
1010

1111
// matrixG2 represents a matrix of G2 elements. They are stored in row-major order.

abe/cpabe/tkn20/internal/tkn/matrixGT.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"io"
77

8-
pairing "github.com/reallymelabs/circl/ecc/bls12381"
8+
pairing "github.com/ReallyMeLabs/circl/ecc/bls12381"
99
)
1010

1111
// matrixGT represents a matrix of GT elements. They are stored in row-major order.

abe/cpabe/tkn20/internal/tkn/matrixGT_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"crypto/rand"
55
"testing"
66

7-
pairing "github.com/reallymelabs/circl/ecc/bls12381"
7+
pairing "github.com/ReallyMeLabs/circl/ecc/bls12381"
88
)
99

1010
func TestRightMultLinearityGT(t *testing.T) {

0 commit comments

Comments
 (0)