ci+docs: remove all references to cryptopp/crypto++

Change-Id: I40fc72a8fa27c1a73c349e8cbaeb402a8b6af742
Refs: #3946
diff --git a/.jenkins.d/00-deps.sh b/.jenkins.d/00-deps.sh
index 6448fbe..8234693 100755
--- a/.jenkins.d/00-deps.sh
+++ b/.jenkins.d/00-deps.sh
@@ -7,7 +7,7 @@
 set -x
 
 if has OSX $NODE_LABELS; then
-    FORMULAE=(boost pkg-config cryptopp openssl)
+    FORMULAE=(boost openssl pkg-config)
     brew update
     if [[ -n $TRAVIS ]]; then
         # travis images come with a large number of brew packages
@@ -25,8 +25,7 @@
 if has Ubuntu $NODE_LABELS; then
     sudo apt-get -qq update
     sudo apt-get -qy install build-essential pkg-config libboost-all-dev \
-                             libcrypto++-dev libsqlite3-dev libssl-dev \
-                             libpcap-dev
+                             libsqlite3-dev libssl-dev libpcap-dev
 
     if [[ $JOB_NAME == *"code-coverage" ]]; then
         sudo apt-get -qy install lcov libgd-perl python-setuptools
diff --git a/COPYING.md b/COPYING.md
index 373fb0e..ba181d9 100644
--- a/COPYING.md
+++ b/COPYING.md
@@ -8,19 +8,16 @@
 - Boost libraries licensed under conditions of
   [Boost Software License 1.0](http://www.boost.org/users/license.html)
 
-- CryptoPP library is licensed under conditions of
-  [Boost Software License 1.0](http://www.boost.org/users/license.html)
-
 - SQLite is in [public domain](http://www.sqlite.org/copyright.html)
 
 - WebSocket++ library licensed under conditions of
-  [BSD license](https://github.com/zaphoyd/websocketpp/blob/378437aecdcb1dfe62096ffd5d944bf1f640ccc3/COPYING)
+  [BSD license](https://github.com/zaphoyd/websocketpp/blob/0.7.0/COPYING)
 
 - Libpcap library licensed under conditions of
   [a 3-clause BSD license](http://www.tcpdump.org/license.html).
 
 - waf build system is licensed under conditions of
-  [BSD license](https://github.com/named-data/ndn-cxx/blob/master/waf)
+  [BSD license](https://github.com/named-data/NFD/blob/master/waf)
 
 The GPL license is provided below in this file.  For more information about these licenses, see
 http://www.gnu.org/licenses/
diff --git a/core/random.hpp b/core/random.hpp
index 03ae9d3..27e1067 100644
--- a/core/random.hpp
+++ b/core/random.hpp
@@ -1,6 +1,6 @@
 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
-/**
- * Copyright (c) 2014-2016,  Regents of the University of California,
+/*
+ * Copyright (c) 2014-2017,  Regents of the University of California,
  *                           Arizona Board of Regents,
  *                           Colorado State University,
  *                           University Pierre & Marie Curie, Sorbonne University,
@@ -24,14 +24,15 @@
  */
 
 /**
- * This file declares the global pseudorandom number generator (PRNG).
+ * \file
+ * \brief Declares the global pseudorandom number generator (PRNG) for NFD
  *
  * All random numbers generated by NFD should use this global generator,
  * so that it can be properly seeded when necessary.
  *
- * This PRNG is not suitable for security purposes; security-critical
- * code must use a cryptographically secure PRNG, such as those provided
- * by OpenSSL and Crypto++.
+ * \warning This PRNG is not suitable for security purposes; security-critical
+ *          code must use a cryptographically secure PRNG, such as that provided
+ *          by OpenSSL.
  */
 
 #ifndef NFD_CORE_RANDOM_HPP