| commit | 1899410f2dc938d965c03b3c12eab9814991866a | [log] [tgz] |
|---|---|---|
| author | Leonard Chan <leonardchan@google.com> | Thu May 25 23:57:22 2023 +0000 |
| committer | Prabhu Karthikeyan Rajasekaran <prabhukr@google.com> | Thu May 25 23:57:22 2023 +0000 |
| tree | 2b6797353ead40eb51da8525ffd768d374d65f90 | |
| parent | df3398e0c550f323afc00afd8faa3e08869f8874 [diff] |
micro-ecc: Never inline uECC_vli_add/sub/clear. Clang will unconditionally inline these large assembly functions at -Oz. This should be addressed upstream, but in the meantime, we can save some kilobytes by forcing them to never be inlined. Bug: b/244452330 Change-Id: I7a5974c659d717ae05e14878c1e3b3b29f89c279 Reviewed-on: https://pigweed-review.googlesource.com/c/third_party/github/kmackay/micro-ecc/+/149056 Reviewed-by: Prabhu Karthikeyan Rajasekaran <prabhukr@google.com>
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.
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.
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.
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).-fomit-frame-pointer GCC option (this is enabled by default when compiling with -O1 or higher).uECC_OPTIMIZATION_LEVEL >= 3, you must use the -fomit-frame-pointer GCC option (this is enabled by default when compiling with -O1 or higher).-O1 or higher).advapi32.lib system library.