blob: 297e490cc5364684634e777cdd0015b008c33332 [file] [log] [blame]
Jeff Thompson47c93cf2013-08-09 00:38:48 -07001/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07002 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson47c93cf2013-08-09 00:38:48 -07004 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NDN_KEY_CHAIN_HPP
Jeff Thompson2d27e2f2013-08-09 12:55:00 -07008#define NDN_KEY_CHAIN_HPP
Jeff Thompson47c93cf2013-08-09 00:38:48 -07009
Jeff Thompson7a67cb62013-08-26 11:43:18 -070010#include "../data.hpp"
Jeff Thompson47c93cf2013-08-09 00:38:48 -070011
12namespace ndn {
13
14class KeyChain {
15public:
16 /**
Jeff Thompsonfec716d2013-09-11 13:54:36 -070017 * In data, set the meta info publisher public key digest and key locator key to the public key and set the
Jeff Thompson3c73da42013-08-12 11:19:05 -070018 * signature using the private key.
Jeff Thompsonade5b1e2013-08-09 12:16:45 -070019 * Note: the caller must make sure the timestamp is correct, for example with
Jeff Thompsonfec716d2013-09-11 13:54:36 -070020 * data.getMetaInfo().setTimestampMilliseconds(time(NULL) * 1000.0).
Jeff Thompson3c73da42013-08-12 11:19:05 -070021 * @param data The Data object to sign and set the key and signature.
22 * @param publicKeyDer A pointer to a buffer with the DER-encoded public key.
23 * @param publicKeyDerLength The number of bytes in publicKeyDer.
24 * @param privateKeyDer A pointer to a buffer with the DER-encoded private key.
25 * @param privateKeyDerLength The number of bytes in privateKeyDer.
Jeff Thompson8efe5ad2013-08-20 17:36:38 -070026 * @param wireFormat The WireFormat for calling encodeData.
Jeff Thompson3c73da42013-08-12 11:19:05 -070027 */
28 static void sign
Jeff Thompson1656e6a2013-08-29 18:01:48 -070029 (Data& data, const unsigned char *publicKeyDer, unsigned int publicKeyDerLength,
30 const unsigned char *privateKeyDer, unsigned int privateKeyDerLength, WireFormat& wireFormat);
Jeff Thompson3c73da42013-08-12 11:19:05 -070031
32 /**
33 * Call sign with the default public and private keys.
34 * @param data
Jeff Thompsona7516e02013-09-11 17:12:25 -070035 * @param wireFormat The WireFormat for calling encodeData, or WireFormat::getDefaultWireFormat() if omitted.
Jeff Thompson8efe5ad2013-08-20 17:36:38 -070036 */
Jeff Thompsona7516e02013-09-11 17:12:25 -070037 static void defaultSign(Data& data, WireFormat& wireFormat = *WireFormat::getDefaultWireFormat());
Jeff Thompson8efe5ad2013-08-20 17:36:38 -070038
39 /**
Jeff Thompson1e90d8c2013-08-12 16:09:25 -070040 * Use the WireFormat to decode the input as a Data packet and use the public key in the key locator to
41 * verify the signature.
42 * This does just uses the public key without checking whether it is certified.
43 * @param input A pointer to the input buffer to decode.
44 * @param inputLength The number of bytes in input.
45 * @param wireFormat The WireFormat for calling decodeData.
46 * @return true if the public key in the Data object verifies the object, false if not or if the Data object
47 * doesn't have a public key.
48 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -070049 static bool selfVerifyData(const unsigned char *input, unsigned int inputLength, WireFormat& wireFormat);
Jeff Thompson1e90d8c2013-08-12 16:09:25 -070050
51 static bool selfVerifyData(const unsigned char *input, unsigned int inputLength)
52 {
53 return selfVerifyData(input, inputLength, *WireFormat::getDefaultWireFormat());
54 }
Jeff Thompson47c93cf2013-08-09 00:38:48 -070055};
56
57}
58
59#endif