You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

82 line
3.3 KiB

  1. /* Copyright (c) 2015, Google Inc.
  2. *
  3. * Permission to use, copy, modify, and/or distribute this software for any
  4. * purpose with or without fee is hereby granted, provided that the above
  5. * copyright notice and this permission notice appear in all copies.
  6. *
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  10. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  12. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  13. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
  14. #include <stdint.h>
  15. #include <string.h>
  16. #include <gtest/gtest.h>
  17. #include <openssl/curve25519.h>
  18. #include "../internal.h"
  19. #include "../test/file_test.h"
  20. #include "../test/test_util.h"
  21. TEST(Ed25519Test, TestVectors) {
  22. FileTestGTest("crypto/curve25519/ed25519_tests.txt", [](FileTest *t) {
  23. std::vector<uint8_t> private_key, public_key, message, expected_signature;
  24. ASSERT_TRUE(t->GetBytes(&private_key, "PRIV"));
  25. ASSERT_EQ(64u, private_key.size());
  26. ASSERT_TRUE(t->GetBytes(&public_key, "PUB"));
  27. ASSERT_EQ(32u, public_key.size());
  28. ASSERT_TRUE(t->GetBytes(&message, "MESSAGE"));
  29. ASSERT_TRUE(t->GetBytes(&expected_signature, "SIG"));
  30. ASSERT_EQ(64u, expected_signature.size());
  31. uint8_t signature[64];
  32. ASSERT_TRUE(ED25519_sign(signature, message.data(), message.size(),
  33. private_key.data()));
  34. EXPECT_EQ(Bytes(expected_signature), Bytes(signature));
  35. EXPECT_TRUE(ED25519_verify(message.data(), message.size(), signature,
  36. public_key.data()));
  37. });
  38. }
  39. TEST(Ed25519Test, Malleability) {
  40. // https://tools.ietf.org/html/rfc8032#section-5.1.7 adds an additional test
  41. // that s be in [0, order). This prevents someone from adding a multiple of
  42. // order to s and obtaining a second valid signature for the same message.
  43. static const uint8_t kMsg[] = {0x54, 0x65, 0x73, 0x74};
  44. static const uint8_t kSig[] = {
  45. 0x7c, 0x38, 0xe0, 0x26, 0xf2, 0x9e, 0x14, 0xaa, 0xbd, 0x05, 0x9a,
  46. 0x0f, 0x2d, 0xb8, 0xb0, 0xcd, 0x78, 0x30, 0x40, 0x60, 0x9a, 0x8b,
  47. 0xe6, 0x84, 0xdb, 0x12, 0xf8, 0x2a, 0x27, 0x77, 0x4a, 0xb0, 0x67,
  48. 0x65, 0x4b, 0xce, 0x38, 0x32, 0xc2, 0xd7, 0x6f, 0x8f, 0x6f, 0x5d,
  49. 0xaf, 0xc0, 0x8d, 0x93, 0x39, 0xd4, 0xee, 0xf6, 0x76, 0x57, 0x33,
  50. 0x36, 0xa5, 0xc5, 0x1e, 0xb6, 0xf9, 0x46, 0xb3, 0x1d,
  51. };
  52. static const uint8_t kPub[] = {
  53. 0x7d, 0x4d, 0x0e, 0x7f, 0x61, 0x53, 0xa6, 0x9b, 0x62, 0x42, 0xb5,
  54. 0x22, 0xab, 0xbe, 0xe6, 0x85, 0xfd, 0xa4, 0x42, 0x0f, 0x88, 0x34,
  55. 0xb1, 0x08, 0xc3, 0xbd, 0xae, 0x36, 0x9e, 0xf5, 0x49, 0xfa,
  56. };
  57. EXPECT_FALSE(ED25519_verify(kMsg, sizeof(kMsg), kSig, kPub));
  58. }
  59. TEST(Ed25519Test, KeypairFromSeed) {
  60. uint8_t public_key1[32], private_key1[64];
  61. ED25519_keypair(public_key1, private_key1);
  62. uint8_t seed[32];
  63. OPENSSL_memcpy(seed, private_key1, sizeof(seed));
  64. uint8_t public_key2[32], private_key2[64];
  65. ED25519_keypair_from_seed(public_key2, private_key2, seed);
  66. EXPECT_EQ(Bytes(public_key1), Bytes(public_key2));
  67. EXPECT_EQ(Bytes(private_key1), Bytes(private_key2));
  68. }