Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @author: Jeff Thompson |
| 3 | * See COPYING for copyright and distribution information. |
| 4 | */ |
| 5 | |
| 6 | #ifndef NDN_KEY_CHAIN_HPP |
Jeff Thompson | 2d27e2f | 2013-08-09 12:55:00 -0700 | [diff] [blame] | 7 | #define NDN_KEY_CHAIN_HPP |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 8 | |
Jeff Thompson | 3392fd6 | 2013-08-09 12:20:04 -0700 | [diff] [blame] | 9 | #include "data.hpp" |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 10 | |
| 11 | namespace ndn { |
| 12 | |
| 13 | class KeyChain { |
| 14 | public: |
| 15 | /** |
Jeff Thompson | 3c73da4 | 2013-08-12 11:19:05 -0700 | [diff] [blame] | 16 | * In data, set the signed info publisher public key digest and key locator key to the public key and set the |
| 17 | * signature using the private key. |
Jeff Thompson | ade5b1e | 2013-08-09 12:16:45 -0700 | [diff] [blame] | 18 | * Note: the caller must make sure the timestamp is correct, for example with |
| 19 | * data.getSignedInfo().setTimestampMilliseconds(time(NULL) * 1000.0). |
Jeff Thompson | 3c73da4 | 2013-08-12 11:19:05 -0700 | [diff] [blame] | 20 | * @param data The Data object to sign and set the key and signature. |
| 21 | * @param publicKeyDer A pointer to a buffer with the DER-encoded public key. |
| 22 | * @param publicKeyDerLength The number of bytes in publicKeyDer. |
| 23 | * @param privateKeyDer A pointer to a buffer with the DER-encoded private key. |
| 24 | * @param privateKeyDerLength The number of bytes in privateKeyDer. |
| 25 | */ |
| 26 | static void sign |
| 27 | (Data &data, const unsigned char *publicKeyDer, unsigned int publicKeyDerLength, |
| 28 | const unsigned char *privateKeyDer, unsigned int privateKeyDerLength); |
| 29 | |
| 30 | /** |
| 31 | * Call sign with the default public and private keys. |
| 32 | * @param data |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 33 | */ |
| 34 | static void defaultSign(Data &data); |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | } |
| 38 | |
| 39 | #endif |