summaryrefslogtreecommitdiff
path: root/donna_sse.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-13 11:57:52 -0500
committerJeffrey Walton <noloader@gmail.com>2018-12-13 11:57:52 -0500
commit9156c49555a4e521f59c4b9f1f5d80e608528fbd (patch)
treed92845ba3793e2ecadea0fb9032c0f5f0e346ab3 /donna_sse.cpp
parentc76f50ebbb7acfe6adc3390a0da772e4fa5415c4 (diff)
downloadcryptopp-git-9156c49555a4e521f59c4b9f1f5d80e608528fbd.tar.gz
Update comments
Diffstat (limited to 'donna_sse.cpp')
-rw-r--r--donna_sse.cpp10
1 files changed, 5 insertions, 5 deletions
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.