UNPKG
@om-design/crypto
Version:
latest (2.3.0)
2.3.0
2.2.0
2.1.0
2.0.0
1.2.0
1.1.0
1.0.1
1.0.0
basic crypto base on openssl 3.3.1
@om-design/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
>; }