flipperzero-firmware/lib/micro-ecc
hedger 4d6b170769
[FL-2520] FW build with -Wextra (#1185)
* Fixing compiler warnings with -Wextra
* More warnings suppression, WIP
* Even more warning fixes
* Added new lines at end of text files.
* Padding fix
* Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline
* Fixes for Secplus v1
* -additional warnings
* +-Wredundant-decls fixes
* FuriHal: print stack overflow task name in console
* FuriHal: add missing include

Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2022-05-06 16:37:10 +03:00
..
asm_arm_mult_square_umaal.inc [FL-1958] U2F prototype (#879) 2021-12-22 23:04:08 +03:00
asm_arm_mult_square.inc [FL-1958] U2F prototype (#879) 2021-12-22 23:04:08 +03:00
asm_arm.inc [FL-2520] FW build with -Wextra (#1185) 2022-05-06 16:37:10 +03:00
curve-specific.inc [FL-2520] FW build with -Wextra (#1185) 2022-05-06 16:37:10 +03:00
LICENSE.txt [FL-1958] U2F prototype (#879) 2021-12-22 23:04:08 +03:00
platform-specific.inc [FL-1958] U2F prototype (#879) 2021-12-22 23:04:08 +03:00
README.md [FL-1958] U2F prototype (#879) 2021-12-22 23:04:08 +03:00
types.h [FL-1958] U2F prototype (#879) 2021-12-22 23:04:08 +03:00
uECC_vli.h [FL-1958] U2F prototype (#879) 2021-12-22 23:04:08 +03:00
uECC.c [FL-1958] U2F prototype (#879) 2021-12-22 23:04:08 +03:00
uECC.h [FL-1958] U2F prototype (#879) 2021-12-22 23:04:08 +03: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.