Merge branch 'ecc' of github.com:sqs/sjcl into srp

Conflicts:
	config.mk
	sjcl.js
This commit is contained in:
Quinn Slack
2011-04-19 02:42:39 -07:00
14 changed files with 1622 additions and 52 deletions

View File

@@ -58,6 +58,12 @@ var sjcl = {
bug: function(message) {
this.toString = function() { return "BUG: "+this.message; };
this.message = message;
},
/** @class Bug or missing feature in SJCL. */
notReady: function(message) {
this.toString = function() { return "GENERATOR NOT READY: "+this.message; };
this.message = message;
}
}
};