* Update hash {@link https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding} * @abstract * @param {string | Buffer} data data * @param {Encoding=} inputEncoding data encoding * @returns {Hash} updated hash
(data, inputEncoding)
| 33 | * @returns {Hash} updated hash |
| 34 | */ |
| 35 | update(data, inputEncoding) { |
| 36 | const AbstractMethodError = require("../errors/AbstractMethodError"); |
| 37 | |
| 38 | throw new AbstractMethodError(); |
| 39 | } |
| 40 | |
| 41 | /* istanbul ignore next */ |
| 42 | /** |
no test coverage detected