mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 19:15:54 +00:00
16 lines
405 B
C++
16 lines
405 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_DIFFIEHELLMANUTIL_H
|
|
#define RIPPLE_DIFFIEHELLMANUTIL_H
|
|
|
|
extern DH* DH_der_load (const std::string& strDer);
|
|
extern std::string DH_der_gen (int iKeyLength);
|
|
|
|
#endif
|
|
|
|
// vim:ts=4
|