UNPKG
@starryn/crypto
Version:
latest (1.0.0)
1.0.0
basic crypto base on openssl 3.3.2
@starryn/crypto
/
dist
/
md
/
sha512.d.ts
7 lines
(6 loc)
•
214 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
Sha512Wasm
}
from
'../wasm'
;
import
{
Md
}
from
'./md'
;
export
declare
class
Sha512
extends
Md
<
Sha512Wasm
> {
protected
static
getMd
():
Sha512
;
protected
ensureContextAsync
():
Promise
<
void
>; }