0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-29 15:28:20 +02:00

modules: Stub crypto module.

This commit is contained in:
Jason Volk 2016-11-13 16:42:25 -08:00
parent eef5b78112
commit edbc19790e
2 changed files with 51 additions and 1 deletions

View file

@ -54,6 +54,7 @@ events_la_SOURCES = events.cc
assert_la_SOURCES = assert.cc
console_la_SOURCES = console.cc
stream_la_SOURCES = stream.cc
crypto_la_SOURCES = crypto.cc
#m_ban_la_SOURCES = m_ban.cc
#m_die_la_SOURCES = m_die.cc
#m_error_la_SOURCES = m_error.cc
@ -144,7 +145,8 @@ require.la \
assert.la \
events.la \
console.la \
stream.la
stream.la \
crypto.la
# m_modules.la
# m_ban.la \

48
modules/crypto.cc Normal file
View file

@ -0,0 +1,48 @@
/*
* Copyright (C) 2016 Charybdis Development Team
* Copyright (C) 2016 Jason Volk <jason@zemos.net>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice is present in all copies.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <ircd/js/js.h>
#include <openssl/sha.h>
namespace ircd {
namespace js {
struct crypto
:trap
{
using trap::trap;
}
static crypto
{
"crypto"
};
} // namespace js
} // namespace ircd
using namespace ircd::js;
using namespace ircd;
mapi::header IRCD_MODULE
{
"applied maths",
mapi::NO_FLAGS
};