security+util: mark all pimpl unique_ptrs const
Change-Id: I3966c4988dceb49c204e23967ba90729877bddf1
diff --git a/src/security/transform/block-cipher.hpp b/src/security/transform/block-cipher.hpp
index 885bd43..320e184 100644
--- a/src/security/transform/block-cipher.hpp
+++ b/src/security/transform/block-cipher.hpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
- * Copyright (c) 2013-2016 Regents of the University of California.
+ * Copyright (c) 2013-2017 Regents of the University of California.
*
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
*
@@ -86,7 +86,6 @@
isConverterEmpty() const;
private:
-
void
initializeAesCbc(const uint8_t* key, size_t keyLen,
const uint8_t* iv, size_t ivLen,
@@ -94,7 +93,7 @@
private:
class Impl;
- unique_ptr<Impl> m_impl;
+ const unique_ptr<Impl> m_impl;
};
unique_ptr<Transform>