csecp256k1

Haskell FFI bindings to bitcoin-core/secp256k1 (docs.ppad.tech/csecp256k1).
git clone git://git.ppad.tech/csecp256k1.git
Log | Files | Refs | README | LICENSE

eckey.h (1387B)


      1 /***********************************************************************
      2  * Copyright (c) 2013, 2014 Pieter Wuille                              *
      3  * Distributed under the MIT software license, see the accompanying    *
      4  * file COPYING or https://www.opensource.org/licenses/mit-license.php.*
      5  ***********************************************************************/
      6 
      7 #ifndef SECP256K1_ECKEY_H
      8 #define SECP256K1_ECKEY_H
      9 
     10 #include <stddef.h>
     11 
     12 #include "group.h"
     13 #include "scalar.h"
     14 #include "ecmult.h"
     15 #include "ecmult_gen.h"
     16 
     17 static int haskellsecp256k1_v0_1_0_eckey_pubkey_parse(haskellsecp256k1_v0_1_0_ge *elem, const unsigned char *pub, size_t size);
     18 static int haskellsecp256k1_v0_1_0_eckey_pubkey_serialize(haskellsecp256k1_v0_1_0_ge *elem, unsigned char *pub, size_t *size, int compressed);
     19 
     20 static int haskellsecp256k1_v0_1_0_eckey_privkey_tweak_add(haskellsecp256k1_v0_1_0_scalar *key, const haskellsecp256k1_v0_1_0_scalar *tweak);
     21 static int haskellsecp256k1_v0_1_0_eckey_pubkey_tweak_add(haskellsecp256k1_v0_1_0_ge *key, const haskellsecp256k1_v0_1_0_scalar *tweak);
     22 static int haskellsecp256k1_v0_1_0_eckey_privkey_tweak_mul(haskellsecp256k1_v0_1_0_scalar *key, const haskellsecp256k1_v0_1_0_scalar *tweak);
     23 static int haskellsecp256k1_v0_1_0_eckey_pubkey_tweak_mul(haskellsecp256k1_v0_1_0_ge *key, const haskellsecp256k1_v0_1_0_scalar *tweak);
     24 
     25 #endif /* SECP256K1_ECKEY_H */