|
| 1 | +package security_test |
| 2 | + |
| 3 | +import ( |
| 4 | + "crypto/ed25519" |
| 5 | + "crypto/x509" |
| 6 | + "encoding/base64" |
| 7 | + "testing" |
| 8 | + "time" |
| 9 | + |
| 10 | + enc "github.com/named-data/ndnd/std/encoding" |
| 11 | + "github.com/named-data/ndnd/std/ndn" |
| 12 | + "github.com/named-data/ndnd/std/ndn/spec_2022" |
| 13 | + "github.com/named-data/ndnd/std/security" |
| 14 | + "github.com/named-data/ndnd/std/utils" |
| 15 | + "github.com/stretchr/testify/require" |
| 16 | +) |
| 17 | + |
| 18 | +func TestEddsaSignerBasic(t *testing.T) { |
| 19 | + utils.SetTestingT(t) |
| 20 | + |
| 21 | + keyLocatorName := utils.WithoutErr(enc.NameFromStr("/test/KEY/1")) |
| 22 | + edkeybits := ed25519.NewKeyFromSeed([]byte("01234567890123456789012345678901")) |
| 23 | + signer := security.NewEdSigner( |
| 24 | + false, false, 0, edkeybits, keyLocatorName, |
| 25 | + ) |
| 26 | + |
| 27 | + require.Equal(t, uint(ed25519.SignatureSize), signer.EstimateSize()) |
| 28 | + signInfo := utils.WithoutErr(signer.SigInfo()) |
| 29 | + require.Equal(t, 0, signInfo.KeyName.Compare(keyLocatorName)) |
| 30 | + require.Equal(t, ndn.SignatureEd25519, signInfo.Type) |
| 31 | + |
| 32 | + dataVal := enc.Wire{[]byte( |
| 33 | + "\x07\x14\x08\x05local\x08\x03ndn\x08\x06prefix" + |
| 34 | + "\x14\x03\x18\x01\x00")} |
| 35 | + sigValue := utils.WithoutErr(signer.ComputeSigValue(dataVal)) |
| 36 | + |
| 37 | + // For basic test, we use ed25519.Verify to verify the signature. |
| 38 | + require.True(t, ed25519.Verify(security.Ed25519DerivePubKey(edkeybits), dataVal.Join(), sigValue)) |
| 39 | +} |
| 40 | + |
| 41 | +func TestEddsaSignerCertificate(t *testing.T) { |
| 42 | + utils.SetTestingT(t) |
| 43 | + |
| 44 | + spec := spec_2022.Spec{} |
| 45 | + |
| 46 | + keyLocatorName := utils.WithoutErr(enc.NameFromStr("/test/KEY/1")) |
| 47 | + certName := utils.WithoutErr(enc.NameFromStr("/test/KEY/1/self/1")) |
| 48 | + edkeybits := ed25519.NewKeyFromSeed([]byte("01234567890123456789012345678901")) |
| 49 | + signer := security.NewEdSigner( |
| 50 | + false, false, 3600*time.Second, edkeybits, keyLocatorName, |
| 51 | + ) |
| 52 | + pubKey := security.Ed25519DerivePubKey(edkeybits) |
| 53 | + pubKeyBits := utils.WithoutErr(x509.MarshalPKIXPublicKey(pubKey)) |
| 54 | + |
| 55 | + cert := utils.WithoutErr(spec.MakeData(certName, &ndn.DataConfig{ |
| 56 | + ContentType: utils.IdPtr(ndn.ContentTypeKey), |
| 57 | + Freshness: utils.IdPtr(3600 * time.Second), |
| 58 | + }, enc.Wire{pubKeyBits}, signer)) |
| 59 | + |
| 60 | + data, covered, err := spec.ReadData(enc.NewWireReader(cert.Wire)) |
| 61 | + require.NoError(t, err) |
| 62 | + |
| 63 | + pubKeyParsedBits := data.Content().Join() |
| 64 | + pubKeyParsedUntyped := utils.WithoutErr(x509.ParsePKIXPublicKey(pubKeyParsedBits)) |
| 65 | + if pubKeyParsed := pubKeyParsedUntyped.(ed25519.PublicKey); pubKeyParsed != nil { |
| 66 | + require.True(t, security.EddsaValidate(covered, data.Signature(), pubKeyParsed)) |
| 67 | + } else { |
| 68 | + require.Fail(t, "unexpected public key type") |
| 69 | + } |
| 70 | +} |
| 71 | + |
| 72 | +// TestEddsaSignerCertificate2 tests the validator using a given certificate for interoperability. |
| 73 | +func TestEddsaSignerCertificate2(t *testing.T) { |
| 74 | + utils.SetTestingT(t) |
| 75 | + |
| 76 | + const TestCert = ` |
| 77 | +Bv0BCgc1CAxFZDI1NTE5LWRlbW8IA0tFWQgQNWE2MTVkYjdjZjA2MDNiNQgEc2Vs |
| 78 | +ZjYIAAABgQD8AY0UCRgBAhkEADbugBUsMCowBQYDK2VwAyEAQxUZBL+3I3D4oDIJ |
| 79 | +tJvuCTguHM7AUbhlhA/wu8ZhrkwWVhsBBRwnByUIDEVkMjU1MTktZGVtbwgDS0VZ |
| 80 | +CBA1YTYxNWRiN2NmMDYwM2I1/QD9Jv0A/g8xOTcwMDEwMVQwMDAwMDD9AP8PMjAy |
| 81 | +MjA1MjZUMTUyODQ0F0DAAWCZzxQSCAV0tluFDry5aT1b+EgoYgT1JKxbKVb/tINx |
| 82 | +M43PFy/2hDe8j61PuYD9tCah0TWapPwfXWi3fygA` |
| 83 | + spec := spec_2022.Spec{} |
| 84 | + |
| 85 | + certWire := utils.WithoutErr(base64.RawStdEncoding.DecodeString(TestCert)) |
| 86 | + certData, covered, err := spec.ReadData(enc.NewBufferReader(certWire)) |
| 87 | + require.NoError(t, err) |
| 88 | + |
| 89 | + pubKeyBits := utils.WithoutErr(x509.ParsePKIXPublicKey(certData.Content().Join())) |
| 90 | + pubKey := pubKeyBits.(ed25519.PublicKey) |
| 91 | + if pubKey == nil { |
| 92 | + require.Fail(t, "unexpected public key type") |
| 93 | + } |
| 94 | + require.True(t, security.EddsaValidate(covered, certData.Signature(), pubKey)) |
| 95 | +} |
0 commit comments