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
fbc98312
Commit
fbc98312
authored
Dec 19, 2017
by
Koen van Ingen
Browse files
Rename 'credentials/irmago' to 'privacybydesign/irmago'
This prevents the 'use of internal package not allowed' go compile error
parent
1e5db54d
Changes
17
Hide whitespace changes
Inline
Side-by-side
credinfo.go
View file @
fbc98312
...
...
@@ -5,7 +5,7 @@ import (
"math/big"
"strings"
"github.com/
credentials
/irmago/internal/fs"
"github.com/
privacybydesign
/irmago/internal/fs"
)
// CredentialInfo contains all information of an IRMA credential.
...
...
irmaclient/client.go
View file @
fbc98312
...
...
@@ -7,8 +7,8 @@ import (
"time"
"github.com/credentials/go-go-gadget-paillier"
"github.com/
credentials
/irmago"
"github.com/
credentials
/irmago/internal/fs"
"github.com/
privacybydesign
/irmago"
"github.com/
privacybydesign
/irmago/internal/fs"
"github.com/getsentry/raven-go"
"github.com/go-errors/errors"
"github.com/mhe/gabi"
...
...
irmaclient/credential.go
View file @
fbc98312
package
irmaclient
import
(
"github.com/
credentials
/irmago"
"github.com/
privacybydesign
/irmago"
"github.com/mhe/gabi"
)
...
...
irmaclient/irmaclient_test.go
View file @
fbc98312
...
...
@@ -9,8 +9,8 @@ import (
"encoding/json"
"github.com/
credentials
/irmago"
"github.com/
credentials
/irmago/internal/fs"
"github.com/
privacybydesign
/irmago"
"github.com/
privacybydesign
/irmago/internal/fs"
"github.com/mhe/gabi"
"github.com/stretchr/testify/require"
)
...
...
irmaclient/keyshare.go
View file @
fbc98312
...
...
@@ -7,7 +7,7 @@ import (
"math/big"
"strconv"
"github.com/
credentials
/irmago"
"github.com/
privacybydesign
/irmago"
"github.com/go-errors/errors"
"github.com/mhe/gabi"
)
...
...
irmaclient/logs.go
View file @
fbc98312
...
...
@@ -4,7 +4,7 @@ import (
"encoding/json"
"time"
"github.com/
credentials
/irmago"
"github.com/
privacybydesign
/irmago"
"github.com/go-errors/errors"
"github.com/mhe/gabi"
)
...
...
irmaclient/session.go
View file @
fbc98312
...
...
@@ -8,7 +8,7 @@ import (
"math/big"
"github.com/
credentials
/irmago"
"github.com/
privacybydesign
/irmago"
"github.com/go-errors/errors"
"github.com/mhe/gabi"
)
...
...
irmaclient/session_test.go
View file @
fbc98312
...
...
@@ -10,7 +10,7 @@ import (
"fmt"
"testing"
"github.com/
credentials
/irmago"
"github.com/
privacybydesign
/irmago"
"github.com/go-errors/errors"
"github.com/stretchr/testify/require"
)
...
...
irmaclient/storage.go
View file @
fbc98312
...
...
@@ -5,8 +5,8 @@ import (
"io/ioutil"
"os"
"github.com/
credentials
/irmago"
"github.com/
credentials
/irmago/internal/fs"
"github.com/
privacybydesign
/irmago"
"github.com/
privacybydesign
/irmago/internal/fs"
"github.com/mhe/gabi"
)
...
...
irmaclient/updates.go
View file @
fbc98312
...
...
@@ -8,8 +8,8 @@ import (
"math/big"
"time"
"github.com/
credentials
/irmago"
"github.com/
credentials
/irmago/internal/fs"
"github.com/
privacybydesign
/irmago"
"github.com/
privacybydesign
/irmago/internal/fs"
"github.com/go-errors/errors"
"github.com/mhe/gabi"
)
...
...
irmaconfig.go
View file @
fbc98312
...
...
@@ -26,7 +26,7 @@ import (
"encoding/pem"
"math/big"
"github.com/
credentials
/irmago/internal/fs"
"github.com/
privacybydesign
/irmago/internal/fs"
"github.com/go-errors/errors"
"github.com/mhe/gabi"
)
...
...
irmameta/irmameta.go
View file @
fbc98312
...
...
@@ -9,7 +9,7 @@ import (
"encoding/json"
"github.com/
credentials
/irmago"
"github.com/
privacybydesign
/irmago"
"github.com/mhe/gabi"
)
...
...
schememgr/cmd/keygen.go
View file @
fbc98312
...
...
@@ -12,7 +12,7 @@ import (
"fmt"
"github.com/
credentials
/irmago/internal/fs"
"github.com/
privacybydesign
/irmago/internal/fs"
"github.com/go-errors/errors"
"github.com/spf13/cobra"
)
...
...
schememgr/cmd/sign.go
View file @
fbc98312
...
...
@@ -15,8 +15,8 @@ import (
"path/filepath"
"strings"
"github.com/
credentials
/irmago"
"github.com/
credentials
/irmago/internal/fs"
"github.com/
privacybydesign
/irmago"
"github.com/
privacybydesign
/irmago/internal/fs"
"github.com/spf13/cobra"
)
...
...
schememgr/cmd/verify.go
View file @
fbc98312
...
...
@@ -5,7 +5,7 @@ import (
"fmt"
"github.com/
credentials
/irmago"
"github.com/
privacybydesign
/irmago"
"github.com/go-errors/errors"
"github.com/spf13/cobra"
)
...
...
schememgr/main.go
View file @
fbc98312
package
main
import
"github.com/
credentials
/irmago/schememgr/cmd"
import
"github.com/
privacybydesign
/irmago/schememgr/cmd"
func
main
()
{
cmd
.
Execute
()
...
...
transport.go
View file @
fbc98312
...
...
@@ -11,7 +11,7 @@ import (
"strings"
"time"
"github.com/
credentials
/irmago/internal/fs"
"github.com/
privacybydesign
/irmago/internal/fs"
)
// HTTPTransport sends and receives JSON messages to a HTTP server.
...
...
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