Add mynewt testplan
Signed-off-by: Fabio Utzig <utzig@apache.org>
diff --git a/testplan/mynewt/keys/ec/src/keys.c b/testplan/mynewt/keys/ec/src/keys.c
new file mode 100644
index 0000000..81505eb
--- /dev/null
+++ b/testplan/mynewt/keys/ec/src/keys.c
@@ -0,0 +1,18 @@
+#include <bootutil/sign_key.h>
+static unsigned char key[] = {
+ 0x30, 0x4e, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02,
+ 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x21, 0x03, 0x3a, 0x00, 0x04,
+ 0xa0, 0x8c, 0x5a, 0xd6, 0x98, 0x20, 0x1a, 0xd5, 0xb9, 0xc4, 0xfd, 0x7f,
+ 0xa5, 0xd3, 0x08, 0xca, 0x00, 0x91, 0x5e, 0xc6, 0x92, 0x49, 0xce, 0x18,
+ 0xc5, 0x64, 0x17, 0xed, 0xbf, 0x63, 0xd0, 0xcd, 0xb8, 0xf7, 0xff, 0x29,
+ 0x25, 0x35, 0x5a, 0x7a, 0x20, 0x30, 0xc9, 0x26, 0x95, 0xb2, 0x57, 0xd1,
+ 0x46, 0x0d, 0x69, 0x18, 0x13, 0xc9, 0x7d, 0xb3
+};
+static unsigned int key_len = 80;
+const struct bootutil_key bootutil_keys[] = {
+ [0] = {
+ .key = key,
+ .len = &key_len,
+ },
+};
+const int bootutil_key_cnt = 1;