You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1129 lines
30 KiB
1129 lines
30 KiB
/* ----------------------------------------------------------------------------
|
|
* This file was automatically generated by SWIG (http://www.swig.org).
|
|
* Version 3.0.12
|
|
*
|
|
* This file is not intended to be easily readable and contains a number of
|
|
* coding conventions designed to improve portability and efficiency. Do not make
|
|
* changes to this file unless you know what you are doing--modify the SWIG
|
|
* interface file instead.
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
|
|
#ifndef SWIGJAVA
|
|
#define SWIGJAVA
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
/* SwigValueWrapper is described in swig.swg */
|
|
template<typename T> class SwigValueWrapper {
|
|
struct SwigMovePointer {
|
|
T *ptr;
|
|
SwigMovePointer(T *p) : ptr(p) { }
|
|
~SwigMovePointer() { delete ptr; }
|
|
SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
|
|
} pointer;
|
|
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
|
|
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
|
|
public:
|
|
SwigValueWrapper() : pointer(0) { }
|
|
SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; }
|
|
operator T&() const { return *pointer.ptr; }
|
|
T *operator&() { return pointer.ptr; }
|
|
};
|
|
|
|
template <typename T> T SwigValueInit() {
|
|
return T();
|
|
}
|
|
#endif
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
* This section contains generic SWIG labels for method/variable
|
|
* declarations/attributes, and other compiler dependent labels.
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
/* template workaround for compilers that cannot correctly implement the C++ standard */
|
|
#ifndef SWIGTEMPLATEDISAMBIGUATOR
|
|
# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
|
|
# define SWIGTEMPLATEDISAMBIGUATOR template
|
|
# elif defined(__HP_aCC)
|
|
/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */
|
|
/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */
|
|
# define SWIGTEMPLATEDISAMBIGUATOR template
|
|
# else
|
|
# define SWIGTEMPLATEDISAMBIGUATOR
|
|
# endif
|
|
#endif
|
|
|
|
/* inline attribute */
|
|
#ifndef SWIGINLINE
|
|
# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
|
|
# define SWIGINLINE inline
|
|
# else
|
|
# define SWIGINLINE
|
|
# endif
|
|
#endif
|
|
|
|
/* attribute recognised by some compilers to avoid 'unused' warnings */
|
|
#ifndef SWIGUNUSED
|
|
# if defined(__GNUC__)
|
|
# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
|
|
# define SWIGUNUSED __attribute__ ((__unused__))
|
|
# else
|
|
# define SWIGUNUSED
|
|
# endif
|
|
# elif defined(__ICC)
|
|
# define SWIGUNUSED __attribute__ ((__unused__))
|
|
# else
|
|
# define SWIGUNUSED
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef SWIG_MSC_UNSUPPRESS_4505
|
|
# if defined(_MSC_VER)
|
|
# pragma warning(disable : 4505) /* unreferenced local function has been removed */
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef SWIGUNUSEDPARM
|
|
# ifdef __cplusplus
|
|
# define SWIGUNUSEDPARM(p)
|
|
# else
|
|
# define SWIGUNUSEDPARM(p) p SWIGUNUSED
|
|
# endif
|
|
#endif
|
|
|
|
/* internal SWIG method */
|
|
#ifndef SWIGINTERN
|
|
# define SWIGINTERN static SWIGUNUSED
|
|
#endif
|
|
|
|
/* internal inline SWIG method */
|
|
#ifndef SWIGINTERNINLINE
|
|
# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
|
|
#endif
|
|
|
|
/* exporting methods */
|
|
#if defined(__GNUC__)
|
|
# if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
|
|
# ifndef GCC_HASCLASSVISIBILITY
|
|
# define GCC_HASCLASSVISIBILITY
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef SWIGEXPORT
|
|
# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
|
|
# if defined(STATIC_LINKED)
|
|
# define SWIGEXPORT
|
|
# else
|
|
# define SWIGEXPORT __declspec(dllexport)
|
|
# endif
|
|
# else
|
|
# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
|
|
# define SWIGEXPORT __attribute__ ((visibility("default")))
|
|
# else
|
|
# define SWIGEXPORT
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
/* calling conventions for Windows */
|
|
#ifndef SWIGSTDCALL
|
|
# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
|
|
# define SWIGSTDCALL __stdcall
|
|
# else
|
|
# define SWIGSTDCALL
|
|
# endif
|
|
#endif
|
|
|
|
/* Deal with Microsoft's attempt at deprecating C standard runtime functions */
|
|
#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
|
|
# define _CRT_SECURE_NO_DEPRECATE
|
|
#endif
|
|
|
|
/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */
|
|
#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
|
|
# define _SCL_SECURE_NO_DEPRECATE
|
|
#endif
|
|
|
|
/* Deal with Apple's deprecated 'AssertMacros.h' from Carbon-framework */
|
|
#if defined(__APPLE__) && !defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES)
|
|
# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0
|
|
#endif
|
|
|
|
/* Intel's compiler complains if a variable which was never initialised is
|
|
* cast to void, which is a common idiom which we use to indicate that we
|
|
* are aware a variable isn't used. So we just silence that warning.
|
|
* See: https://github.com/swig/swig/issues/192 for more discussion.
|
|
*/
|
|
#ifdef __INTEL_COMPILER
|
|
# pragma warning disable 592
|
|
#endif
|
|
|
|
|
|
/* Fix for jlong on some versions of gcc on Windows */
|
|
#if defined(__GNUC__) && !defined(__INTEL_COMPILER)
|
|
typedef long long __int64;
|
|
#endif
|
|
|
|
/* Fix for jlong on 64-bit x86 Solaris */
|
|
#if defined(__x86_64)
|
|
# ifdef _LP64
|
|
# undef _LP64
|
|
# endif
|
|
#endif
|
|
|
|
#include <jni.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
|
|
/* Support for throwing Java exceptions */
|
|
typedef enum {
|
|
SWIG_JavaOutOfMemoryError = 1,
|
|
SWIG_JavaIOException,
|
|
SWIG_JavaRuntimeException,
|
|
SWIG_JavaIndexOutOfBoundsException,
|
|
SWIG_JavaArithmeticException,
|
|
SWIG_JavaIllegalArgumentException,
|
|
SWIG_JavaNullPointerException,
|
|
SWIG_JavaDirectorPureVirtual,
|
|
SWIG_JavaUnknownError
|
|
} SWIG_JavaExceptionCodes;
|
|
|
|
typedef struct {
|
|
SWIG_JavaExceptionCodes code;
|
|
const char *java_exception;
|
|
} SWIG_JavaExceptions_t;
|
|
|
|
|
|
static void SWIGUNUSED SWIG_JavaThrowException(JNIEnv *jenv, SWIG_JavaExceptionCodes code, const char *msg) {
|
|
jclass excep;
|
|
static const SWIG_JavaExceptions_t java_exceptions[] = {
|
|
{ SWIG_JavaOutOfMemoryError, "java/lang/OutOfMemoryError" },
|
|
{ SWIG_JavaIOException, "java/io/IOException" },
|
|
{ SWIG_JavaRuntimeException, "java/lang/RuntimeException" },
|
|
{ SWIG_JavaIndexOutOfBoundsException, "java/lang/IndexOutOfBoundsException" },
|
|
{ SWIG_JavaArithmeticException, "java/lang/ArithmeticException" },
|
|
{ SWIG_JavaIllegalArgumentException, "java/lang/IllegalArgumentException" },
|
|
{ SWIG_JavaNullPointerException, "java/lang/NullPointerException" },
|
|
{ SWIG_JavaDirectorPureVirtual, "java/lang/RuntimeException" },
|
|
{ SWIG_JavaUnknownError, "java/lang/UnknownError" },
|
|
{ (SWIG_JavaExceptionCodes)0, "java/lang/UnknownError" }
|
|
};
|
|
const SWIG_JavaExceptions_t *except_ptr = java_exceptions;
|
|
|
|
while (except_ptr->code != code && except_ptr->code)
|
|
except_ptr++;
|
|
|
|
jenv->ExceptionClear();
|
|
excep = jenv->FindClass(except_ptr->java_exception);
|
|
if (excep)
|
|
jenv->ThrowNew(excep, msg);
|
|
}
|
|
|
|
|
|
/* Contract support */
|
|
|
|
#define SWIG_contract_assert(nullreturn, expr, msg) if (!(expr)) {SWIG_JavaThrowException(jenv, SWIG_JavaIllegalArgumentException, msg); return nullreturn; } else
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
#include <typeinfo>
|
|
#include <stdexcept>
|
|
|
|
|
|
#include <cybozu/random_generator.hpp>
|
|
#include <cybozu/crypto.hpp>
|
|
#include <mcl/fp.hpp>
|
|
#include <mcl/ecparam.hpp>
|
|
struct Param {
|
|
const mcl::EcParam *ecParam;
|
|
cybozu::RandomGenerator rg;
|
|
cybozu::crypto::Hash::Name hashName;
|
|
static inline Param& getParam()
|
|
{
|
|
static Param p;
|
|
return p;
|
|
}
|
|
};
|
|
|
|
#include "elgamal_impl.hpp"
|
|
|
|
|
|
static bool *new_p_bool() {
|
|
return new bool();
|
|
}
|
|
|
|
static bool *copy_p_bool(bool value) {
|
|
return new bool(value);
|
|
}
|
|
|
|
static void delete_p_bool(bool *obj) {
|
|
if (obj) delete obj;
|
|
}
|
|
|
|
static void p_bool_assign(bool *obj, bool value) {
|
|
*obj = value;
|
|
}
|
|
|
|
static bool p_bool_value(bool *obj) {
|
|
return *obj;
|
|
}
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
SWIGEXPORT jlong JNICALL Java_com_herumi_mcl_ElgamalJNI_new_1p_1bool(JNIEnv *jenv, jclass jcls) {
|
|
jlong jresult = 0 ;
|
|
bool *result = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
result = (bool *)new_p_bool();
|
|
*(bool **)&jresult = result;
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT jlong JNICALL Java_com_herumi_mcl_ElgamalJNI_copy_1p_1bool(JNIEnv *jenv, jclass jcls, jboolean jarg1) {
|
|
jlong jresult = 0 ;
|
|
bool arg1 ;
|
|
bool *result = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
arg1 = jarg1 ? true : false;
|
|
result = (bool *)copy_p_bool(arg1);
|
|
*(bool **)&jresult = result;
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_delete_1p_1bool(JNIEnv *jenv, jclass jcls, jlong jarg1) {
|
|
bool *arg1 = (bool *) 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
arg1 = *(bool **)&jarg1;
|
|
delete_p_bool(arg1);
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_p_1bool_1assign(JNIEnv *jenv, jclass jcls, jlong jarg1, jboolean jarg2) {
|
|
bool *arg1 = (bool *) 0 ;
|
|
bool arg2 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
arg1 = *(bool **)&jarg1;
|
|
arg2 = jarg2 ? true : false;
|
|
p_bool_assign(arg1,arg2);
|
|
}
|
|
|
|
|
|
SWIGEXPORT jboolean JNICALL Java_com_herumi_mcl_ElgamalJNI_p_1bool_1value(JNIEnv *jenv, jclass jcls, jlong jarg1) {
|
|
jboolean jresult = 0 ;
|
|
bool *arg1 = (bool *) 0 ;
|
|
bool result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
arg1 = *(bool **)&jarg1;
|
|
result = (bool)p_bool_value(arg1);
|
|
jresult = (jboolean)result;
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_SystemInit(JNIEnv *jenv, jclass jcls, jstring jarg1) {
|
|
std::string *arg1 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
if(!jarg1) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg1_pstr = (const char *)jenv->GetStringUTFChars(jarg1, 0);
|
|
if (!arg1_pstr) return ;
|
|
std::string arg1_str(arg1_pstr);
|
|
arg1 = &arg1_str;
|
|
jenv->ReleaseStringUTFChars(jarg1, arg1_pstr);
|
|
try {
|
|
SystemInit((std::string const &)*arg1);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT jstring JNICALL Java_com_herumi_mcl_ElgamalJNI_CipherText_1toStr(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
|
|
jstring jresult = 0 ;
|
|
CipherText *arg1 = (CipherText *) 0 ;
|
|
std::string result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(CipherText **)&jarg1;
|
|
try {
|
|
result = ((CipherText const *)arg1)->toStr();
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return 0;
|
|
}
|
|
|
|
jresult = jenv->NewStringUTF((&result)->c_str());
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT jstring JNICALL Java_com_herumi_mcl_ElgamalJNI_CipherText_1toString(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
|
|
jstring jresult = 0 ;
|
|
CipherText *arg1 = (CipherText *) 0 ;
|
|
std::string result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(CipherText **)&jarg1;
|
|
try {
|
|
result = ((CipherText const *)arg1)->toString();
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return 0;
|
|
}
|
|
|
|
jresult = jenv->NewStringUTF((&result)->c_str());
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_CipherText_1fromStr(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2) {
|
|
CipherText *arg1 = (CipherText *) 0 ;
|
|
std::string *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(CipherText **)&jarg1;
|
|
if(!jarg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg2_pstr = (const char *)jenv->GetStringUTFChars(jarg2, 0);
|
|
if (!arg2_pstr) return ;
|
|
std::string arg2_str(arg2_pstr);
|
|
arg2 = &arg2_str;
|
|
jenv->ReleaseStringUTFChars(jarg2, arg2_pstr);
|
|
try {
|
|
(arg1)->fromStr((std::string const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_CipherText_1add(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_) {
|
|
CipherText *arg1 = (CipherText *) 0 ;
|
|
CipherText *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
(void)jarg2_;
|
|
arg1 = *(CipherText **)&jarg1;
|
|
arg2 = *(CipherText **)&jarg2;
|
|
if (!arg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "CipherText const & reference is null");
|
|
return ;
|
|
}
|
|
try {
|
|
(arg1)->add((CipherText const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_CipherText_1mul_1_1SWIG_10(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jint jarg2) {
|
|
CipherText *arg1 = (CipherText *) 0 ;
|
|
int arg2 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(CipherText **)&jarg1;
|
|
arg2 = (int)jarg2;
|
|
try {
|
|
(arg1)->mul(arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_CipherText_1mul_1_1SWIG_11(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2) {
|
|
CipherText *arg1 = (CipherText *) 0 ;
|
|
std::string *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(CipherText **)&jarg1;
|
|
if(!jarg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg2_pstr = (const char *)jenv->GetStringUTFChars(jarg2, 0);
|
|
if (!arg2_pstr) return ;
|
|
std::string arg2_str(arg2_pstr);
|
|
arg2 = &arg2_str;
|
|
jenv->ReleaseStringUTFChars(jarg2, arg2_pstr);
|
|
try {
|
|
(arg1)->mul((std::string const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT jlong JNICALL Java_com_herumi_mcl_ElgamalJNI_new_1CipherText(JNIEnv *jenv, jclass jcls) {
|
|
jlong jresult = 0 ;
|
|
CipherText *result = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
result = (CipherText *)new CipherText();
|
|
*(CipherText **)&jresult = result;
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_delete_1CipherText(JNIEnv *jenv, jclass jcls, jlong jarg1) {
|
|
CipherText *arg1 = (CipherText *) 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
arg1 = *(CipherText **)&jarg1;
|
|
delete arg1;
|
|
}
|
|
|
|
|
|
SWIGEXPORT jstring JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1toStr(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
|
|
jstring jresult = 0 ;
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
std::string result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
try {
|
|
result = ((PublicKey const *)arg1)->toStr();
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return 0;
|
|
}
|
|
|
|
jresult = jenv->NewStringUTF((&result)->c_str());
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT jstring JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1toString(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
|
|
jstring jresult = 0 ;
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
std::string result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
try {
|
|
result = ((PublicKey const *)arg1)->toString();
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return 0;
|
|
}
|
|
|
|
jresult = jenv->NewStringUTF((&result)->c_str());
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1fromStr(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2) {
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
std::string *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
if(!jarg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg2_pstr = (const char *)jenv->GetStringUTFChars(jarg2, 0);
|
|
if (!arg2_pstr) return ;
|
|
std::string arg2_str(arg2_pstr);
|
|
arg2 = &arg2_str;
|
|
jenv->ReleaseStringUTFChars(jarg2, arg2_pstr);
|
|
try {
|
|
(arg1)->fromStr((std::string const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1save(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2) {
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
std::string *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
if(!jarg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg2_pstr = (const char *)jenv->GetStringUTFChars(jarg2, 0);
|
|
if (!arg2_pstr) return ;
|
|
std::string arg2_str(arg2_pstr);
|
|
arg2 = &arg2_str;
|
|
jenv->ReleaseStringUTFChars(jarg2, arg2_pstr);
|
|
try {
|
|
((PublicKey const *)arg1)->save((std::string const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1load(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2) {
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
std::string *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
if(!jarg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg2_pstr = (const char *)jenv->GetStringUTFChars(jarg2, 0);
|
|
if (!arg2_pstr) return ;
|
|
std::string arg2_str(arg2_pstr);
|
|
arg2 = &arg2_str;
|
|
jenv->ReleaseStringUTFChars(jarg2, arg2_pstr);
|
|
try {
|
|
(arg1)->load((std::string const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1enc_1_1SWIG_10(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_, jint jarg3) {
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
CipherText *arg2 = 0 ;
|
|
int arg3 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
(void)jarg2_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
arg2 = *(CipherText **)&jarg2;
|
|
if (!arg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "CipherText & reference is null");
|
|
return ;
|
|
}
|
|
arg3 = (int)jarg3;
|
|
try {
|
|
((PublicKey const *)arg1)->enc(*arg2,arg3);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1enc_1_1SWIG_11(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_, jstring jarg3) {
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
CipherText *arg2 = 0 ;
|
|
std::string *arg3 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
(void)jarg2_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
arg2 = *(CipherText **)&jarg2;
|
|
if (!arg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "CipherText & reference is null");
|
|
return ;
|
|
}
|
|
if(!jarg3) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg3_pstr = (const char *)jenv->GetStringUTFChars(jarg3, 0);
|
|
if (!arg3_pstr) return ;
|
|
std::string arg3_str(arg3_pstr);
|
|
arg3 = &arg3_str;
|
|
jenv->ReleaseStringUTFChars(jarg3, arg3_pstr);
|
|
try {
|
|
((PublicKey const *)arg1)->enc(*arg2,(std::string const &)*arg3);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1rerandomize(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_) {
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
CipherText *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
(void)jarg2_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
arg2 = *(CipherText **)&jarg2;
|
|
if (!arg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "CipherText & reference is null");
|
|
return ;
|
|
}
|
|
try {
|
|
((PublicKey const *)arg1)->rerandomize(*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1add_1_1SWIG_10(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_, jint jarg3) {
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
CipherText *arg2 = 0 ;
|
|
int arg3 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
(void)jarg2_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
arg2 = *(CipherText **)&jarg2;
|
|
if (!arg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "CipherText & reference is null");
|
|
return ;
|
|
}
|
|
arg3 = (int)jarg3;
|
|
try {
|
|
((PublicKey const *)arg1)->add(*arg2,arg3);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PublicKey_1add_1_1SWIG_11(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_, jstring jarg3) {
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
CipherText *arg2 = 0 ;
|
|
std::string *arg3 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
(void)jarg2_;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
arg2 = *(CipherText **)&jarg2;
|
|
if (!arg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "CipherText & reference is null");
|
|
return ;
|
|
}
|
|
if(!jarg3) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg3_pstr = (const char *)jenv->GetStringUTFChars(jarg3, 0);
|
|
if (!arg3_pstr) return ;
|
|
std::string arg3_str(arg3_pstr);
|
|
arg3 = &arg3_str;
|
|
jenv->ReleaseStringUTFChars(jarg3, arg3_pstr);
|
|
try {
|
|
((PublicKey const *)arg1)->add(*arg2,(std::string const &)*arg3);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT jlong JNICALL Java_com_herumi_mcl_ElgamalJNI_new_1PublicKey(JNIEnv *jenv, jclass jcls) {
|
|
jlong jresult = 0 ;
|
|
PublicKey *result = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
result = (PublicKey *)new PublicKey();
|
|
*(PublicKey **)&jresult = result;
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_delete_1PublicKey(JNIEnv *jenv, jclass jcls, jlong jarg1) {
|
|
PublicKey *arg1 = (PublicKey *) 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
arg1 = *(PublicKey **)&jarg1;
|
|
delete arg1;
|
|
}
|
|
|
|
|
|
SWIGEXPORT jstring JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1toStr(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
|
|
jstring jresult = 0 ;
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
std::string result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
try {
|
|
result = ((PrivateKey const *)arg1)->toStr();
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return 0;
|
|
}
|
|
|
|
jresult = jenv->NewStringUTF((&result)->c_str());
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT jstring JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1toString(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
|
|
jstring jresult = 0 ;
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
std::string result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
try {
|
|
result = ((PrivateKey const *)arg1)->toString();
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return 0;
|
|
}
|
|
|
|
jresult = jenv->NewStringUTF((&result)->c_str());
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1fromStr(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2) {
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
std::string *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
if(!jarg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg2_pstr = (const char *)jenv->GetStringUTFChars(jarg2, 0);
|
|
if (!arg2_pstr) return ;
|
|
std::string arg2_str(arg2_pstr);
|
|
arg2 = &arg2_str;
|
|
jenv->ReleaseStringUTFChars(jarg2, arg2_pstr);
|
|
try {
|
|
(arg1)->fromStr((std::string const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1save(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2) {
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
std::string *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
if(!jarg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg2_pstr = (const char *)jenv->GetStringUTFChars(jarg2, 0);
|
|
if (!arg2_pstr) return ;
|
|
std::string arg2_str(arg2_pstr);
|
|
arg2 = &arg2_str;
|
|
jenv->ReleaseStringUTFChars(jarg2, arg2_pstr);
|
|
try {
|
|
((PrivateKey const *)arg1)->save((std::string const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1load(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2) {
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
std::string *arg2 = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
if(!jarg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null string");
|
|
return ;
|
|
}
|
|
const char *arg2_pstr = (const char *)jenv->GetStringUTFChars(jarg2, 0);
|
|
if (!arg2_pstr) return ;
|
|
std::string arg2_str(arg2_pstr);
|
|
arg2 = &arg2_str;
|
|
jenv->ReleaseStringUTFChars(jarg2, arg2_pstr);
|
|
try {
|
|
(arg1)->load((std::string const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1init(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
try {
|
|
(arg1)->init();
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT jlong JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1getPublicKey(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
|
|
jlong jresult = 0 ;
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
PublicKey result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
try {
|
|
result = ((PrivateKey const *)arg1)->getPublicKey();
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return 0;
|
|
}
|
|
|
|
*(PublicKey **)&jresult = new PublicKey((const PublicKey &)result);
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT jint JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1dec_1_1SWIG_10(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_, jlong jarg3) {
|
|
jint jresult = 0 ;
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
CipherText *arg2 = 0 ;
|
|
bool *arg3 = (bool *) 0 ;
|
|
int result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
(void)jarg2_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
arg2 = *(CipherText **)&jarg2;
|
|
if (!arg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "CipherText const & reference is null");
|
|
return 0;
|
|
}
|
|
arg3 = *(bool **)&jarg3;
|
|
try {
|
|
result = (int)((PrivateKey const *)arg1)->dec((CipherText const &)*arg2,arg3);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return 0;
|
|
}
|
|
|
|
jresult = (jint)result;
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT jint JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1dec_1_1SWIG_11(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_) {
|
|
jint jresult = 0 ;
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
CipherText *arg2 = 0 ;
|
|
int result;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
(void)jarg2_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
arg2 = *(CipherText **)&jarg2;
|
|
if (!arg2) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "CipherText const & reference is null");
|
|
return 0;
|
|
}
|
|
try {
|
|
result = (int)((PrivateKey const *)arg1)->dec((CipherText const &)*arg2);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return 0;
|
|
}
|
|
|
|
jresult = (jint)result;
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1setCache(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jint jarg2, jint jarg3) {
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
int arg2 ;
|
|
int arg3 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
arg2 = (int)jarg2;
|
|
arg3 = (int)jarg3;
|
|
try {
|
|
(arg1)->setCache(arg2,arg3);
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_PrivateKey_1clearCache(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
(void)jarg1_;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
try {
|
|
(arg1)->clearCache();
|
|
}
|
|
catch(std::exception &_e) {
|
|
SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, (&_e)->what());
|
|
return ;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
SWIGEXPORT jlong JNICALL Java_com_herumi_mcl_ElgamalJNI_new_1PrivateKey(JNIEnv *jenv, jclass jcls) {
|
|
jlong jresult = 0 ;
|
|
PrivateKey *result = 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
result = (PrivateKey *)new PrivateKey();
|
|
*(PrivateKey **)&jresult = result;
|
|
return jresult;
|
|
}
|
|
|
|
|
|
SWIGEXPORT void JNICALL Java_com_herumi_mcl_ElgamalJNI_delete_1PrivateKey(JNIEnv *jenv, jclass jcls, jlong jarg1) {
|
|
PrivateKey *arg1 = (PrivateKey *) 0 ;
|
|
|
|
(void)jenv;
|
|
(void)jcls;
|
|
arg1 = *(PrivateKey **)&jarg1;
|
|
delete arg1;
|
|
}
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|