下你所需,载你所想!
汇集开发技术源码资料

椭圆曲线加密算法

:252.943KB :1 :2022-10-10 15:08:03

部分简介

椭圆曲线加密算法如果开发者对于本文件有需要的可以参考。
椭圆曲线的工程实现
Elliptic Curve Cryptography Implementation in C Please refer to manual.pdf to use this implementation. This project implements the following-
1- Finite Field Arithmetic (of characteristic of Arbitrary precision)
2- Elliptic Curve Arithmetic
3- Attacks- Pollard Rho, Pohlig Hellman
4- Elliptic Curve Cryptosystems- Diffie-Hellman Key Exchange, Digital Signature Schemes (ECDSA, ELGAMAL), Public Key Encryption (ELGAMAL)
ECC-master
├── README.md
├── assets
│ ├── givpoly1.h
│ └── givpoly1io.inl
├── examples
│ ├── ECDSA.cpp
│ ├── ECDSA.sh
│ ├── ECDSAI
│ ├── ECarithmetic.cpp
│ ├── ECarithmetic.sh
│ ├── ECarithmeticI
│ ├── ECarithmetic_2_1_I
│ ├── ECarithmetic_2_2_I
│ ├── ELGAMAL_DSA.cpp
│ ├── ELGAMAL_DSA.sh
│ ├── ELGAMAL_DSAI
│ ├── ELGAMAL_Encryption.cpp
│ ├── ELGAMAL_Encryption.sh
│ ├── ELGAMAL_EncryptionI
│ ├── FiniteFieldArithmetic.cpp
│ ├── FiniteFieldArithmetic.sh
│ ├── FiniteFieldArithmeticI
│ ├── command.sh
│ ├── pohlig.cpp
│ ├── pohlig.sh
│ ├── pohligI
│ ├── pohlig_2_1_I
│ └── pohlig_2_2_I
├── manual.docx
├── manual.pdf
└── src
├── ECC.cpp
├── ECC.h
├── attacksECC.cpp
├── attacksECC.h
├── compile.sh
├── ellipticCurve.cpp
└── ellipticCurve.h
3 directories, 35 files

热门推荐

相关文章