crypto: Don't ignore verify encoding argument

pull/5010/head
isaacs 2013-05-17 13:55:29 -07:00
parent f59ab10a64
commit 199fa9f8dd
1 changed files with 1 additions and 1 deletions

View File

@ -3309,7 +3309,7 @@ class Verify : public ObjectWrap {
unsigned char* hbuf = new unsigned char[hlen];
ssize_t hwritten = StringBytes::Write(
reinterpret_cast<char*>(hbuf), hlen, args[1], BINARY);
reinterpret_cast<char*>(hbuf), hlen, args[1], encoding);
assert(hwritten == hlen);
int r;