NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
sha1.hpp File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 websocketpp
 Namespace for the WebSocket++ project.
 
 websocketpp::sha1
 

Macros

#define sha1macro(func, val)
 

Functions

void websocketpp::sha1::calc (void const *src, size_t bytelength, unsigned char *hash)
 Calculate a SHA1 hash. More...
 

Macro Definition Documentation

#define sha1macro (   func,
  val 
)
Value:
{ \
const unsigned int t = rol(a, 5) + (func) + e + val + w[round]; \
e = d; \
d = c; \
c = rol(b, 30); \
b = a; \
a = t; \
}