simon-git: putty (master): Simon Tatham
Commits to Tartarus hosted VCS
tartarus-commits at lists.tartarus.org
Sat Feb 9 14:14:55 GMT 2019
TL;DR:
bfae3ee9 mpint: add a few simple bitwise operations.
7b52943d .gitignore update: add uxconfig.in~ .
e7341d8e testcrypt: fix typo in a key algorithm name.
03492ab5 minibidi: fix read past end of line in rule W5.
Repository: https://git.tartarus.org/simon/putty.git
On the web: https://git.tartarus.org/?p=simon/putty.git
Branch updated: master
Committer: Simon Tatham <anakin at pobox.com>
Date: 2019-02-09 14:14:55
commit bfae3ee96e23d3a89ffadab54ce756f10a994d1e
web diff https://git.tartarus.org/?p=simon/putty.git;a=commitdiff;h=bfae3ee96e23d3a89ffadab54ce756f10a994d1e;hp=8ccbd164c711729b8d5954fc3c1b7871e8652302
Author: Simon Tatham <anakin at pobox.com>
Date: Sat Feb 9 14:00:06 2019 +0000
mpint: add a few simple bitwise operations.
I want to use mp_xor_into as part of an upcoming test program, and
while I'm at it, I thought I'd add a few other obvious bitops too.
mpint.c | 32 ++++++++++++++++++++++++++++++++
mpint.h | 8 ++++++++
test/cryptsuite.py | 17 +++++++++++++++++
testcrypt.h | 4 ++++
4 files changed, 61 insertions(+)
commit 7b52943dded17365829847f33536ade37c41eb45
web diff https://git.tartarus.org/?p=simon/putty.git;a=commitdiff;h=7b52943dded17365829847f33536ade37c41eb45;hp=bfae3ee96e23d3a89ffadab54ce756f10a994d1e
Author: Simon Tatham <anakin at pobox.com>
Date: Sat Feb 9 14:06:34 2019 +0000
.gitignore update: add uxconfig.in~ .
I don't know why this sometimes gets created, but it's clearly the
kind of thing that belongs in .gitignore if it exists at all.
.gitignore | 1 +
1 file changed, 1 insertion(+)
commit e7341d8e974d85dd86023f8b35377965bf54ab04
web diff https://git.tartarus.org/?p=simon/putty.git;a=commitdiff;h=e7341d8e974d85dd86023f8b35377965bf54ab04;hp=7b52943dded17365829847f33536ade37c41eb45
Author: Simon Tatham <anakin at pobox.com>
Date: Sat Feb 9 11:09:28 2019 +0000
testcrypt: fix typo in a key algorithm name.
I haven't actually written any tests for the NIST ECDSA algorithms
yet, or else I'd have noticed that one of them wasn't spelled right.
testcrypt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 03492ab59369dc8347d8eb8693da548b5e27cf0b
web diff https://git.tartarus.org/?p=simon/putty.git;a=commitdiff;h=03492ab59369dc8347d8eb8693da548b5e27cf0b;hp=e7341d8e974d85dd86023f8b35377965bf54ab04
Author: Simon Tatham <anakin at pobox.com>
Date: Sat Feb 9 14:12:16 2019 +0000
minibidi: fix read past end of line in rule W5.
The check for a sequence of ET with an EN after it could potentially
skip ETs all the way up to the end of the buffer and then look for an
EN in the following nonexistent array element. Now it only skips ETs
up to count-1, in the same style as the similar check in rule N1.
Change-Id: Ifdbae494a22d1b96bf49ae1bcae0efb901565f45
minibidi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
More information about the tartarus-commits
mailing list