UNPKG
@ndn/packet
Version:
latest (0.0.20260427)
0.0.20260427
0.0.20250307
0.0.20250122
0.0.20240630
0.0.20240113
0.0.20230121
0.0.20220501
0.0.20210930
0.0.20210203
0.0.20200909
0.0.20200606
0.0.20191223-beta.1
NDNts: Network Layer Packets
yoursunny.com/p/NDNts/
yoursunny/NDNts
@ndn/packet
/
lib
/
security
/
encryption_node.js
10 lines
(9 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** Encrypter and decrypter that do nothing. */
export
const
noopEncryption = {
encrypt
(
) {
return
Promise
.
resolve
(); },
decrypt
(
) {
return
Promise
.
resolve
(); }, };