From bfe5877ee73ec8111e029431d8497e13dcea8eed Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Thu, 17 Jul 2014 16:30:22 -0700 Subject: [PATCH] require SecureRandom and Point ... woops --- lib/common/Key.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/common/Key.js b/lib/common/Key.js index e3a288b..0665c49 100644 --- a/lib/common/Key.js +++ b/lib/common/Key.js @@ -1,4 +1,6 @@ var bignum = require('bignum'); +var Point = require('./Point'); +var SecureRandom = require('./SecureRandom'); var Key = function() {} Key.parseDERsig = function(sig) {