-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not publish public keys extractable from ID (with tests)
License: MIT Signed-off-by: Justin Drake <drakefjustin@gmail.com>
- Loading branch information
1 parent
06c567d
commit cf5618c
Showing
2 changed files
with
127 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
package namesys | ||
|
||
import ( | ||
"context" | ||
"crypto/rand" | ||
"testing" | ||
"time" | ||
|
||
path "github.com/ipfs/go-ipfs/path" | ||
mockrouting "github.com/ipfs/go-ipfs/routing/mock" | ||
dshelp "github.com/ipfs/go-ipfs/thirdparty/ds-help" | ||
testutil "github.com/ipfs/go-ipfs/thirdparty/testutil" | ||
|
||
ds "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore" | ||
dssync "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore/sync" | ||
ma "gx/ipfs/QmXY77cVe7rVRQXZZQRioukUM7aRW3BTcAgJe12MCtb3Ji/go-multiaddr" | ||
peer "gx/ipfs/QmXYjuNuxVzXKJCfWasQk1RqkhVLDM9jtUKhqc2WPQmFSB/go-libp2p-peer" | ||
ci "gx/ipfs/QmaPbCnUMBohSGo3KnxEa2bHqyJVVeEEcwtqJAYxerieBo/go-libp2p-crypto" | ||
) | ||
|
||
type identity struct { | ||
testutil.PeerNetParams | ||
} | ||
|
||
func (p *identity) ID() peer.ID { | ||
return p.PeerNetParams.ID | ||
} | ||
|
||
func (p *identity) Address() ma.Multiaddr { | ||
return p.Addr | ||
} | ||
|
||
func (p *identity) PrivateKey() ci.PrivKey { | ||
return p.PrivKey | ||
} | ||
|
||
func (p *identity) PublicKey() ci.PubKey { | ||
return p.PubKey | ||
} | ||
|
||
func testNamekeyPublisher(t *testing.T, keyType int, expectedErr error, expectedExistence bool) { | ||
// Context | ||
ctx := context.Background() | ||
|
||
// Private key | ||
privKey, pubKey, err := ci.GenerateKeyPairWithReader(keyType, 2048, rand.Reader) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
// ID | ||
var id peer.ID | ||
switch keyType { | ||
case ci.Ed25519: | ||
id, err = peer.IDFromEd25519PublicKey(pubKey) | ||
default: | ||
id, err = peer.IDFromPublicKey(pubKey) | ||
} | ||
|
||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
// Value | ||
value := path.Path("ipfs/TESTING") | ||
|
||
// Seqnum | ||
seqnum := uint64(0) | ||
|
||
// Eol | ||
eol := time.Now().Add(24 * time.Hour) | ||
|
||
// Routing value store | ||
p := testutil.PeerNetParams{ | ||
ID: id, | ||
PrivKey: privKey, | ||
PubKey: pubKey, | ||
Addr: testutil.ZeroLocalTCPAddress, | ||
} | ||
|
||
dstore := dssync.MutexWrap(ds.NewMapDatastore()) | ||
serv := mockrouting.NewServer() | ||
r := serv.ClientWithDatastore(context.Background(), &identity{p}, dstore) | ||
|
||
err = PutRecordToRouting(ctx, privKey, value, seqnum, eol, r, id) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
// Check for namekey existence in value store | ||
namekey, _ := IpnsKeysForID(id) | ||
_, err = r.GetValue(ctx, namekey) | ||
if err != expectedErr { | ||
t.Fatal(err) | ||
} | ||
|
||
// Also check datastore for completeness | ||
key := dshelp.NewKeyFromBinary([]byte(namekey)) | ||
exists, err := dstore.Has(key) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
if exists != expectedExistence { | ||
t.Fatal("Unexpected key existence in datastore") | ||
} | ||
} | ||
|
||
func TestRSAPublisher(t *testing.T) { | ||
testNamekeyPublisher(t, ci.RSA, nil, true) | ||
} | ||
|
||
func TestEd22519Publisher(t *testing.T) { | ||
testNamekeyPublisher(t, ci.Ed25519, ds.ErrNotFound, false) | ||
} |