aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/secp256k1/secp256k1/src/impl/field_5x64_asm.h
blob: 93c6ab6b585466d480e5d74d5579d10655c9c776 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2013 Pieter Wuille
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#ifndef _SECP256K1_FIELD_INNER5X52_IMPL_H_
#define _SECP256K1_FIELD_INNER5X52_IMPL_H_

void __attribute__ ((sysv_abi)) secp256k1_fe_mul_inner(const uint64_t *a, const uint64_t *b, uint64_t *r);
void __attribute__ ((sysv_abi)) secp256k1_fe_sqr_inner(const uint64_t *a, uint64_t *r);

#endif