Add monocypher lib to src/3rdparty
This commit is contained in:
1
src/3rdparty/CMakeLists.txt
vendored
1
src/3rdparty/CMakeLists.txt
vendored
@@ -4,3 +4,4 @@ add_subdirectory(opengl)
|
||||
add_subdirectory(os2)
|
||||
add_subdirectory(cpp-btree)
|
||||
add_subdirectory(mingw-std-threads)
|
||||
add_subdirectory(monocypher)
|
||||
|
57
src/3rdparty/monocypher/AUTHORS.md
vendored
Normal file
57
src/3rdparty/monocypher/AUTHORS.md
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
Designers
|
||||
---------
|
||||
|
||||
- **Chacha20:** Daniel J. Bernstein.
|
||||
- **Poly1305:** Daniel J. Bernstein.
|
||||
- **Blake2:** Jean-Philippe Aumasson, Christian Winnerlein, Samuel Neves,
|
||||
and Zooko Wilcox-O'Hearn
|
||||
- **Argon2:** Alex Biryukov, Daniel Dinu, and Dmitry Khovratovich
|
||||
- **X25519:** Daniel J. Bernstein
|
||||
- **EdDSA:** Daniel J. Bernstein, Bo-Yin Yang, Niels Duif, Peter
|
||||
Schwabe, and Tanja Lange
|
||||
|
||||
Implementors
|
||||
------------
|
||||
|
||||
- **Chacha20:** Loup Vaillant, implemented from spec.
|
||||
- **Poly1305:** Loup Vaillant, implemented from spec.
|
||||
- **Blake2b:** Loup Vaillant, implemented from spec.
|
||||
- **Argon2i:** Loup Vaillant, implemented from spec.
|
||||
- **X25519:** Daniel J. Bernstein, taken and packaged from SUPERCOP
|
||||
ref10.
|
||||
- **EdDSA:** Loup Vaillant, with bits and pieces from SUPERCOP ref10.
|
||||
|
||||
Test suite
|
||||
----------
|
||||
|
||||
Designed and implemented by Loup Vaillant, using _libsodium_ (by many
|
||||
authors), and _ed25519-donna_ (by Andrew Moon —floodyberry).
|
||||
|
||||
Manual
|
||||
------
|
||||
|
||||
Loup Vaillant, Fabio Scotoni, and Michael Savage.
|
||||
|
||||
- Loup Vaillant did a first draft.
|
||||
- Fabio Scotoni rewrote the manual into proper man pages (and
|
||||
substantially changed it in the process).
|
||||
- Michael Savage did extensive editing and proofreading.
|
||||
|
||||
Thanks
|
||||
------
|
||||
|
||||
Fabio Scotoni provided much needed advice about testing, interface,
|
||||
packaging, and the general direction of the whole project. He also
|
||||
redesigned monocypher.org style sheets.
|
||||
|
||||
Mike Pechkin and André Maroneze found bugs in earlier versions of
|
||||
Monocypher.
|
||||
|
||||
Andrew Moon clarified carry propagation in modular arithmetic, and
|
||||
provided advice and code that significantly simplified and improved
|
||||
Elligator2 mappings.
|
||||
|
||||
Mike Hamburg explained comb algorithms, including the signed
|
||||
all-bits-set comb described in his 2012 paper, Fast and compact
|
||||
elliptic-curve cryptography. This made EdDSA signatures over twice as
|
||||
fast.
|
244
src/3rdparty/monocypher/CHANGELOG.md
vendored
Normal file
244
src/3rdparty/monocypher/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,244 @@
|
||||
3.1.2
|
||||
-----
|
||||
2020/12/27
|
||||
|
||||
- Addressed issues from Cure53's audit:
|
||||
- MON-01-001: Clarified which CSPRNG to use on Darwin.
|
||||
- MON-01-002: Won't fix (nonce handling is a core design decision).
|
||||
- MON-01-004: Compared with Kleshni's implementation.
|
||||
- MON-01-005: Split a dedicated "advanced" folder in the manual.
|
||||
- Quality assurance for 2^255-19 arithmetic (elliptic curves):
|
||||
- Documented carry propagation.
|
||||
- Enforced slightly safer invariants.
|
||||
- Improved the speed of EdDSA signature generation.
|
||||
- Made the vectors.h header more compact and easier to modify.
|
||||
- TIS-CI integration.
|
||||
- Added speed benchmark for ed25519-donna.
|
||||
- Documented lengths limits of `crypto_ietf_chacha20()`
|
||||
|
||||
|
||||
3.1.1
|
||||
-----
|
||||
2020/06/15
|
||||
|
||||
- Various documentation fixes.
|
||||
- Fixed various compiler warnings.
|
||||
- Fixed some integer overflows (16-bit platforms only).
|
||||
|
||||
|
||||
3.1.0
|
||||
-----
|
||||
2020/04/03
|
||||
|
||||
- Added Elligator 2 mappings (hash to curve, curve to hash).
|
||||
- Added OPRF support (with scalar inversion).
|
||||
- Added Edwards25519 -> Curve25519 conversions
|
||||
|
||||
|
||||
3.0.0
|
||||
-----
|
||||
2020/01/19
|
||||
|
||||
- Deprecated the incremental AEAD interface.
|
||||
- Deprecated the incremental Chacha20, added a direct interface.
|
||||
- Added IETF Chacha20 (96-bit nonce), as described in RFC 8439.
|
||||
- Moved deprecated interfaces to a separate `src/deprecated` folder.
|
||||
- Removed the `ED25519_SHA512` preprocessor flag.
|
||||
- `crypto_x25519()` and `crypto_key_exchange()` now return `void`.
|
||||
- Added a custom hash interface to EdDSA. Several instances of EdDSA
|
||||
can share the same binary.
|
||||
- Added optional support for HMAC SHA-512
|
||||
- Moved all SHA-512 operations to `src/optional/monocypher-ed25519.(h|c)`
|
||||
- Optional support for Ed25519 no longer requires a preprocessor flag.
|
||||
Add `src/optional/monocypher-ed25519.(h|c)` to your project instead.
|
||||
|
||||
|
||||
2.0.6
|
||||
-----
|
||||
2019/10/21
|
||||
|
||||
- Added the `BLAKE2_NO_UNROLLING` preprocessor definition. Activating it
|
||||
makes the binary about 5KB smaller, and speeds up processing times on
|
||||
many embedded processors.
|
||||
- Reduced the stack usage of signature verification by about
|
||||
40%. Signature verification now fits in smaller machines.
|
||||
- Fixed many implicit casts warnings.
|
||||
- Fixed the manual here and there.
|
||||
- Lots of small nitpicks.
|
||||
|
||||
|
||||
2.0.5
|
||||
-----
|
||||
2018/08/23
|
||||
|
||||
- Faster EdDSA signatures and verification. Like, 4 times as fast.
|
||||
|
||||
|
||||
2.0.4
|
||||
-----
|
||||
2018/06/24
|
||||
|
||||
- Corrected a critical vulnerability in EdDSA, where crypto_check() was
|
||||
accepting invalid signatures. (Found by Mike Pechkin.) The current
|
||||
fix removes a buggy optimisation, effectively halving the performance
|
||||
of EdDSA.
|
||||
- The test suite no longer tries to allocate zero bytes (some platforms
|
||||
fail such an allocation).
|
||||
|
||||
2.0.3
|
||||
-----
|
||||
2018/06/16
|
||||
|
||||
- Corrected undefined behaviour in Blake2b
|
||||
- Improved the test suite (faster, better coverage)
|
||||
|
||||
2.0.2
|
||||
-----
|
||||
2018/04/23
|
||||
|
||||
- Corrected a couple failures to wipe secret buffers.
|
||||
- Corrected a bug that prevented compilation in Ed25519 mode.
|
||||
- Adjusted the number of test vectors in the test suite.
|
||||
- Improved tests for incremental interfaces.
|
||||
- Replaced the GNU all permissive licence by a public domain dedication
|
||||
(Creative Commons CC-0). The BSD licence remains as a fallback.
|
||||
|
||||
2.0.1
|
||||
-----
|
||||
2018/03/07
|
||||
|
||||
- Followed a systematic pattern for the loading code of symmetric
|
||||
crypto. It is now easier to review.
|
||||
- Tweaked Poly1305 code to make it easier to prove correct.
|
||||
|
||||
2.0.0
|
||||
-----
|
||||
2018/02/14
|
||||
|
||||
- Changed the authenticated encryption format. It now conforms to
|
||||
RFC 7539, with one exception: it uses XChacha20 initialisation instead
|
||||
of the IETF version of Chacha20. This new format conforms to
|
||||
Libsodium's `crypto_aead_xchacha20poly1305_ietf_encrypt`.
|
||||
- Removed `crypto_lock_encrypt()` and `crypto_lock_auth()`.
|
||||
- Renamed `crypto_lock_aead_auth()` to `crypto_lock_auth_ad()`.
|
||||
- Renamed `crypto_unlock_aead_auth()` to `crypto_unlock_auth_ad()`.
|
||||
- Added `crypto_lock_auth_message()` and `crypto_unlock_auth_message()`
|
||||
- Renamed `crypto_aead_lock` to `crypto_lock_aead`;
|
||||
- Renamed `crypto_aead_unlock` to `crypto_unlock_aead`;
|
||||
|
||||
The format change facilitates optimisation by aligning data to block
|
||||
boundaries. The API changes increase consistency.
|
||||
|
||||
1.1.0
|
||||
-----
|
||||
2018/02/06
|
||||
|
||||
- Rewrote the manual into proper man pages.
|
||||
- Added incremental interfaces for authenticated encryption and
|
||||
signatures.
|
||||
- A couple breaking API changes, easily fixed by renaming the affected
|
||||
functions.
|
||||
|
||||
1.0.1
|
||||
-----
|
||||
2017/07/23
|
||||
|
||||
- Optimised the loading and unloading code of the symmetric crypto
|
||||
(Blake2b, sha512, Chacha20, and Poly1305).
|
||||
- Fused self contained tests together for easier analysis with Frama-C
|
||||
and the TIS interpreter.
|
||||
|
||||
1.0
|
||||
---
|
||||
2017/07/18
|
||||
|
||||
- Renamed `crypto_chacha20_Xinit` to `crypto_chacha20_x_init`, for
|
||||
consistency reasons (snake case everywhere).
|
||||
- Fixed signed integer overflow detected by UBSan.
|
||||
- Doubled the speed of EdDSA by performing the scalar product in
|
||||
Montgomery space.
|
||||
|
||||
0.8
|
||||
---
|
||||
2017/07/06
|
||||
|
||||
- Added about a hundred lines of code to improve performance of public
|
||||
key cryptography. Diffie-Hellman is now 20% faster than before.
|
||||
(The effects are less pronounces for EdDSA).
|
||||
- Added random self-consistency tests.
|
||||
- Added a speed benchmark against libsodium.
|
||||
|
||||
0.7
|
||||
---
|
||||
2017/06/07
|
||||
|
||||
- Slightly changed the authenticated encryption API. Functions are
|
||||
now all in "detached" mode. The reason is better support for
|
||||
authenticated encryption _without_ additional data.
|
||||
- Rewrote Blake2b from spec, so it can use the same licence as
|
||||
everything else.
|
||||
- Added random tests that compare Monocypher with libsodium and
|
||||
ed25519-donna.
|
||||
- Added explicit support for Frama-C analysis (this doesn't affect the
|
||||
source code)
|
||||
|
||||
0.6
|
||||
---
|
||||
2017/03/17
|
||||
|
||||
- Fixed incorrect poly1305 output on empty messages. (Found by Mike
|
||||
Pechkin.)
|
||||
|
||||
0.5
|
||||
---
|
||||
2017/03/10
|
||||
|
||||
- Fixed many undefined behaviours in curve25519, that occur whenever
|
||||
we perform a left shift on a signed negative integer. It doesn't
|
||||
affect the generated code, but you never know. (Found with Frama-C
|
||||
by André Maroneze.)
|
||||
|
||||
Fun fact: TweetNaCl and ref10 have the same bug. Libsodium have
|
||||
corrected the issue, though.
|
||||
|
||||
For those who don't comprehend the magnitude of this madness, the
|
||||
expression `-1 << 3` is undefined in C. This is explained in
|
||||
section 6.5.7(§4) of the C11 standard.
|
||||
|
||||
0.4
|
||||
---
|
||||
2017/03/09
|
||||
|
||||
- Fixed critical bug causing Argon2i to fail whenever it uses more
|
||||
than 512 blocks. It was reading uninitialised memory, and the
|
||||
results were incorrect. (Found by Mike Pechkin.)
|
||||
- Fixed an undefined behaviour in curve25519 (`fe_tobytes()`). It was
|
||||
accessing uninitialised memory, before throwing it away. It didn't
|
||||
affect the compiled code nor the results, but you never know.
|
||||
(Found with [Frama-C](http://frama-c.com) by André Maroneze.)
|
||||
|
||||
0.3
|
||||
---
|
||||
2017/02/27
|
||||
|
||||
- Got the invariants of poly1305 right, put them in the comments.
|
||||
There was no bug, but that was lucky (turned out the IETF test
|
||||
vectors were designed to trigger the bugs I was afraid of).
|
||||
- Simplified poly1305 finalisation (replaced conditional subtraction
|
||||
by a carry propagation).
|
||||
- Made a few cosmetic changes here and there.
|
||||
|
||||
0.2
|
||||
---
|
||||
????/??/??
|
||||
|
||||
- Public interface significantly reworked. Removed redundant, hard to
|
||||
mess up constructions.
|
||||
- Added AEAD.
|
||||
- Sped up curve25519 by a factor of more than 6 (switched to ref10
|
||||
arithmetic)
|
||||
- Added various test vectors, completed the consistency tests.
|
||||
|
||||
0.1
|
||||
---
|
||||
2016/??/??
|
4
src/3rdparty/monocypher/CMakeLists.txt
vendored
Normal file
4
src/3rdparty/monocypher/CMakeLists.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
add_files(
|
||||
monocypher.h
|
||||
monocypher.c
|
||||
)
|
173
src/3rdparty/monocypher/LICENCE.md
vendored
Normal file
173
src/3rdparty/monocypher/LICENCE.md
vendored
Normal file
@@ -0,0 +1,173 @@
|
||||
Monocypher as a whole is dual-licensed. Choose whichever licence you
|
||||
want from the two licences listed below.
|
||||
|
||||
The first licence is a regular 2-clause BSD licence. The second licence
|
||||
is the CC-0 from Creative Commons. It is intended to release Monocypher
|
||||
to the public domain. The BSD licence serves as a fallback option.
|
||||
|
||||
See the individual files for specific information about who contributed
|
||||
to what file during which years. See below for special notes.
|
||||
|
||||
Licence 1 (2-clause BSD)
|
||||
------------------------
|
||||
|
||||
Copyright (c) 2017-2020, Loup Vaillant
|
||||
Copyright (c) 2017-2019, Michael Savage
|
||||
Copyright (c) 2017-2020, Fabio Scotoni
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the
|
||||
distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
|
||||
Licence 2 (CC-0)
|
||||
----------------
|
||||
|
||||
> CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
> LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
||||
> ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
> INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
> REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
||||
> PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
||||
> THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
||||
> HEREUNDER.
|
||||
|
||||
### Statement of Purpose
|
||||
|
||||
The laws of most jurisdictions throughout the world automatically confer
|
||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
||||
and subsequent owner(s) (each and all, an "owner") of an original work
|
||||
of authorship and/or a database (each, a "Work").
|
||||
|
||||
Certain owners wish to permanently relinquish those rights to a Work for
|
||||
the purpose of contributing to a commons of creative, cultural and
|
||||
scientific works ("Commons") that the public can reliably and without
|
||||
fear of later claims of infringement build upon, modify, incorporate in
|
||||
other works, reuse and redistribute as freely as possible in any form
|
||||
whatsoever and for any purposes, including without limitation commercial
|
||||
purposes. These owners may contribute to the Commons to promote the
|
||||
ideal of a free culture and the further production of creative, cultural
|
||||
and scientific works, or to gain reputation or greater distribution for
|
||||
their Work in part through the use and efforts of others.
|
||||
|
||||
For these and/or other purposes and motivations, and without any
|
||||
expectation of additional consideration or compensation, the person
|
||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or
|
||||
she is an owner of Copyright and Related Rights in the Work, voluntarily
|
||||
elects to apply CC0 to the Work and publicly distribute the Work under
|
||||
its terms, with knowledge of his or her Copyright and Related Rights in
|
||||
the Work and the meaning and intended legal effect of CC0 on those
|
||||
rights.
|
||||
|
||||
1. **Copyright and Related Rights.** A Work made available under CC0 may
|
||||
be protected by copyright and related or neighboring rights
|
||||
("Copyright and Related Rights"). Copyright and Related Rights
|
||||
include, but are not limited to, the following:
|
||||
|
||||
- the right to reproduce, adapt, distribute, perform, display,
|
||||
communicate, and translate a Work;
|
||||
- moral rights retained by the original author(s) and/or
|
||||
performer(s); publicity and privacy rights pertaining to a person's
|
||||
image or likeness depicted in a Work;
|
||||
- rights protecting against unfair competition in regards to a Work,
|
||||
subject to the limitations in paragraph 4(a), below;
|
||||
- rights protecting the extraction, dissemination, use and reuse of
|
||||
data in a Work;
|
||||
- database rights (such as those arising under Directive 96/9/EC of
|
||||
the European Parliament and of the Council of 11 March 1996 on the
|
||||
legal protection of databases, and under any national
|
||||
implementation thereof, including any amended or successor version
|
||||
of such directive); and
|
||||
- other similar, equivalent or corresponding rights throughout the
|
||||
world based on applicable law or treaty, and any national
|
||||
implementations thereof.
|
||||
|
||||
2. **Waiver.** To the greatest extent permitted by, but not in
|
||||
contravention of, applicable law, Affirmer hereby overtly, fully,
|
||||
permanently, irrevocably and unconditionally waives, abandons, and
|
||||
surrenders all of Affirmer's Copyright and Related Rights and
|
||||
associated claims and causes of action, whether now known or unknown
|
||||
(including existing as well as future claims and causes of action),
|
||||
in the Work (i) in all territories worldwide, (ii) for the maximum
|
||||
duration provided by applicable law or treaty (including future time
|
||||
extensions), (iii) in any current or future medium and for any number
|
||||
of copies, and (iv) for any purpose whatsoever, including without
|
||||
limitation commercial, advertising or promotional purposes (the
|
||||
"Waiver"). Affirmer makes the Waiver for the benefit of each member
|
||||
of the public at large and to the detriment of Affirmer's heirs and
|
||||
successors, fully intending that such Waiver shall not be subject to
|
||||
revocation, rescission, cancellation, termination, or any other legal
|
||||
or equitable action to disrupt the quiet enjoyment of the Work by the
|
||||
public as contemplated by Affirmer's express Statement of Purpose.
|
||||
|
||||
3. **Public License Fallback.** Should any part of the Waiver for any
|
||||
reason be judged legally invalid or ineffective under applicable law,
|
||||
then the Waiver shall be preserved to the maximum extent permitted
|
||||
taking into account Affirmer's express Statement of Purpose. In
|
||||
addition, to the extent the Waiver is so judged Affirmer hereby
|
||||
grants to each affected person a royalty-free, non transferable, non
|
||||
sublicensable, non exclusive, irrevocable and unconditional license
|
||||
to exercise Affirmer's Copyright and Related Rights in the Work (i)
|
||||
in all territories worldwide, (ii) for the maximum duration provided
|
||||
by applicable law or treaty (including future time extensions), (iii)
|
||||
in any current or future medium and for any number of copies, and
|
||||
(iv) for any purpose whatsoever, including without limitation
|
||||
commercial, advertising or promotional purposes (the "License"). The
|
||||
License shall be deemed effective as of the date CC0 was applied by
|
||||
Affirmer to the Work. Should any part of the License for any reason
|
||||
be judged legally invalid or ineffective under applicable law, such
|
||||
partial invalidity or ineffectiveness shall not invalidate the
|
||||
remainder of the License, and in such case Affirmer hereby affirms
|
||||
that he or she will not (i) exercise any of his or her remaining
|
||||
Copyright and Related Rights in the Work or (ii) assert any
|
||||
associated claims and causes of action with respect to the Work, in
|
||||
either case contrary to Affirmer's express Statement of Purpose.
|
||||
|
||||
4. **Limitations and Disclaimers.**
|
||||
|
||||
- No trademark or patent rights held by Affirmer are waived,
|
||||
abandoned, surrendered, licensed or otherwise affected by this
|
||||
document.
|
||||
- Affirmer offers the Work as-is and makes no representations or
|
||||
warranties of any kind concerning the Work, express, implied,
|
||||
statutory or otherwise, including without limitation warranties of
|
||||
title, merchantability, fitness for a particular purpose, non
|
||||
infringement, or the absence of latent or other defects, accuracy,
|
||||
or the present or absence of errors, whether or not discoverable,
|
||||
all to the greatest extent permissible under applicable law.
|
||||
- Affirmer disclaims responsibility for clearing rights of other
|
||||
persons that may apply to the Work or any use thereof, including
|
||||
without limitation any person's Copyright and Related Rights in the
|
||||
Work. Further, Affirmer disclaims responsibility for obtaining any
|
||||
necessary consents, permissions or other rights required for any
|
||||
use of the Work.
|
||||
- Affirmer understands and acknowledges that Creative Commons is not
|
||||
a party to this document and has no duty or obligation with respect
|
||||
to this CC0 or use of the Work.
|
||||
|
||||
Special notes
|
||||
-------------
|
||||
|
||||
The files in `tests/externals/` were placed in the public domain by
|
||||
their respective authors. See the `AUTHORS.md` files in each directory.
|
178
src/3rdparty/monocypher/README.md
vendored
Normal file
178
src/3rdparty/monocypher/README.md
vendored
Normal file
@@ -0,0 +1,178 @@
|
||||
Monocypher
|
||||
----------
|
||||
|
||||
Monocypher is an easy to use, easy to deploy, auditable crypto library
|
||||
written in portable C. It approaches the size of [TweetNaCl][] and the
|
||||
speed of [Libsodium][].
|
||||
|
||||
[Official site.](https://monocypher.org/)
|
||||
[Official releases.](https://monocypher.org/download/)
|
||||
|
||||
[Libsodium]: https://libsodium.org
|
||||
[TweetNaCl]: https://tweetnacl.cr.yp.to/
|
||||
|
||||
Manual
|
||||
------
|
||||
|
||||
The manual can be found at https://monocypher.org/manual/, and in the
|
||||
`doc/` folder.
|
||||
|
||||
The `doc/man/` folder contains the man pages. You can install them in
|
||||
your system by running `make install-doc`. Official releases also have a
|
||||
`doc/html/` folder with an html version.
|
||||
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
### Option 1: grab the sources
|
||||
|
||||
The easiest way to use Monocypher is to include `src/monocypher.h` and
|
||||
`src/monocypher.c` directly into your project. They compile as C (since
|
||||
C99) and C++ (since C++98).
|
||||
|
||||
|
||||
### Option 2: grab the library
|
||||
|
||||
Run `make`, then grab the `src/monocypher.h` header and either the
|
||||
`lib/libmonocypher.a` or `lib/libmonocypher.so` library. The default
|
||||
compiler is `gcc -std=gnu99`, and the default flags are `-pedantic -Wall
|
||||
-Wextra -O3 -march=native`. If they don't work on your platform, you
|
||||
can change them like this:
|
||||
|
||||
$ make CC="clang -std=c99" CFLAGS="-O2"
|
||||
|
||||
### Option 3: install it on your system
|
||||
|
||||
The following should work on most UNIX systems:
|
||||
|
||||
$ make install
|
||||
|
||||
This will install Monocypher in `/usr/local/` by default. Libraries
|
||||
will go to `/usr/local/lib/`, the header in `/usr/local/include/`, and
|
||||
the man pages in `/usr/local/share/man/man3`. You can change those
|
||||
defaults with the `PREFIX` and `DESTDIR` variables thus:
|
||||
|
||||
$ make install PREFIX="/opt"
|
||||
|
||||
Once installed, you can use `pkg-config` to compile and link your
|
||||
program. For instance, if you have a one file C project that uses
|
||||
Monocypher, you can compile it thus:
|
||||
|
||||
$ gcc -o myProgram myProgram.c \
|
||||
$(pkg-config monocypher --cflags) \
|
||||
$(pkg-config monocypher --libs)
|
||||
|
||||
The `cflags` line gives the include path for monocypher.h, and the
|
||||
`libs` line provides the link path and option required to find
|
||||
`libmonocypher.a` (or `libmonocypher.so`).
|
||||
|
||||
|
||||
Test suite
|
||||
----------
|
||||
|
||||
$ make test
|
||||
|
||||
It should display a nice printout of all the tests, all starting with
|
||||
"OK". If you see "FAILURE" anywhere, something has gone very wrong
|
||||
somewhere.
|
||||
|
||||
*Do not* use Monocypher without running those tests at least once.
|
||||
|
||||
The same test suite can be run under Clang sanitisers and Valgrind, and
|
||||
be checked for code coverage:
|
||||
|
||||
$ tests/test.sh
|
||||
$ tests/coverage.sh
|
||||
|
||||
|
||||
### Serious auditing
|
||||
|
||||
The code may be analysed more formally with [Frama-c][] and the
|
||||
[TIS interpreter][TIS]. To analyse the code with Frama-c, run:
|
||||
|
||||
$ tests/formal-analysis.sh
|
||||
$ tests/frama-c.sh
|
||||
|
||||
This will have Frama-c parse, and analyse the code, then launch a GUI.
|
||||
You must have Frama-c installed. See `frama-c.sh` for the recommended
|
||||
settings. To run the code under the TIS interpreter, run
|
||||
|
||||
$ tests/formal-analysis.sh
|
||||
$ tis-interpreter.sh --cc -Dvolatile= tests/formal-analysis/*.c
|
||||
|
||||
Notes:
|
||||
|
||||
- `tis-interpreter.sh` is part of TIS. If it is not in your path,
|
||||
adjust the command accordingly.
|
||||
|
||||
- The TIS interpreter sometimes fails to evaluate correct programs when
|
||||
they use the `volatile` keyword (which is only used as an attempt to
|
||||
prevent dead store elimination for memory wipes). The `-cc
|
||||
-Dvolatile=` option works around that bug by ignoring `volatile`
|
||||
altogether.
|
||||
|
||||
[Frama-c]:https://frama-c.com/
|
||||
[TIS]: https://trust-in-soft.com/tis-interpreter/
|
||||
|
||||
|
||||
Speed benchmark
|
||||
---------------
|
||||
|
||||
$ make speed
|
||||
|
||||
This will give you an idea how fast Monocypher is on your machine. Make
|
||||
sure you run it on the target platform if performance is a concern. If
|
||||
Monocypher is too slow, try Libsodium. If you're not sure, you can
|
||||
always switch later.
|
||||
|
||||
|
||||
Note: the speed benchmark currently requires the POSIX
|
||||
`clock_gettime()` function.
|
||||
|
||||
There are similar benchmarks for Libsodium, TweetNaCl, LibHydrogen,
|
||||
c25519, and ed25519-donna (the portable, 32-bit version):
|
||||
|
||||
$ make speed-sodium
|
||||
$ make speed-tweetnacl
|
||||
$ make speed-hydrogen
|
||||
$ make speed-c25519
|
||||
$ make speed-donna
|
||||
|
||||
(The `speed-hydrogen` target assumes it has pkg-config installed. Try
|
||||
`make pkg-config-libhydrogen` as root if it is not.)
|
||||
|
||||
You can also adjust the optimisation options for Monocypher, TweetNaCl,
|
||||
and c25519 (the default is `-O3 march=native`):
|
||||
|
||||
$ make speed CFLAGS="-O2"
|
||||
$ make speed-tweetnacl CFLAGS="-O2"
|
||||
|
||||
|
||||
Customisation
|
||||
-------------
|
||||
|
||||
Monocypher has optional compatibility with Ed25519. To have that, add
|
||||
`monocypher-ed25519.h` and `monocypher-ed25519.c` provided in
|
||||
`src/optional` to your project. If you're using the makefile, define
|
||||
the `USE_ED25519` variable to link it to monocypher.a and monocypher.so:
|
||||
|
||||
$ make USE_ED25519=true
|
||||
|
||||
If you install Monocypher with the makefile, you also need that option
|
||||
to copy `monocypher-ed25519.h` automatically:
|
||||
|
||||
$ make install USE_ED25519=true
|
||||
|
||||
Monocypher also has the `BLAKE2_NO_UNROLLING` preprocessor flag, which
|
||||
is activated by compiling monocypher.c with the `-DBLAKE2_NO_UNROLLING`
|
||||
option.
|
||||
|
||||
The `-DBLAKE2_NO_UNROLLING` option is a performance tweak. By default,
|
||||
Monocypher unrolls the Blake2b inner loop, because doing so is over 25%
|
||||
faster on modern processors. Some embedded processors however, run the
|
||||
unrolled loop _slower_ (possibly because of the cost of fetching 5KB of
|
||||
additional code). If you're using an embedded platform, try this
|
||||
option. The binary will be about 5KB smaller, and in some cases faster.
|
||||
|
||||
|
3035
src/3rdparty/monocypher/monocypher.c
vendored
Normal file
3035
src/3rdparty/monocypher/monocypher.c
vendored
Normal file
File diff suppressed because it is too large
Load Diff
382
src/3rdparty/monocypher/monocypher.h
vendored
Normal file
382
src/3rdparty/monocypher/monocypher.h
vendored
Normal file
@@ -0,0 +1,382 @@
|
||||
// Monocypher version 3.1.2
|
||||
//
|
||||
// This file is dual-licensed. Choose whichever licence you want from
|
||||
// the two licences listed below.
|
||||
//
|
||||
// The first licence is a regular 2-clause BSD licence. The second licence
|
||||
// is the CC-0 from Creative Commons. It is intended to release Monocypher
|
||||
// to the public domain. The BSD licence serves as a fallback option.
|
||||
//
|
||||
// SPDX-License-Identifier: BSD-2-Clause OR CC0-1.0
|
||||
//
|
||||
// ------------------------------------------------------------------------
|
||||
//
|
||||
// Copyright (c) 2017-2019, Loup Vaillant
|
||||
// All rights reserved.
|
||||
//
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// 1. Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
//
|
||||
// 2. Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in the
|
||||
// documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
//
|
||||
// ------------------------------------------------------------------------
|
||||
//
|
||||
// Written in 2017-2019 by Loup Vaillant
|
||||
//
|
||||
// To the extent possible under law, the author(s) have dedicated all copyright
|
||||
// and related neighboring rights to this software to the public domain
|
||||
// worldwide. This software is distributed without any warranty.
|
||||
//
|
||||
// You should have received a copy of the CC0 Public Domain Dedication along
|
||||
// with this software. If not, see
|
||||
// <https://creativecommons.org/publicdomain/zero/1.0/>
|
||||
|
||||
#ifndef MONOCYPHER_H
|
||||
#define MONOCYPHER_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
////////////////////////
|
||||
/// Type definitions ///
|
||||
////////////////////////
|
||||
|
||||
// Vtable for EdDSA with a custom hash.
|
||||
// Instantiate it to define a custom hash.
|
||||
// Its size, contents, and layout, are part of the public API.
|
||||
typedef struct {
|
||||
void (*hash)(uint8_t hash[64], const uint8_t *message, size_t message_size);
|
||||
void (*init )(void *ctx);
|
||||
void (*update)(void *ctx, const uint8_t *message, size_t message_size);
|
||||
void (*final )(void *ctx, uint8_t hash[64]);
|
||||
size_t ctx_size;
|
||||
} crypto_sign_vtable;
|
||||
|
||||
// Do not rely on the size or contents of any of the types below,
|
||||
// they may change without notice.
|
||||
|
||||
// Poly1305
|
||||
typedef struct {
|
||||
uint32_t r[4]; // constant multiplier (from the secret key)
|
||||
uint32_t h[5]; // accumulated hash
|
||||
uint32_t c[5]; // chunk of the message
|
||||
uint32_t pad[4]; // random number added at the end (from the secret key)
|
||||
size_t c_idx; // How many bytes are there in the chunk.
|
||||
} crypto_poly1305_ctx;
|
||||
|
||||
// Hash (Blake2b)
|
||||
typedef struct {
|
||||
uint64_t hash[8];
|
||||
uint64_t input_offset[2];
|
||||
uint64_t input[16];
|
||||
size_t input_idx;
|
||||
size_t hash_size;
|
||||
} crypto_blake2b_ctx;
|
||||
|
||||
// Signatures (EdDSA)
|
||||
typedef struct {
|
||||
const crypto_sign_vtable *hash;
|
||||
uint8_t buf[96];
|
||||
uint8_t pk [32];
|
||||
} crypto_sign_ctx_abstract;
|
||||
typedef crypto_sign_ctx_abstract crypto_check_ctx_abstract;
|
||||
|
||||
typedef struct {
|
||||
crypto_sign_ctx_abstract ctx;
|
||||
crypto_blake2b_ctx hash;
|
||||
} crypto_sign_ctx;
|
||||
typedef crypto_sign_ctx crypto_check_ctx;
|
||||
|
||||
////////////////////////////
|
||||
/// High level interface ///
|
||||
////////////////////////////
|
||||
|
||||
// Constant time comparisons
|
||||
// -------------------------
|
||||
|
||||
// Return 0 if a and b are equal, -1 otherwise
|
||||
int crypto_verify16(const uint8_t a[16], const uint8_t b[16]);
|
||||
int crypto_verify32(const uint8_t a[32], const uint8_t b[32]);
|
||||
int crypto_verify64(const uint8_t a[64], const uint8_t b[64]);
|
||||
|
||||
// Erase sensitive data
|
||||
// --------------------
|
||||
|
||||
// Please erase all copies
|
||||
void crypto_wipe(void *secret, size_t size);
|
||||
|
||||
|
||||
// Authenticated encryption
|
||||
// ------------------------
|
||||
void crypto_lock(uint8_t mac[16],
|
||||
uint8_t *cipher_text,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[24],
|
||||
const uint8_t *plain_text, size_t text_size);
|
||||
int crypto_unlock(uint8_t *plain_text,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[24],
|
||||
const uint8_t mac[16],
|
||||
const uint8_t *cipher_text, size_t text_size);
|
||||
|
||||
// With additional data
|
||||
void crypto_lock_aead(uint8_t mac[16],
|
||||
uint8_t *cipher_text,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[24],
|
||||
const uint8_t *ad , size_t ad_size,
|
||||
const uint8_t *plain_text, size_t text_size);
|
||||
int crypto_unlock_aead(uint8_t *plain_text,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[24],
|
||||
const uint8_t mac[16],
|
||||
const uint8_t *ad , size_t ad_size,
|
||||
const uint8_t *cipher_text, size_t text_size);
|
||||
|
||||
|
||||
// General purpose hash (Blake2b)
|
||||
// ------------------------------
|
||||
|
||||
// Direct interface
|
||||
void crypto_blake2b(uint8_t hash[64],
|
||||
const uint8_t *message, size_t message_size);
|
||||
|
||||
void crypto_blake2b_general(uint8_t *hash , size_t hash_size,
|
||||
const uint8_t *key , size_t key_size, // optional
|
||||
const uint8_t *message, size_t message_size);
|
||||
|
||||
// Incremental interface
|
||||
void crypto_blake2b_init (crypto_blake2b_ctx *ctx);
|
||||
void crypto_blake2b_update(crypto_blake2b_ctx *ctx,
|
||||
const uint8_t *message, size_t message_size);
|
||||
void crypto_blake2b_final (crypto_blake2b_ctx *ctx, uint8_t *hash);
|
||||
|
||||
void crypto_blake2b_general_init(crypto_blake2b_ctx *ctx, size_t hash_size,
|
||||
const uint8_t *key, size_t key_size);
|
||||
|
||||
// vtable for signatures
|
||||
extern const crypto_sign_vtable crypto_blake2b_vtable;
|
||||
|
||||
|
||||
// Password key derivation (Argon2 i)
|
||||
// ----------------------------------
|
||||
void crypto_argon2i(uint8_t *hash, uint32_t hash_size, // >= 4
|
||||
void *work_area, uint32_t nb_blocks, // >= 8
|
||||
uint32_t nb_iterations, // >= 3
|
||||
const uint8_t *password, uint32_t password_size,
|
||||
const uint8_t *salt, uint32_t salt_size); // >= 8
|
||||
|
||||
void crypto_argon2i_general(uint8_t *hash, uint32_t hash_size,// >= 4
|
||||
void *work_area, uint32_t nb_blocks,// >= 8
|
||||
uint32_t nb_iterations, // >= 3
|
||||
const uint8_t *password, uint32_t password_size,
|
||||
const uint8_t *salt, uint32_t salt_size,// >= 8
|
||||
const uint8_t *key, uint32_t key_size,
|
||||
const uint8_t *ad, uint32_t ad_size);
|
||||
|
||||
|
||||
// Key exchange (x25519 + HChacha20)
|
||||
// ---------------------------------
|
||||
#define crypto_key_exchange_public_key crypto_x25519_public_key
|
||||
void crypto_key_exchange(uint8_t shared_key [32],
|
||||
const uint8_t your_secret_key [32],
|
||||
const uint8_t their_public_key[32]);
|
||||
|
||||
|
||||
// Signatures (EdDSA with curve25519 + Blake2b)
|
||||
// --------------------------------------------
|
||||
|
||||
// Generate public key
|
||||
void crypto_sign_public_key(uint8_t public_key[32],
|
||||
const uint8_t secret_key[32]);
|
||||
|
||||
// Direct interface
|
||||
void crypto_sign(uint8_t signature [64],
|
||||
const uint8_t secret_key[32],
|
||||
const uint8_t public_key[32], // optional, may be 0
|
||||
const uint8_t *message, size_t message_size);
|
||||
int crypto_check(const uint8_t signature [64],
|
||||
const uint8_t public_key[32],
|
||||
const uint8_t *message, size_t message_size);
|
||||
|
||||
////////////////////////////
|
||||
/// Low level primitives ///
|
||||
////////////////////////////
|
||||
|
||||
// For experts only. You have been warned.
|
||||
|
||||
// Chacha20
|
||||
// --------
|
||||
|
||||
// Specialised hash.
|
||||
// Used to hash X25519 shared secrets.
|
||||
void crypto_hchacha20(uint8_t out[32],
|
||||
const uint8_t key[32],
|
||||
const uint8_t in [16]);
|
||||
|
||||
// Unauthenticated stream cipher.
|
||||
// Don't forget to add authentication.
|
||||
void crypto_chacha20(uint8_t *cipher_text,
|
||||
const uint8_t *plain_text,
|
||||
size_t text_size,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[8]);
|
||||
void crypto_xchacha20(uint8_t *cipher_text,
|
||||
const uint8_t *plain_text,
|
||||
size_t text_size,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[24]);
|
||||
void crypto_ietf_chacha20(uint8_t *cipher_text,
|
||||
const uint8_t *plain_text,
|
||||
size_t text_size,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[12]);
|
||||
uint64_t crypto_chacha20_ctr(uint8_t *cipher_text,
|
||||
const uint8_t *plain_text,
|
||||
size_t text_size,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[8],
|
||||
uint64_t ctr);
|
||||
uint64_t crypto_xchacha20_ctr(uint8_t *cipher_text,
|
||||
const uint8_t *plain_text,
|
||||
size_t text_size,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[24],
|
||||
uint64_t ctr);
|
||||
uint32_t crypto_ietf_chacha20_ctr(uint8_t *cipher_text,
|
||||
const uint8_t *plain_text,
|
||||
size_t text_size,
|
||||
const uint8_t key[32],
|
||||
const uint8_t nonce[12],
|
||||
uint32_t ctr);
|
||||
|
||||
// Poly 1305
|
||||
// ---------
|
||||
|
||||
// This is a *one time* authenticator.
|
||||
// Disclosing the mac reveals the key.
|
||||
// See crypto_lock() on how to use it properly.
|
||||
|
||||
// Direct interface
|
||||
void crypto_poly1305(uint8_t mac[16],
|
||||
const uint8_t *message, size_t message_size,
|
||||
const uint8_t key[32]);
|
||||
|
||||
// Incremental interface
|
||||
void crypto_poly1305_init (crypto_poly1305_ctx *ctx, const uint8_t key[32]);
|
||||
void crypto_poly1305_update(crypto_poly1305_ctx *ctx,
|
||||
const uint8_t *message, size_t message_size);
|
||||
void crypto_poly1305_final (crypto_poly1305_ctx *ctx, uint8_t mac[16]);
|
||||
|
||||
|
||||
// X-25519
|
||||
// -------
|
||||
|
||||
// Shared secrets are not quite random.
|
||||
// Hash them to derive an actual shared key.
|
||||
void crypto_x25519_public_key(uint8_t public_key[32],
|
||||
const uint8_t secret_key[32]);
|
||||
void crypto_x25519(uint8_t raw_shared_secret[32],
|
||||
const uint8_t your_secret_key [32],
|
||||
const uint8_t their_public_key [32]);
|
||||
|
||||
// "Dirty" versions of x25519_public_key()
|
||||
// Only use to generate ephemeral keys you want to hide.
|
||||
// Note that those functions leaks 3 bits of the private key.
|
||||
void crypto_x25519_dirty_small(uint8_t pk[32], const uint8_t sk[32]);
|
||||
void crypto_x25519_dirty_fast (uint8_t pk[32], const uint8_t sk[32]);
|
||||
|
||||
// scalar "division"
|
||||
// Used for OPRF. Be aware that exponential blinding is less secure
|
||||
// than Diffie-Hellman key exchange.
|
||||
void crypto_x25519_inverse(uint8_t blind_salt [32],
|
||||
const uint8_t private_key[32],
|
||||
const uint8_t curve_point[32]);
|
||||
|
||||
|
||||
// EdDSA to X25519
|
||||
// ---------------
|
||||
void crypto_from_eddsa_private(uint8_t x25519[32], const uint8_t eddsa[32]);
|
||||
void crypto_from_eddsa_public (uint8_t x25519[32], const uint8_t eddsa[32]);
|
||||
|
||||
|
||||
// EdDSA -- Incremental interface
|
||||
// ------------------------------
|
||||
|
||||
// Signing (2 passes)
|
||||
// Make sure the two passes hash the same message,
|
||||
// else you might reveal the private key.
|
||||
void crypto_sign_init_first_pass(crypto_sign_ctx_abstract *ctx,
|
||||
const uint8_t secret_key[32],
|
||||
const uint8_t public_key[32]);
|
||||
void crypto_sign_update(crypto_sign_ctx_abstract *ctx,
|
||||
const uint8_t *message, size_t message_size);
|
||||
void crypto_sign_init_second_pass(crypto_sign_ctx_abstract *ctx);
|
||||
// use crypto_sign_update() again.
|
||||
void crypto_sign_final(crypto_sign_ctx_abstract *ctx, uint8_t signature[64]);
|
||||
|
||||
// Verification (1 pass)
|
||||
// Make sure you don't use (parts of) the message
|
||||
// before you're done checking it.
|
||||
void crypto_check_init (crypto_check_ctx_abstract *ctx,
|
||||
const uint8_t signature[64],
|
||||
const uint8_t public_key[32]);
|
||||
void crypto_check_update(crypto_check_ctx_abstract *ctx,
|
||||
const uint8_t *message, size_t message_size);
|
||||
int crypto_check_final (crypto_check_ctx_abstract *ctx);
|
||||
|
||||
// Custom hash interface
|
||||
void crypto_sign_public_key_custom_hash(uint8_t public_key[32],
|
||||
const uint8_t secret_key[32],
|
||||
const crypto_sign_vtable *hash);
|
||||
void crypto_sign_init_first_pass_custom_hash(crypto_sign_ctx_abstract *ctx,
|
||||
const uint8_t secret_key[32],
|
||||
const uint8_t public_key[32],
|
||||
const crypto_sign_vtable *hash);
|
||||
void crypto_check_init_custom_hash(crypto_check_ctx_abstract *ctx,
|
||||
const uint8_t signature[64],
|
||||
const uint8_t public_key[32],
|
||||
const crypto_sign_vtable *hash);
|
||||
|
||||
// Elligator 2
|
||||
// -----------
|
||||
|
||||
// Elligator mappings proper
|
||||
void crypto_hidden_to_curve(uint8_t curve [32], const uint8_t hidden[32]);
|
||||
int crypto_curve_to_hidden(uint8_t hidden[32], const uint8_t curve [32],
|
||||
uint8_t tweak);
|
||||
|
||||
// Easy to use key pair generation
|
||||
void crypto_hidden_key_pair(uint8_t hidden[32], uint8_t secret_key[32],
|
||||
uint8_t seed[32]);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // MONOCYPHER_H
|
Reference in New Issue
Block a user