aboutsummaryrefslogtreecommitdiff
path: root/libraries/libhal/Makefile
blob: bf870b96c7a5056d8c5a970e63b5ed36c7f3b0cb (plain) (blame)
1
2
3
4
/*
 * montgomery_array.h
 *
 *  Created on: Mar 3, 2015
 *      Author: psjm
 */

#ifndef MONTGOMERY_ARRAY_H_
#define MONTGOMERY_ARRAY_H_

void mont_prod_array(uint32_t length, uint32_t *A, uint32_t *B, uint32_t *M,
		uint32_t *s);
void mod_exp_array(uint32_t length, uint32_t *X, uint32_t *E, uint32_t *M, uint32_t *Z);

#endif /* MONTGOMERY_ARRAY_H_ */