We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Osx ALIGN is already defined on /usr/include(i386/param.h
I just renamed it from (ed25519-donna-portable-identify.h) into ALIGN2 and in the followings files :
curve25519-donna-32bit.h curve25519-donna-helpers.h curve25519-donna-sse2.h ed25519-donna-32bit-tables.h ed25519-donna-basepoint-table.h ed25519-donna-batchverify.h ed25519-donna-impl-sse2.h ed25519-donna-portable.h ed25519.c test-internals.c
and it works
for curve25519-donna i just add :
before
/* platform */
...
in file curve25519-donna-portable.h and its ok.
but for ed25519 its not so simple.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Osx ALIGN is already defined on /usr/include(i386/param.h
define ALIGN(p) __DARWIN_ALIGN(p)
I just renamed it from (ed25519-donna-portable-identify.h) into ALIGN2 and in the followings files :
curve25519-donna-32bit.h
curve25519-donna-helpers.h
curve25519-donna-sse2.h
ed25519-donna-32bit-tables.h
ed25519-donna-basepoint-table.h
ed25519-donna-batchverify.h
ed25519-donna-impl-sse2.h
ed25519-donna-portable.h
ed25519.c
test-internals.c
and it works
for curve25519-donna i just add :
ifdef ALIGN
undef ALIGN
endif
before
/* platform */
if defined(COMPILER_MSVC)
...
in file curve25519-donna-portable.h and its ok.
but for ed25519 its not so simple.
The text was updated successfully, but these errors were encountered: