mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
pyln: Add a warning that pyln-proto is not safe for production use
This commit is contained in:
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 .wire import PrivateKey, PublicKey, ecdh
|
||||
from binascii import hexlify, unhexlify
|
||||
|
Loading…
Reference in New Issue
Block a user