No description
  • BitBake 80.8%
  • C++ 8.5%
  • C 7.9%
  • Python 2.8%
Find a file
Ken MacKay 541b3a7802
Merge pull request #230 from kmackay/hcca
Implement mitigation for hcca attack
2024-11-13 19:34:49 -08:00
examples/ecc_test Fix for #148 2020-10-07 12:09:37 -07:00
scripts Add fast multiply asm for AVR (#50) 2016-01-07 23:13:58 -08:00
test Add test vector for ECDSA secp256k1 2020-12-24 17:45:25 -08:00
.gitignore updates .gitignore to ignore *.a, *.o, and *.so 2023-03-22 16:53:45 -05:00
asm_arm.inc Update ARM inline assembly constraints. 2023-04-19 08:37:17 -07:00
asm_arm_mult_square.inc Add faster ARM multiplication code using UMAAL (#69) 2016-04-20 21:22:40 -07:00
asm_arm_mult_square_umaal.inc Add faster ARM multiplication code using UMAAL (#69) 2016-04-20 21:22:40 -07:00
asm_avr.inc Fix for #113 2020-10-07 12:27:10 -07:00
asm_avr_mult_square.inc Add fast square asm for AVR (#50) 2016-01-12 21:22:01 -08:00
curve-specific.inc Several fixes singled out in the pull request discussion thread. 2016-03-07 18:08:08 +01:00
emk_project.py Cleanup emk files 2020-10-07 12:26:35 -07:00
emk_rules.py Moved tests into their own subdirectory. 2014-04-01 21:24:55 -07:00
library.properties Add Arduino library manager support. 2017-02-11 16:50:31 +01:00
LICENSE.txt Add license. 2014-02-14 20:16:25 -08:00
platform-specific.inc Added RNG for nRF52 series. Fixed infinite for loop because of int - wordcount_t mismatch 2020-10-27 23:51:07 +01:00
README.md Update README.md 2018-03-28 21:12:10 +02:00
types.h Add faster ARM multiplication code using UMAAL (#69) 2016-04-20 21:22:40 -07:00
uECC.c Implement mitigation for hcca attack 2024-11-12 08:44:34 -08:00
uECC.h Add note about verifying public keys 2020-10-07 17:26:47 -07:00
uECC_vli.h Added new API functions: uECC_curve_num_bytes() and uECC_curve_num_n_bytes(). 2015-11-01 01:39:57 -07:00

micro-ecc

A small and fast ECDH and ECDSA implementation for 8-bit, 32-bit, and 64-bit processors.

The static version of micro-ecc (ie, where the curve was selected at compile-time) can be found in the "static" branch.

Features

  • Resistant to known side-channel attacks.
  • Written in C, with optional GCC inline assembly for AVR, ARM and Thumb platforms.
  • Supports 8, 32, and 64-bit architectures.
  • Small code size.
  • No dynamic memory allocation.
  • Support for 5 standard curves: secp160r1, secp192r1, secp224r1, secp256r1, and secp256k1.
  • BSD 2-clause license.

Usage Notes

Point Representation

Compressed points are represented in the standard format as defined in http://www.secg.org/sec1-v2.pdf; uncompressed points are represented in standard format, but without the 0x04 prefix. All functions except uECC_decompress() only accept uncompressed points; use uECC_compress() and uECC_decompress() to convert between compressed and uncompressed point representations.

Private keys are represented in the standard format.

Using the Code

I recommend just copying (or symlink) the uECC files into your project. Then just #include "uECC.h" to use the micro-ecc functions.

For use with Arduino, you can use the Library Manager to download micro-ecc (Sketch=>Include Library=>Manage Libraries). You can then use uECC just like any other Arduino library (uECC should show up in the Sketch=>Import Library submenu).

See uECC.h for documentation for each function.

Compilation Notes

  • Should compile with any C/C++ compiler that supports stdint.h (this includes Visual Studio 2013).
  • If you want to change the defaults for any of the uECC compile-time options (such as uECC_OPTIMIZATION_LEVEL), you must change them in your Makefile or similar so that uECC.c is compiled with the desired values (ie, compile uECC.c with -DuECC_OPTIMIZATION_LEVEL=3 or whatever).
  • When compiling for a Thumb-1 platform, you must use the -fomit-frame-pointer GCC option (this is enabled by default when compiling with -O1 or higher).
  • When compiling for an ARM/Thumb-2 platform with uECC_OPTIMIZATION_LEVEL >= 3, you must use the -fomit-frame-pointer GCC option (this is enabled by default when compiling with -O1 or higher).
  • When compiling for AVR, you must have optimizations enabled (compile with -O1 or higher).
  • When building for Windows, you will need to link in the advapi32.lib system library.