mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
Minimal change to utilize ARM NEON capabilities
This commit is contained in:
parent
7fdcad8537
commit
c868e54734
2 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
||||||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||||
|
|
||||||
## [unreleased][unreleased]
|
## [unreleased][unreleased]
|
||||||
|
- Use 128 bit slices whenever ARM NEON is available to speed up hardnested (@Doridian)
|
||||||
- Fixed compilation of mfd_aes_brute on Apple M1 based Macs (@Doridian)
|
- Fixed compilation of mfd_aes_brute on Apple M1 based Macs (@Doridian)
|
||||||
- Changed calculation of companion ARM firmware hash to be uniform accross platforms (@Doridian)
|
- Changed calculation of companion ARM firmware hash to be uniform accross platforms (@Doridian)
|
||||||
- Changed `hf mf *` - verbose flag now also decode and prints found value blocks (@iceman1001)
|
- Changed `hf mf *` - verbose flag now also decode and prints found value blocks (@iceman1001)
|
||||||
|
|
|
@ -74,6 +74,8 @@ THE SOFTWARE.
|
||||||
#define MAX_BITSLICES 128
|
#define MAX_BITSLICES 128
|
||||||
#elif defined(__SSE2__)
|
#elif defined(__SSE2__)
|
||||||
#define MAX_BITSLICES 128
|
#define MAX_BITSLICES 128
|
||||||
|
#elif defined(__ARM_NEON)
|
||||||
|
#define MAX_BITSLICES 128
|
||||||
#else // MMX or SSE or NOSIMD
|
#else // MMX or SSE or NOSIMD
|
||||||
#define MAX_BITSLICES 64
|
#define MAX_BITSLICES 64
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue