mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
54 lines
1.3 KiB
Python
54 lines
1.3 KiB
Python
from typing import (
|
|
Optional,
|
|
)
|
|
|
|
from libp2p.crypto.keys import (
|
|
PrivateKey,
|
|
PublicKey,
|
|
)
|
|
from libp2p.peer.id import (
|
|
ID,
|
|
)
|
|
from libp2p.security.secure_conn_interface import (
|
|
ISecureConn,
|
|
)
|
|
|
|
|
|
class BaseSession(ISecureConn):
|
|
"""
|
|
``BaseSession`` is not fully instantiated from its abstract classes as
|
|
it is only meant to be used in clases that derive from it.
|
|
"""
|
|
|
|
local_peer: ID
|
|
local_private_key: PrivateKey
|
|
remote_peer: ID
|
|
remote_permanent_pubkey: PublicKey
|
|
|
|
def __init__(
|
|
self,
|
|
*,
|
|
local_peer: ID,
|
|
local_private_key: PrivateKey,
|
|
remote_peer: ID,
|
|
remote_permanent_pubkey: PublicKey,
|
|
is_initiator: bool,
|
|
) -> None:
|
|
self.local_peer = local_peer
|
|
self.local_private_key = local_private_key
|
|
self.remote_peer = remote_peer
|
|
self.remote_permanent_pubkey = remote_permanent_pubkey
|
|
self.is_initiator = is_initiator
|
|
|
|
def get_local_peer(self) -> ID:
|
|
return self.local_peer
|
|
|
|
def get_local_private_key(self) -> PrivateKey:
|
|
return self.local_private_key
|
|
|
|
def get_remote_peer(self) -> ID:
|
|
return self.remote_peer
|
|
|
|
def get_remote_public_key(self) -> Optional[PublicKey]:
|
|
return self.remote_permanent_pubkey
|