From 9156c49555a4e521f59c4b9f1f5d80e608528fbd Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 13 Dec 2018 11:57:52 -0500 Subject: Update comments --- donna_sse.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'donna_sse.cpp') diff --git a/donna_sse.cpp b/donna_sse.cpp index bde7c0b6..b35d5d99 100644 --- a/donna_sse.cpp +++ b/donna_sse.cpp @@ -1,11 +1,11 @@ // donna_sse.cpp - written and placed in public domain by Jeffrey Walton -// This is a port of Andrew Moon's public domain code. +// This is an integration of Andrew Moon's public domain code. // Also see curve25519-donna-sse2.h. -// This is a port of Andrew Moon's public domain code. The port was clean, -// but it has one potential problem. The original code is C and relies upon -// unions. Accessing the inactive union member is undefined behavior in C++. -// That means copying the array into packedelem8.u is OK; but then using +// This is a integration of Andrew Moon's public domain code. The port was +// clean, but it has one potential problem. The original code is C and relies +// upon unions. Accessing the inactive union member is undefined behavior in +// C++. That means copying the array into packedelem8.u is OK; but then using // packedelem8.v in a calcualtion is undefined behavior. We will have to // keep an eye on things or rewrite significant portions of this code. -- cgit v1.2.1