This website requires JavaScript.
Explore
Help
Register
Sign In
Archives
/
lokinet
Watch
2
Star
0
Fork
0
You've already forked lokinet
mirror of
https://github.com/oxen-io/lokinet.git
synced
2024-11-11 07:10:36 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
4992b9b02c
lokinet
/
llarp
/
crypto
/
crypto.cpp
7 lines
88 B
C++
Raw
Normal View
History
Unescape
Escape
standardize include format and pragma once All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
2021-03-09 22:24:35 +00:00
#
include
"crypto.hpp"
Add CryptoManager class to provide a guard-style class to manage the current Crypto instance
2019-05-28 19:45:08 +00:00
namespace
llarp
{
Crypto
*
CryptoManager
:
:
m_crypto
=
nullptr
;
}
Reference in New Issue
Copy Permalink