change some parameters in the library to meet the needs of the website httpbin.org

Fork of MiniTLS-GPL by Donatien Garnier

Committer:
shiyilei
Date:
Fri Feb 06 06:17:33 2015 +0000
Revision:
5:95f70ebfe61f
Parent:
0:35aa5be3b78d
change some parameters in the library to meet the needs of httpbin.org

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MiniTLS 0:35aa5be3b78d 1 /* TomsFastMath, a fast ISO C bignum library.
MiniTLS 0:35aa5be3b78d 2 *
MiniTLS 0:35aa5be3b78d 3 * This project is meant to fill in where LibTomMath
MiniTLS 0:35aa5be3b78d 4 * falls short. That is speed ;-)
MiniTLS 0:35aa5be3b78d 5 *
MiniTLS 0:35aa5be3b78d 6 * This project is public domain and free for all purposes.
MiniTLS 0:35aa5be3b78d 7 *
MiniTLS 0:35aa5be3b78d 8 * Tom St Denis, tomstdenis@gmail.com
MiniTLS 0:35aa5be3b78d 9 */
MiniTLS 0:35aa5be3b78d 10 #include <tfm.h>
MiniTLS 0:35aa5be3b78d 11
MiniTLS 0:35aa5be3b78d 12 /* computes a = 2**b */
MiniTLS 0:35aa5be3b78d 13 void fp_2expt(fp_int *a, int b)
MiniTLS 0:35aa5be3b78d 14 {
MiniTLS 0:35aa5be3b78d 15 int z;
MiniTLS 0:35aa5be3b78d 16
MiniTLS 0:35aa5be3b78d 17 /* zero a as per default */
MiniTLS 0:35aa5be3b78d 18 fp_zero (a);
MiniTLS 0:35aa5be3b78d 19
MiniTLS 0:35aa5be3b78d 20 if (b < 0) {
MiniTLS 0:35aa5be3b78d 21 return;
MiniTLS 0:35aa5be3b78d 22 }
MiniTLS 0:35aa5be3b78d 23
MiniTLS 0:35aa5be3b78d 24 z = b / DIGIT_BIT;
MiniTLS 0:35aa5be3b78d 25 if (z >= FP_SIZE) {
MiniTLS 0:35aa5be3b78d 26 return;
MiniTLS 0:35aa5be3b78d 27 }
MiniTLS 0:35aa5be3b78d 28
MiniTLS 0:35aa5be3b78d 29 /* set the used count of where the bit will go */
MiniTLS 0:35aa5be3b78d 30 a->used = z + 1;
MiniTLS 0:35aa5be3b78d 31
MiniTLS 0:35aa5be3b78d 32 /* put the single bit in its place */
MiniTLS 0:35aa5be3b78d 33 a->dp[z] = ((fp_digit)1) << (b % DIGIT_BIT);
MiniTLS 0:35aa5be3b78d 34 }
MiniTLS 0:35aa5be3b78d 35
MiniTLS 0:35aa5be3b78d 36
MiniTLS 0:35aa5be3b78d 37 /* $Source: /cvs/libtom/tomsfastmath/src/exptmod/fp_2expt.c,v $ */
MiniTLS 0:35aa5be3b78d 38 /* $Revision: 1.1 $ */
MiniTLS 0:35aa5be3b78d 39 /* $Date: 2006/12/31 21:25:53 $ */