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.
27 lines
443 B
27 lines
443 B
%module Mcl
|
|
|
|
%include "std_string.i"
|
|
%include "std_except.i"
|
|
|
|
|
|
%{
|
|
#include <cybozu/random_generator.hpp>
|
|
#include <cybozu/crypto.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 "mcl_if.hpp"
|
|
%}
|
|
%include cpointer.i
|
|
%pointer_functions(bool, p_bool);
|
|
|
|
%include "mcl_if.hpp"
|
|
|