1234567891011121314151617181920212223242526272829303132333435 |
- "use strict";
- class Hash {
-
-
- update(data, inputEncoding) {
- const AbstractMethodError = require("../AbstractMethodError");
- throw new AbstractMethodError();
- }
-
-
- digest(encoding) {
- const AbstractMethodError = require("../AbstractMethodError");
- throw new AbstractMethodError();
- }
- }
- module.exports = Hash;
|