From 01a8542298c0dd0e1454e38b02c72e6292458411 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Fri, 28 Mar 2014 19:53:09 -0600 Subject: [PATCH] Update algo_dev.txt --- algo_dev.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/algo_dev.txt b/algo_dev.txt index 0430e70..b32b9d4 100644 --- a/algo_dev.txt +++ b/algo_dev.txt @@ -49,6 +49,13 @@ keccak and keccak-max. +One of my goals is to create a single native node.js addon that has all the hashing functions. So many of them +share the same C code. Also it appears that some coins slightly tweak the way an algo is used which renders +the currernt native node addon for that algo useless unless modified. Seems much better to have one big native +node addon with all the hashing algos, and each configurable for the needs of different coins. It would make +the process of adding a new algo much more simple as well. + + hefty1