blob: de85b986593abfb7fd128be60a73989c4480c312 [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 Thompson2ce8f492013-09-17 18:01:25 -070011#include "../face.hpp"
12#include "identity/identity-manager.hpp"
Jeff Thompson47c93cf2013-08-09 00:38:48 -070013
14namespace ndn {
15
Jeff Thompson2ce8f492013-09-17 18:01:25 -070016/**
17 * An OnVerified function object is used to pass a callback to verifyData to report a successful verification.
18 */
19typedef func_lib::function<void(const ptr_lib::shared_ptr<Data>& data)> OnVerified;
20
21/**
22 * An OnVerifyFailed function object is used to pass a callback to verifyData to report a failed verification.
23 */
24typedef func_lib::function<void()> OnVerifyFailed;
25
Jeff Thompsonffa36f92013-09-20 08:42:41 -070026/**
27 * Keychain is main class of security library.
28 *
29 * The Keychain class provides a set of interfaces to the security library such as identity management, policy configuration
30 * and packet signing and verification.
31 */
Jeff Thompson47c93cf2013-08-09 00:38:48 -070032class KeyChain {
33public:
Jeff Thompson2ce8f492013-09-17 18:01:25 -070034 KeyChain(ptr_lib::shared_ptr<IdentityManager> identityManager)
35 : identityManager_(identityManager), face_(0), maxSteps_(100)
36 {
37 }
38
Jeff Thompson47c93cf2013-08-09 00:38:48 -070039 /**
Jeff Thompson2ce8f492013-09-17 18:01:25 -070040 * Wire encode the Data object, sign it and set its signature.
Jeff Thompsonade5b1e2013-08-09 12:16:45 -070041 * Note: the caller must make sure the timestamp is correct, for example with
Jeff Thompsonfec716d2013-09-11 13:54:36 -070042 * data.getMetaInfo().setTimestampMilliseconds(time(NULL) * 1000.0).
Jeff Thompson2ce8f492013-09-17 18:01:25 -070043 * @param data The Data object to be signed. This updates its signature and key locator field and wireEncoding.
44 * @param signerName The signing identity or certificate name, depending on byKeyName. If omitted, infer the certificate name from data.getName().
45 * @param byKeyName If true, the signerName is the key name, otherwise it is the certificate name. If omitted, the default is true.
Jeff Thompson8d24fe12013-09-18 15:54:51 -070046 * @param wireFormat A WireFormat object used to encode the input. If omitted, use WireFormat getDefaultWireFormat().
Jeff Thompson3c73da42013-08-12 11:19:05 -070047 */
Jeff Thompson2ce8f492013-09-17 18:01:25 -070048 void
49 signData(Data& data, const Name& signerName = Name(), bool byKeyName = true, WireFormat& wireFormat = *WireFormat::getDefaultWireFormat());
Jeff Thompson3c73da42013-08-12 11:19:05 -070050
51 /**
Jeff Thompson2ce8f492013-09-17 18:01:25 -070052 * Check the signature on the Data object and call either onVerify or onVerifyFailed.
53 * We use callback functions because verify may fetch information to check the signature.
Jeff Thompson3c73da42013-08-12 11:19:05 -070054 * @param data
Jeff Thompson2ce8f492013-09-17 18:01:25 -070055 * @param onVerified
56 * @param onVerifyFailed
Jeff Thompson8efe5ad2013-08-20 17:36:38 -070057 */
Jeff Thompson2ce8f492013-09-17 18:01:25 -070058 void
59 verifyData(const ptr_lib::shared_ptr<Data>& data, const OnVerified& onVerified, const OnVerifyFailed& onVerifyFailed);
Jeff Thompson8efe5ad2013-08-20 17:36:38 -070060
61 /**
Jeff Thompson2ce8f492013-09-17 18:01:25 -070062 * Set the Face which will be used to fetch required certificates.
63 * @param face A pointer to the Face object.
Jeff Thompson1e90d8c2013-08-12 16:09:25 -070064 */
Jeff Thompson2ce8f492013-09-17 18:01:25 -070065 void
66 setFace(Face* face) { face_ = face; }
67
68private:
69 ptr_lib::shared_ptr<IdentityManager> identityManager_;
70 Face* face_;
71 const int maxSteps_;
Jeff Thompson47c93cf2013-08-09 00:38:48 -070072};
73
74}
75
76#endif