上一页 1 ··· 54 55 56 57 58
摘要: TARGET = libeay32sTEMPLATE = appCONFIG += consoleDESTDIR += ../appINCLUDEPATH += ./include/openssl ./include/build ./includeDEFINES += OPENSSL_NO_STAT 阅读全文
posted @ 2020-03-17 10:49 zJanly 阅读(156) 评论(0) 推荐(0)
摘要: #include "bn.h"int main(int argc, char *argv[]){ BN_CTX *ctx = BN_CTX_new(); //BN_CTX_start(ctx); auto a= BN_CTX_get(ctx); a->neg = -1; BN_set_word(a, 阅读全文
posted @ 2020-03-17 10:48 zJanly 阅读(272) 评论(0) 推荐(0)
摘要: https://search.maven.org/artifact/org.bouncycastle/bcprov-jdk18on/1.72/jar https://mvnrepository.com/artifact/org.hyperledger.fabric-sdk-java/fabric-s 阅读全文
posted @ 2020-03-08 16:29 zJanly 阅读(123) 评论(0) 推荐(0)
摘要: import java.io.File;import java.io.FileInputStream;import java.io.IOException;import java.io.Reader;import java.io.Serializable;import java.io.StringR 阅读全文
posted @ 2020-03-08 16:26 zJanly 阅读(467) 评论(0) 推荐(0)
摘要: package xuliehua;import java.io.Serializable;public class S implements Serializable{ private String name; private int age; public String getName() { r 阅读全文
posted @ 2020-03-08 16:25 zJanly 阅读(201) 评论(0) 推荐(0)
摘要: #include "signal.h"#if (SIGHUP == 1) && (SIGINT == 2) && (SIGQUIT == 3) && (SIGILL == 4) \ && (SIGTRAP == 5) && (SIGABRT == 6) && (SIGBUS == 7) && (SI 阅读全文
posted @ 2020-03-08 11:37 zJanly 阅读(213) 评论(0) 推荐(0)
摘要: struct A{ void f(){ } void f() const{ }};struct B{ B (A& a) : a(a) {} void f1(){ a.f(); } void f1() const{ a.f(); } A &a;};int main(int argc, char *ar 阅读全文
posted @ 2020-03-06 22:20 zJanly 阅读(135) 评论(0) 推荐(0)
摘要: struct A{ void f(){ } void f() const{ }};struct B{ void f1(){ a->f(); } void f1() const{ a->f(); } A *a;};int main(int argc, char *argv[]){ A a; B b; 阅读全文
posted @ 2020-03-06 22:17 zJanly 阅读(119) 评论(0) 推荐(0)
上一页 1 ··· 54 55 56 57 58