Home | History | Annotate | Download | only in cryptotoken

Lines Matching refs:SHA256

5 /** @fileoverview SHA256 in javascript */
6 // SHA256 {
7 // SHA256();
14 function SHA256() {
43 SHA256.prototype.reset = function() {
55 SHA256.prototype._compress = function(buf) {
117 SHA256.prototype.update = function(bytes, opt_length) {
135 SHA256.prototype.updateRange = function(bytes, start, end) {
150 * @return {Array.<number>} the SHA256 hash value.
152 SHA256.prototype.digest = function(var_args) {