py-libp2p/libp2p/security/insecure_security.py

61 lines
2.1 KiB
Python
Raw Normal View History

2019-08-08 14:22:06 +08:00
from typing import cast
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 13:36:19 +08:00
from libp2p.security.secure_conn_interface import ISecureConn
from libp2p.security.secure_transport_interface import ISecureTransport
2019-08-01 19:12:11 +08:00
2019-08-08 14:22:06 +08:00
from .typing import TSecurityDetails
2019-08-01 19:12:11 +08:00
2019-08-01 06:00:12 +08:00
class InsecureTransport(ISecureTransport):
"""
``InsecureTransport`` provides the "identity" upgrader for a ``IRawConnection``,
i.e. the upgraded transport does not add any additional security.
"""
2019-08-02 14:12:59 +08:00
transport_id: str
2019-08-01 19:12:11 +08:00
2019-08-02 14:12:59 +08:00
def __init__(self, transport_id: str) -> None:
self.transport_id = transport_id
2019-05-02 01:54:19 +08:00
2019-08-08 14:22:06 +08:00
async def secure_inbound(self, conn: IRawConnection) -> ISecureConn:
"""
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)
"""
insecure_conn = InsecureConn(conn, self.transport_id)
return insecure_conn
2019-08-08 14:22:06 +08:00
async def secure_outbound(self, conn: IRawConnection, peer_id: ID) -> ISecureConn:
"""
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)
"""
insecure_conn = InsecureConn(conn, self.transport_id)
return insecure_conn
2019-08-01 06:00:12 +08:00
class InsecureConn(ISecureConn):
2019-08-08 14:22:06 +08:00
conn: IRawConnection
details: TSecurityDetails
2019-08-01 19:12:11 +08:00
2019-08-08 14:22:06 +08:00
def __init__(self, conn: IRawConnection, conn_id: str) -> None:
self.conn = conn
2019-08-08 14:22:06 +08:00
self.details = cast(TSecurityDetails, {})
self.details["id"] = conn_id
2019-08-08 14:22:06 +08:00
def get_conn(self) -> IRawConnection:
"""
:return: connection object that has been made secure
"""
2019-08-02 14:12:59 +08:00
return self.conn
2019-08-08 14:22:06 +08:00
def get_security_details(self) -> TSecurityDetails:
"""
:return: map containing details about the connections security
"""
return self.details