(P256/P384/P521/W25519/W448/Curve25519/Edwards448)
1
详细描述基于模块化符号的算法,用于计算模块化椭圆曲线。 还介绍了用于研究椭圆曲线算术的各种算法。
2021-08-26 19:56:55 123B 计算机科学
1
eciesjs TypeScript中secp256k1的椭圆曲线集成加密方案。 这是JavaScript /打字稿版本的带有内置类样secp256k1 ,你可以去那里详细的文档和学习引擎盖下的机制。 如果希望WASM版本在浏览器中运行,请检查 。 安装 npm install eciesjs 快速开始 > import { encrypt , decrypt , PrivateKey } from 'eciesjs' > const k1 = new PrivateKey ( ) > const data = Buffer . from ( 'this is a test' ) > decrypt ( k1 . toHex ( ) , encrypt ( k1 . publicKey . toHex ( ) , data ) ) . toString ( ) 'this is a test' API encrypt(receiverRawPub: string | Buffer, msg: Buffer): Buffer 参数: receiverRawPub-接收者的se
2021-08-22 13:35:04 42KB javascript cryptography typescript bitcoin
1
JAVA ECC 椭圆曲线加密算法源代码, 公钥 String publicKey = ECCCoder.getPublicKey(keyMap); 私钥 String privateKey = ECCCoder.getPrivateKey(keyMap); 加密 byte[] encodedData = ECCCoder.encrypt(data, publicKey); 解密 byte[] decodedData = ECCCoder.decrypt(encodedData, privateKey);
2021-08-20 15:19:46 3KB ecc java 椭圆曲线加密算法 算法
1
爆笑 python中secp256k1的椭圆曲线集成加密方案。 其他语言版本: 您也可以查看FastAPI Web后端演示。 安装 在Python pip install eciespy使用pip install eciespy 。 快速开始 >> > from ecies . utils import generate_eth_key , generate_key >> > from ecies import encrypt , decrypt >> > eth_k = generate_eth_key () >> > sk_hex = eth_k . to_hex () # hex string >> > pk_hex = eth_k . public_key . to_hex () # hex string >> > data = b'this is a test' >> > decrypt ( sk_hex , encrypt ( pk_hex , data )) b'this is a test' >> > secp_k = generate_key () >> >
2021-08-16 18:08:42 31KB cryptography bitcoin ethereum python3
1
SM2椭圆曲线公钥密码算法.zip
2021-08-13 17:02:33 12.75MB SM2椭圆曲线公钥密码算法
ECC数字签名C++源码和报告,基于ECC即椭圆曲线的数字签名,能够对消息来源和消息完整性进行认证,防止通信双方中的一方对另一方的欺骗或伪造以及第三方篡改伪造传送的数据。
2021-08-09 22:05:18 602KB ECC数字签名 椭圆曲线 签名认证
1
c++ 椭圆曲线算法ECC基本参数的生成
2021-07-26 18:00:34 591KB c++ ECC 椭圆曲线算法
1
该实例是加密货币的椭圆曲线算法,使用C+编写。可以方便学习加密/签名,是做区块链项目的重要的一个子项目参考。
2021-07-13 17:08:27 10.16MB ECC Blockchain 数字货币加密
1
角-ecdsa angular-ecdsa 为 Angular.js 提供椭圆曲线加密库,用于比特币客户端。 它只是库的包装器。 工作正在进行中 欢迎拉取请求 使用模块 bower install angular-ecdsa 名为“ng-ecdsa”的模块可供您的应用程序使用 前任: angular.module('App',['ng-ecdsa']) .factory('Product', ['ecdsa', 'crypto','Coinkey','buffer'], function(ecdsa, crypto, coinkey, buffer){ var Buffer = new buffer.Buffer(); ... }); (注意 Coinkey 的“C”大写字母) 有关 ecdsa、crypto
2021-07-04 19:05:16 132KB JavaScript
1