UNPKG
crypto-ts
Version:
latest (1.0.2)
1.0.2
1.0.1
Typescript library of crypto standards.
github.com/hmoog/crypto-ts
hmoog/crypto-ts
crypto-ts
/
src
/
algo
/
SHA256.d.ts
9 lines
(8 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Hasher
}
from
'../lib/Hasher'
;
import
{
WordArray
}
from
'../lib/WordArray'
;
export
declare
class
SHA256
extends
Hasher
{
_hash
:
WordArray
;
reset
():
void
;
_doProcessBlock
(
M
:
Array
<
number
>,
offset
:
number
):
void
;
_doFinalize
():
WordArray
; }