ECC initial import.

This commit is contained in:
Mike Hamburg 2010-08-17 19:42:58 -07:00
parent 6efa96883e
commit 017ff8c82b
5 changed files with 734 additions and 2 deletions

View file

@ -55,6 +55,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;
}
}
};