NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
public-key.cpp File Reference
Include dependency graph for public-key.cpp:

Go to the source code of this file.

Classes

class  ndn::security::transform::PublicKey::Impl
 

Namespaces

 ndn
 Copyright (c) 2011-2015 Regents of the University of California.
 
 ndn::security
 
 ndn::security::transform
 

Macros

#define ENSURE_PUBLIC_KEY_LOADED(key)
 
#define ENSURE_PUBLIC_KEY_NOT_LOADED(key)
 

Macro Definition Documentation

◆ ENSURE_PUBLIC_KEY_LOADED

#define ENSURE_PUBLIC_KEY_LOADED (   key)
Value:
do { \
if ((key) == nullptr) \
NDN_THROW(Error("Public key has not been loaded yet")); \
} while (false)

Definition at line 31 of file public-key.cpp.

Referenced by ndn::security::transform::PublicKey::encrypt().

◆ ENSURE_PUBLIC_KEY_NOT_LOADED

#define ENSURE_PUBLIC_KEY_NOT_LOADED (   key)
Value:
do { \
if ((key) != nullptr) \
NDN_THROW(Error("Public key has already been loaded")); \
} while (false)

Definition at line 37 of file public-key.cpp.

Referenced by ndn::security::transform::PublicKey::loadPkcs8().