* This serializes to a DER encoding of the ECPrivateKey type from section C.4 of SEC 1 * . The optional parameters and publicKey fields are * included. * * privkey must point to an output buffer of length at least CKey::PRIVATE_KEY_SIZE bytes. * privkeylen must initially be set to the size of the privkey buffer. Upon return it * will be set to the number of b
| 90 | * key32 must point to a 32-byte raw private key. |
| 91 | */ |
| 92 | static int ec_privkey_export_der(const secp256k1_context *ctx, unsigned char *privkey, size_t *privkeylen, const unsigned char *key32, int compressed) { |
| 93 | assert(*privkeylen >= CKey::PRIVATE_KEY_SIZE); |
| 94 | secp256k1_pubkey pubkey; |
| 95 | size_t pubkeylen = 0; |
| 96 | if (!secp256k1_ec_pubkey_create(ctx, &pubkey, key32)) { |
| 97 | *privkeylen = 0; |
| 98 | return 0; |
| 99 | } |
| 100 | if (compressed) { |
| 101 | static const unsigned char begin[] = { |
| 102 | 0x30,0x81,0xD3,0x02,0x01,0x01,0x04,0x20 |
| 103 | }; |
| 104 | static const unsigned char middle[] = { |
| 105 | 0xA0,0x81,0x85,0x30,0x81,0x82,0x02,0x01,0x01,0x30,0x2C,0x06,0x07,0x2A,0x86,0x48, |
| 106 | 0xCE,0x3D,0x01,0x01,0x02,0x21,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, |
| 107 | 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, |
| 108 | 0xFF,0xFF,0xFE,0xFF,0xFF,0xFC,0x2F,0x30,0x06,0x04,0x01,0x00,0x04,0x01,0x07,0x04, |
| 109 | 0x21,0x02,0x79,0xBE,0x66,0x7E,0xF9,0xDC,0xBB,0xAC,0x55,0xA0,0x62,0x95,0xCE,0x87, |
| 110 | 0x0B,0x07,0x02,0x9B,0xFC,0xDB,0x2D,0xCE,0x28,0xD9,0x59,0xF2,0x81,0x5B,0x16,0xF8, |
| 111 | 0x17,0x98,0x02,0x21,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, |
| 112 | 0xFF,0xFF,0xFF,0xFF,0xFE,0xBA,0xAE,0xDC,0xE6,0xAF,0x48,0xA0,0x3B,0xBF,0xD2,0x5E, |
| 113 | 0x8C,0xD0,0x36,0x41,0x41,0x02,0x01,0x01,0xA1,0x24,0x03,0x22,0x00 |
| 114 | }; |
| 115 | unsigned char *ptr = privkey; |
| 116 | memcpy(ptr, begin, sizeof(begin)); ptr += sizeof(begin); |
| 117 | memcpy(ptr, key32, 32); ptr += 32; |
| 118 | memcpy(ptr, middle, sizeof(middle)); ptr += sizeof(middle); |
| 119 | pubkeylen = CPubKey::COMPRESSED_PUBLIC_KEY_SIZE; |
| 120 | secp256k1_ec_pubkey_serialize(ctx, ptr, &pubkeylen, &pubkey, SECP256K1_EC_COMPRESSED); |
| 121 | ptr += pubkeylen; |
| 122 | *privkeylen = ptr - privkey; |
| 123 | assert(*privkeylen == CKey::COMPRESSED_PRIVATE_KEY_SIZE); |
| 124 | } else { |
| 125 | static const unsigned char begin[] = { |
| 126 | 0x30,0x82,0x01,0x13,0x02,0x01,0x01,0x04,0x20 |
| 127 | }; |
| 128 | static const unsigned char middle[] = { |
| 129 | 0xA0,0x81,0xA5,0x30,0x81,0xA2,0x02,0x01,0x01,0x30,0x2C,0x06,0x07,0x2A,0x86,0x48, |
| 130 | 0xCE,0x3D,0x01,0x01,0x02,0x21,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, |
| 131 | 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, |
| 132 | 0xFF,0xFF,0xFE,0xFF,0xFF,0xFC,0x2F,0x30,0x06,0x04,0x01,0x00,0x04,0x01,0x07,0x04, |
| 133 | 0x41,0x04,0x79,0xBE,0x66,0x7E,0xF9,0xDC,0xBB,0xAC,0x55,0xA0,0x62,0x95,0xCE,0x87, |
| 134 | 0x0B,0x07,0x02,0x9B,0xFC,0xDB,0x2D,0xCE,0x28,0xD9,0x59,0xF2,0x81,0x5B,0x16,0xF8, |
| 135 | 0x17,0x98,0x48,0x3A,0xDA,0x77,0x26,0xA3,0xC4,0x65,0x5D,0xA4,0xFB,0xFC,0x0E,0x11, |
| 136 | 0x08,0xA8,0xFD,0x17,0xB4,0x48,0xA6,0x85,0x54,0x19,0x9C,0x47,0xD0,0x8F,0xFB,0x10, |
| 137 | 0xD4,0xB8,0x02,0x21,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, |
| 138 | 0xFF,0xFF,0xFF,0xFF,0xFE,0xBA,0xAE,0xDC,0xE6,0xAF,0x48,0xA0,0x3B,0xBF,0xD2,0x5E, |
| 139 | 0x8C,0xD0,0x36,0x41,0x41,0x02,0x01,0x01,0xA1,0x44,0x03,0x42,0x00 |
| 140 | }; |
| 141 | unsigned char *ptr = privkey; |
| 142 | memcpy(ptr, begin, sizeof(begin)); ptr += sizeof(begin); |
| 143 | memcpy(ptr, key32, 32); ptr += 32; |
| 144 | memcpy(ptr, middle, sizeof(middle)); ptr += sizeof(middle); |
| 145 | pubkeylen = CPubKey::PUBLIC_KEY_SIZE; |
| 146 | secp256k1_ec_pubkey_serialize(ctx, ptr, &pubkeylen, &pubkey, SECP256K1_EC_UNCOMPRESSED); |
| 147 | ptr += pubkeylen; |
| 148 | *privkeylen = ptr - privkey; |
| 149 | assert(*privkeylen == CKey::PRIVATE_KEY_SIZE); |
no test coverage detected