Hello!
I'm trying to load gost openssl engine with crypto.setEngine function. The only working way was to specify a full path to dylib (e.g. "/opt/local/lib/engines/libgost.dylib'").
But I still can not use digest from loaded engine. Call to crypto.createSign('md_gost94') fails with "Unknown message digest" error.
AFAIK node.js goes with bundled openssl. Does it include engines like gost? Should it work with system dylib for engine?
Thank you!