2019-08-08 14:24:54 +08:00
|
|
|
from libp2p.network.connection.raw_connection_interface import IRawConnection
|
|
|
|
from libp2p.peer.id import ID
|
2019-08-03 07:50:44 +08:00
|
|
|
from libp2p.security.base_session import BaseSession
|
|
|
|
from libp2p.security.base_transport import BaseSecureTransport
|
2019-08-03 13:36:19 +08:00
|
|
|
from libp2p.security.secure_conn_interface import ISecureConn
|
2019-08-01 19:12:11 +08:00
|
|
|
|
2019-04-30 15:09:05 +08:00
|
|
|
|
2019-08-03 07:50:44 +08:00
|
|
|
class InsecureSession(BaseSession):
|
2019-08-14 06:19:22 +08:00
|
|
|
pass
|
2019-08-03 07:50:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
class InsecureTransport(BaseSecureTransport):
|
2019-08-03 03:07:35 +08:00
|
|
|
"""
|
|
|
|
``InsecureTransport`` provides the "identity" upgrader for a ``IRawConnection``,
|
|
|
|
i.e. the upgraded transport does not add any additional security.
|
|
|
|
"""
|
|
|
|
|
2019-08-08 14:22:06 +08:00
|
|
|
async def secure_inbound(self, conn: IRawConnection) -> ISecureConn:
|
2019-04-30 15:09:05 +08:00
|
|
|
"""
|
|
|
|
Secure the connection, either locally or by communicating with opposing node via conn,
|
|
|
|
for an inbound connection (i.e. we are not the initiator)
|
|
|
|
:return: secure connection object (that implements secure_conn_interface)
|
|
|
|
"""
|
2019-08-03 07:50:44 +08:00
|
|
|
return InsecureSession(self, conn, ID(b""))
|
2019-04-30 15:09:05 +08:00
|
|
|
|
2019-08-08 14:22:06 +08:00
|
|
|
async def secure_outbound(self, conn: IRawConnection, peer_id: ID) -> ISecureConn:
|
2019-04-30 15:09:05 +08:00
|
|
|
"""
|
|
|
|
Secure the connection, either locally or by communicating with opposing node via conn,
|
|
|
|
for an inbound connection (i.e. we are the initiator)
|
|
|
|
:return: secure connection object (that implements secure_conn_interface)
|
|
|
|
"""
|
2019-08-03 07:50:44 +08:00
|
|
|
return InsecureSession(self, conn, peer_id)
|