(data, buf)
| 70 | return buf; |
| 71 | }; |
| 72 | decrypt(data, buf) { |
| 73 | this.ghash.update(data); |
| 74 | return this.ctr.decrypt(data, buf); |
| 75 | }; |
| 76 | close() { |
| 77 | let t = this.ghash.close(); |
| 78 | return Bin.xor(t, this.block.encrypt(this.y0)); |
no test coverage detected