Skip to content

Commit 5953f62

Browse files
committed
Merge branch 'release/1.0.1'
2 parents f551dbc + 2900733 commit 5953f62

170 files changed

Lines changed: 13297 additions & 12681 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.gitattributes export-ignore
2+
/.gitignore export-ignore
3+
4+
/** export-subst

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,14 @@ mtest.exe
4545
*.pdf
4646
*.out
4747
tommath.tex
48+
libtommath.pc
4849

4950
# ignore files generated by testme.sh
51+
gcc_errors_*.txt
5052
test_*.txt
5153

5254
*.bak
5355
*.orig
56+
*.asc
57+
*.tar.xz
58+
*.zip

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ compiler:
33
- gcc
44

55
script:
6-
- make
7-
- make test
8-
- make mtest
9-
- ./mtest/mtest 666666 | ./test > test.log
6+
- make travis_mtest
107
- head -n 5 test.log
118
- tail -n 2 test.log
12-
- ./testme.sh
9+
- ./testme.sh --with-cc=gcc --with-low-mp
1310

1411
branches:
1512
only:
13+
- master
1614
- develop
15+
- /^release\/.*$/
16+
1717
notifications:
18-
irc: "chat.freenode.net#libtom"
18+
irc: "chat.freenode.net#libtom-notifications"

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
[![Build Status](https://travis-ci.org/libtom/libtommath.png?branch=develop)](https://travis-ci.org/libtom/libtommath)
1+
[![Build Status - master](https://travis-ci.org/libtom/libtommath.png?branch=master)](https://travis-ci.org/libtom/libtommath)
2+
3+
[![Build Status - develop](https://travis-ci.org/libtom/libtommath.png?branch=develop)](https://travis-ci.org/libtom/libtommath)
24

35
This is the git repository for [LibTomMath](http://www.libtom.org/), a free open source portable number theoretic multiple-precision integer (MPI) library written entirely in C.
46

bn_error.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ const char *mp_error_to_string(int code)
4242

4343
#endif
4444

45-
/* $Source$ */
46-
/* $Revision$ */
47-
/* $Date$ */
45+
/* ref: $Format:%D$ */
46+
/* git commit: $Format:%H$ */
47+
/* commit time: $Format:%ai$ */

bn_fast_mp_invmod.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,6 @@ LBL_ERR:mp_clear_multi (&x, &y, &u, &v, &B, &D, NULL);
143143
}
144144
#endif
145145

146-
/* $Source$ */
147-
/* $Revision$ */
148-
/* $Date$ */
146+
/* ref: $Format:%D$ */
147+
/* git commit: $Format:%H$ */
148+
/* commit time: $Format:%ai$ */

bn_fast_mp_montgomery_reduce.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,6 @@ int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho)
167167
}
168168
#endif
169169

170-
/* $Source$ */
171-
/* $Revision$ */
172-
/* $Date$ */
170+
/* ref: $Format:%D$ */
171+
/* git commit: $Format:%H$ */
172+
/* commit time: $Format:%ai$ */

bn_fast_s_mp_mul_digs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs)
102102
}
103103
#endif
104104

105-
/* $Source$ */
106-
/* $Revision$ */
107-
/* $Date$ */
105+
/* ref: $Format:%D$ */
106+
/* git commit: $Format:%H$ */
107+
/* commit time: $Format:%ai$ */

bn_fast_s_mp_mul_high_digs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,6 @@ int fast_s_mp_mul_high_digs (mp_int * a, mp_int * b, mp_int * c, int digs)
9393
}
9494
#endif
9595

96-
/* $Source$ */
97-
/* $Revision$ */
98-
/* $Date$ */
96+
/* ref: $Format:%D$ */
97+
/* git commit: $Format:%H$ */
98+
/* commit time: $Format:%ai$ */

bn_fast_s_mp_sqr.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,6 @@ int fast_s_mp_sqr (mp_int * a, mp_int * b)
109109
}
110110
#endif
111111

112-
/* $Source$ */
113-
/* $Revision$ */
114-
/* $Date$ */
112+
/* ref: $Format:%D$ */
113+
/* git commit: $Format:%H$ */
114+
/* commit time: $Format:%ai$ */

0 commit comments

Comments
 (0)