security: renaming PolicyManager classess to SecPolicy___ and re-organize security file layout

Change-Id: Ibca0333129a3d4465ff294c4d97d59808ae253f4
diff --git a/src/security/sec-policy-no-verify.cpp b/src/security/sec-policy-no-verify.cpp
new file mode 100644
index 0000000..c2f7866
--- /dev/null
+++ b/src/security/sec-policy-no-verify.cpp
@@ -0,0 +1,51 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
+/**
+ * Copyright (C) 2013 Regents of the University of California.
+ * @author: Yingdi Yu <yingdi@cs.ucla.edu>
+ * @author: Jeff Thompson <jefft0@remap.ucla.edu>
+ * See COPYING for copyright and distribution information.
+ */
+
+#include <ndn-cpp/security/sec-policy-no-verify.hpp>
+
+using namespace std;
+
+namespace ndn {
+
+SecPolicyNoVerify::~SecPolicyNoVerify()
+{
+}
+
+bool 
+SecPolicyNoVerify::skipVerifyAndTrust(const Data& data)
+{ 
+  return true; 
+}
+
+bool
+SecPolicyNoVerify::requireVerify(const Data& data)
+{ 
+  return false; 
+}
+    
+ptr_lib::shared_ptr<ValidationRequest>
+SecPolicyNoVerify::checkVerificationPolicy
+  (const ptr_lib::shared_ptr<Data>& data, int stepCount, const OnVerified& onVerified, const OnVerifyFailed& onVerifyFailed)
+{ 
+  onVerified(data); 
+  return ptr_lib::shared_ptr<ValidationRequest>();
+}
+
+bool 
+SecPolicyNoVerify::checkSigningPolicy(const Name& dataName, const Name& certificateName)
+{ 
+  return true; 
+}
+
+Name 
+SecPolicyNoVerify::inferSigningIdentity(const Name& dataName)
+{ 
+  return Name(); 
+}
+
+}