diff --git a/Sources/CEd25519/include/ed25519.h b/Sources/CEd25519/include/ed25519.h index 8924659..4f36b3a 100644 --- a/Sources/CEd25519/include/ed25519.h +++ b/Sources/CEd25519/include/ed25519.h @@ -30,6 +30,31 @@ int ED25519_DECLSPEC ed25519_verify(const unsigned char *signature, const unsign void ED25519_DECLSPEC ed25519_add_scalar(unsigned char *public_key, unsigned char *private_key, const unsigned char *scalar); void ED25519_DECLSPEC ed25519_key_exchange(unsigned char *shared_secret, const unsigned char *public_key, const unsigned char *private_key); +/* +MIT License + +Copyright (c) 2020 christophhagen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +void ED25519_DECLSPEC ed25519_make_private_key(unsigned char *private_key); +void ED25519_DECLSPEC ed25519_create_public_key(unsigned char *public_key, const unsigned char *private_key); #ifdef __cplusplus }