From 199fa9f8ddcb8be78673a93db8719819ab3a7deb Mon Sep 17 00:00:00 2001 From: isaacs Date: Fri, 17 May 2013 13:55:29 -0700 Subject: [PATCH] crypto: Don't ignore verify encoding argument --- src/node_crypto.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_crypto.cc b/src/node_crypto.cc index 774550c..d591510 100644 --- a/src/node_crypto.cc +++ b/src/node_crypto.cc @@ -3309,7 +3309,7 @@ class Verify : public ObjectWrap { unsigned char* hbuf = new unsigned char[hlen]; ssize_t hwritten = StringBytes::Write( - reinterpret_cast(hbuf), hlen, args[1], BINARY); + reinterpret_cast(hbuf), hlen, args[1], encoding); assert(hwritten == hlen); int r; -- 2.7.4