mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-22 00:24:19 +01:00
pyln: Add a warning that pyln-proto is not safe for production use
This commit is contained in:
committed by
Rusty Russell
parent
96b182a084
commit
e8dcd59b24
@@ -1,3 +1,11 @@
|
|||||||
|
"""Pure-python implementation of the sphinx onion routing format
|
||||||
|
|
||||||
|
Warning: This implementation is not intended to be used in production, rather
|
||||||
|
it is geared towards testing and experimenting. It may have several critical
|
||||||
|
issues, including being susceptible to timing attacks and crashes. You have
|
||||||
|
been warned!
|
||||||
|
|
||||||
|
"""
|
||||||
from .primitives import varint_decode, varint_encode, Secret
|
from .primitives import varint_decode, varint_encode, Secret
|
||||||
from .wire import PrivateKey, PublicKey, ecdh
|
from .wire import PrivateKey, PublicKey, ecdh
|
||||||
from binascii import hexlify, unhexlify
|
from binascii import hexlify, unhexlify
|
||||||
|
|||||||
Reference in New Issue
Block a user