Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
IRMA
Github mirrors
irmago
Commits
d23f3ebd
Commit
d23f3ebd
authored
Dec 17, 2018
by
Sietse Ringers
Browse files
Move gabi repository into the privacybydesign organization
Co-authored-by:
Confiks
<
confiks@scriptbase.org
>
parent
1670c2fd
Changes
20
Show whitespace changes
Inline
Side-by-side
Gopkg.lock
View file @
d23f3ebd
...
@@ -137,19 +137,6 @@
...
@@ -137,19 +137,6 @@
revision = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75"
revision = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75"
version = "v1.0"
version = "v1.0"
[[projects]]
branch = "refactor"
digest = "1:f330608439967f238794d78efc696e1cb0f8b205e12e5aafafeed3182b13892e"
name = "github.com/mhe/gabi"
packages = [
".",
"big",
"safeprime",
]
pruneopts = "UT"
revision = "42c4d48e3f35aec81c2ca2692246ad0f30557684"
source = "github.com/privacybydesign/gabi"
[[projects]]
[[projects]]
branch = "master"
branch = "master"
digest = "1:16886567e49201f2bb97fc738dfe8097494764135a83b533fc020fcefe37d8fe"
digest = "1:16886567e49201f2bb97fc738dfe8097494764135a83b533fc020fcefe37d8fe"
...
@@ -174,6 +161,18 @@
...
@@ -174,6 +161,18 @@
revision = "792786c7400a136282c1664665ae0a8db921c6c2"
revision = "792786c7400a136282c1664665ae0a8db921c6c2"
version = "v1.0.0"
version = "v1.0.0"
[[projects]]
branch = "master"
digest = "1:62ffeeea646880da7f3e06788621164efce11f7aadeb6d1b2792e4062055aee5"
name = "github.com/privacybydesign/gabi"
packages = [
".",
"big",
"safeprime",
]
pruneopts = "UT"
revision = "279fe7149011e59b7c91ce574ea390ad1562565f"
[[projects]]
[[projects]]
branch = "master"
branch = "master"
digest = "1:abab2c85a12689a4218964335aa990ff33b4f3c7ba48e3283861c4714d2e93b1"
digest = "1:abab2c85a12689a4218964335aa990ff33b4f3c7ba48e3283861c4714d2e93b1"
...
@@ -262,9 +261,9 @@
...
@@ -262,9 +261,9 @@
"github.com/getsentry/raven-go",
"github.com/getsentry/raven-go",
"github.com/go-errors/errors",
"github.com/go-errors/errors",
"github.com/hashicorp/go-retryablehttp",
"github.com/hashicorp/go-retryablehttp",
"github.com/mhe/gabi",
"github.com/mhe/gabi/big",
"github.com/pkg/errors",
"github.com/pkg/errors",
"github.com/privacybydesign/gabi",
"github.com/privacybydesign/gabi/big",
"github.com/spf13/cobra",
"github.com/spf13/cobra",
"github.com/stretchr/testify/require",
"github.com/stretchr/testify/require",
]
]
...
...
Gopkg.toml
View file @
d23f3ebd
...
@@ -38,9 +38,8 @@
...
@@ -38,9 +38,8 @@
version
=
"1.0.0"
version
=
"1.0.0"
[[constraint]]
[[constraint]]
branch
=
"refactor"
branch
=
"master"
name
=
"github.com/mhe/gabi"
name
=
"github.com/privacybydesign/gabi"
source
=
"github.com/privacybydesign/gabi"
[[constraint]]
[[constraint]]
name
=
"github.com/pkg/errors"
name
=
"github.com/pkg/errors"
...
...
attributes.go
View file @
d23f3ebd
...
@@ -8,8 +8,8 @@ import (
...
@@ -8,8 +8,8 @@ import (
"time"
"time"
"github.com/go-errors/errors"
"github.com/go-errors/errors"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
)
)
const
(
const
(
...
...
credinfo.go
View file @
d23f3ebd
...
@@ -5,7 +5,7 @@ import (
...
@@ -5,7 +5,7 @@ import (
"strings"
"strings"
"time"
"time"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
)
)
// CredentialInfo contains all information of an IRMA credential.
// CredentialInfo contains all information of an IRMA credential.
...
...
internal/sessiontest/manual_session_test.go
View file @
d23f3ebd
...
@@ -4,8 +4,8 @@ import (
...
@@ -4,8 +4,8 @@ import (
"encoding/json"
"encoding/json"
"testing"
"testing"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago/internal/test"
"github.com/privacybydesign/irmago/internal/test"
"github.com/privacybydesign/irmago/irmaclient"
"github.com/privacybydesign/irmago/irmaclient"
...
...
irma_signature.go
View file @
d23f3ebd
...
@@ -7,8 +7,8 @@ import (
...
@@ -7,8 +7,8 @@ import (
gobig
"math/big"
gobig
"math/big"
"github.com/bwesterb/go-atum"
"github.com/bwesterb/go-atum"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
)
)
// SignedMessage is a message signed with an attribute-based signature
// SignedMessage is a message signed with an attribute-based signature
...
...
irmaclient/client.go
View file @
d23f3ebd
...
@@ -9,8 +9,8 @@ import (
...
@@ -9,8 +9,8 @@ import (
"github.com/credentials/go-go-gadget-paillier"
"github.com/credentials/go-go-gadget-paillier"
raven
"github.com/getsentry/raven-go"
raven
"github.com/getsentry/raven-go"
"github.com/go-errors/errors"
"github.com/go-errors/errors"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago/internal/fs"
"github.com/privacybydesign/irmago/internal/fs"
)
)
...
...
irmaclient/credential.go
View file @
d23f3ebd
package
irmaclient
package
irmaclient
import
(
import
(
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago"
)
)
...
...
irmaclient/irmaclient_test.go
View file @
d23f3ebd
...
@@ -7,8 +7,8 @@ import (
...
@@ -7,8 +7,8 @@ import (
"os"
"os"
"testing"
"testing"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago/internal/fs"
"github.com/privacybydesign/irmago/internal/fs"
"github.com/privacybydesign/irmago/internal/test"
"github.com/privacybydesign/irmago/internal/test"
...
...
irmaclient/keyshare.go
View file @
d23f3ebd
...
@@ -11,8 +11,8 @@ import (
...
@@ -11,8 +11,8 @@ import (
"time"
"time"
"github.com/go-errors/errors"
"github.com/go-errors/errors"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago"
)
)
...
...
irmaclient/session.go
View file @
d23f3ebd
...
@@ -7,8 +7,8 @@ import (
...
@@ -7,8 +7,8 @@ import (
"strings"
"strings"
"github.com/go-errors/errors"
"github.com/go-errors/errors"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago"
)
)
...
...
irmaclient/storage.go
View file @
d23f3ebd
...
@@ -5,7 +5,7 @@ import (
...
@@ -5,7 +5,7 @@ import (
"io/ioutil"
"io/ioutil"
"os"
"os"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago/internal/fs"
"github.com/privacybydesign/irmago/internal/fs"
)
)
...
...
irmaclient/updates.go
View file @
d23f3ebd
...
@@ -6,8 +6,8 @@ import (
...
@@ -6,8 +6,8 @@ import (
"time"
"time"
"github.com/go-errors/errors"
"github.com/go-errors/errors"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago/internal/fs"
"github.com/privacybydesign/irmago/internal/fs"
)
)
...
...
irmaconfig.go
View file @
d23f3ebd
...
@@ -31,8 +31,8 @@ import (
...
@@ -31,8 +31,8 @@ import (
gobig
"math/big"
gobig
"math/big"
"github.com/go-errors/errors"
"github.com/go-errors/errors"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago/internal/fs"
"github.com/privacybydesign/irmago/internal/fs"
)
)
...
...
irmago_test.go
View file @
d23f3ebd
...
@@ -6,7 +6,7 @@ import (
...
@@ -6,7 +6,7 @@ import (
"testing"
"testing"
"time"
"time"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago/internal/fs"
"github.com/privacybydesign/irmago/internal/fs"
"github.com/privacybydesign/irmago/internal/test"
"github.com/privacybydesign/irmago/internal/test"
...
...
irmameta/irmameta.go
View file @
d23f3ebd
...
@@ -10,8 +10,8 @@ import (
...
@@ -10,8 +10,8 @@ import (
"encoding/json"
"encoding/json"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago"
)
)
...
...
messages.go
View file @
d23f3ebd
...
@@ -12,7 +12,7 @@ import (
...
@@ -12,7 +12,7 @@ import (
"fmt"
"fmt"
"github.com/go-errors/errors"
"github.com/go-errors/errors"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
)
)
// Status encodes the status of an IRMA session (e.g., connected).
// Status encodes the status of an IRMA session (e.g., connected).
...
...
requests.go
View file @
d23f3ebd
...
@@ -8,7 +8,7 @@ import (
...
@@ -8,7 +8,7 @@ import (
"github.com/bwesterb/go-atum"
"github.com/bwesterb/go-atum"
"github.com/go-errors/errors"
"github.com/go-errors/errors"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
"github.com/privacybydesign/irmago/internal/fs"
"github.com/privacybydesign/irmago/internal/fs"
)
)
...
...
timestamp.go
View file @
d23f3ebd
...
@@ -7,8 +7,8 @@ import (
...
@@ -7,8 +7,8 @@ import (
gobig
"math/big"
gobig
"math/big"
"github.com/bwesterb/go-atum"
"github.com/bwesterb/go-atum"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
)
)
// GetTimestamp GETs a signed timestamp (a signature over the current time and the parameters)
// GetTimestamp GETs a signed timestamp (a signature over the current time and the parameters)
...
...
verify.go
View file @
d23f3ebd
...
@@ -4,8 +4,8 @@ import (
...
@@ -4,8 +4,8 @@ import (
"time"
"time"
"github.com/go-errors/errors"
"github.com/go-errors/errors"
"github.com/
mhe
/gabi"
"github.com/
privacybydesign
/gabi"
"github.com/
mhe
/gabi/big"
"github.com/
privacybydesign
/gabi/big"
)
)
// ProofStatus is the status of the complete proof
// ProofStatus is the status of the complete proof
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment