summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakuchling <akuchling@rivest.dlitz.net>2002-04-30 19:34:34 -0700
committerakuchling <akuchling@rivest.dlitz.net>2002-04-30 19:34:34 -0700
commit4f3c629fc1268e4cc39111ca0f146a34120861e7 (patch)
tree10bf2752ab24b64f2834aaf83ff4f7dfbc6c4ec7
parentd2e8f0d92750637fe57da897ed4ed434a784f376 (diff)
downloadpycrypto-4f3c629fc1268e4cc39111ca0f146a34120861e7.tar.gz
[project @ akuchling-20020501023434-db3483bd5cea772d]
[project @ 2002-04-30 19:34:34 by akuchling] Updated file
-rw-r--r--ChangeLog6
-rw-r--r--TODO2
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b9230ec..20cb3ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,12 @@
it's supported or not. After this change, some ciphers got slower,
but others got faster.
+ * The C-level API has been changed to reduce the amount of
+ memory-to-memory copying. This makes the code neater, but
+ had ambiguous performance effects; again, some ciphers got slower
+ and others became faster. Probably this is due to my compiler
+ optimizing slightly worse or better as a result.
+
1.9alpha1
=========
diff --git a/TODO b/TODO
index b7c4474..e2c7f1b 100644
--- a/TODO
+++ b/TODO
@@ -9,8 +9,6 @@
For 1.9alpha2:
* Update documentation
-* Change API to reduce amount of memory-to-memory copying
-
* Document the functions and macros for adding a new algorithm
Hash functions:
hash_init(), hash_copy(), DIGEST_SIZE, hash_update(), hash_digest()