blob: cc15882d935a27e59528d8bb189a99194c77ef35 [file] [log] [blame]
Jeff Thompson47c93cf2013-08-09 00:38:48 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
6#ifndef NDN_KEY_CHAIN_HPP
Jeff Thompson2d27e2f2013-08-09 12:55:00 -07007#define NDN_KEY_CHAIN_HPP
Jeff Thompson47c93cf2013-08-09 00:38:48 -07008
Jeff Thompson3392fd62013-08-09 12:20:04 -07009#include "data.hpp"
Jeff Thompson47c93cf2013-08-09 00:38:48 -070010
11namespace ndn {
12
13class KeyChain {
14public:
15 /**
Jeff Thompson3c73da42013-08-12 11:19:05 -070016 * 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 Thompsonade5b1e2013-08-09 12:16:45 -070018 * Note: the caller must make sure the timestamp is correct, for example with
19 * data.getSignedInfo().setTimestampMilliseconds(time(NULL) * 1000.0).
Jeff Thompson3c73da42013-08-12 11:19:05 -070020 * @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.
Jeff Thompson8efe5ad2013-08-20 17:36:38 -070025 * @param wireFormat The WireFormat for calling encodeData.
Jeff Thompson3c73da42013-08-12 11:19:05 -070026 */
27 static void sign
28 (Data &data, const unsigned char *publicKeyDer, unsigned int publicKeyDerLength,
Jeff Thompson8efe5ad2013-08-20 17:36:38 -070029 const unsigned char *privateKeyDer, unsigned int privateKeyDerLength, WireFormat &wireFormat);
Jeff Thompson3c73da42013-08-12 11:19:05 -070030
31 /**
32 * Call sign with the default public and private keys.
33 * @param data
Jeff Thompson8efe5ad2013-08-20 17:36:38 -070034 * @param wireFormat The WireFormat for calling encodeData.
35 */
36 static void defaultSign(Data &data, WireFormat &wireFormat);
37
38 /**
39 * Call sign with the default public and private keys. For wireFormat, use WireFormat::getDefaultWireFormat().
40 * @param data
Jeff Thompson47c93cf2013-08-09 00:38:48 -070041 */
42 static void defaultSign(Data &data);
Jeff Thompson1e90d8c2013-08-12 16:09:25 -070043
44 /**
45 * Use the WireFormat to decode the input as a Data packet and use the public key in the key locator to
46 * verify the signature.
47 * This does just uses the public key without checking whether it is certified.
48 * @param input A pointer to the input buffer to decode.
49 * @param inputLength The number of bytes in input.
50 * @param wireFormat The WireFormat for calling decodeData.
51 * @return true if the public key in the Data object verifies the object, false if not or if the Data object
52 * doesn't have a public key.
53 */
54 static bool selfVerifyData(const unsigned char *input, unsigned int inputLength, WireFormat &wireFormat);
55
56 static bool selfVerifyData(const unsigned char *input, unsigned int inputLength)
57 {
58 return selfVerifyData(input, inputLength, *WireFormat::getDefaultWireFormat());
59 }
Jeff Thompson47c93cf2013-08-09 00:38:48 -070060};
61
62}
63
64#endif