UNPKG
@logismika/crypto
Version:
latest (0.5.0-a3)
0.5.0-a3
0.5.0-a2
0.5.0-a1
0.4.1
0.4.0
0.3.1
0.3.0
0.2.3
0.2.2
Crypto algorithms library
github.com/Logismika/crypto
Logismika/crypto
@logismika/crypto
/
build
/
types
/
decrypt.d.ts
4 lines
(3 loc)
•
201 B
TypeScript
View Raw
1
2
3
4
import
{
Options
}
from
"./options"
;
import
{
EncryptedData
}
from
"./encrypt"
;
export
declare
const
decrypt
:
(
key
:
string
|
Uint8Array
,
data
:
EncryptedData
,
options
?:
Options
) =>
Promise
<
Uint8Array
>;