git.schokokeks.org
Repositories
Help
Report an Issue
fakesshagent.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
cb7012c
Branches
Tags
documentation-tree
master
wishlist
0.1
fakesshagent.git
src
fakesshagent
__init__.py
Initial import of code from derivepassphrase
Marco Ricci
commited
cb7012c
at 2026-08-31 14:53:33
__init__.py
Blame
History
Raw
# SPDX-FileCopyrightText: 2026 Marco Ricci <software@the13thletter.info> # # SPDX-License-Identifier: Zlib """A non-hardened implementation of the SSH agent protocol.""" from fakesshagent.machinery import ( StubbedSSHAgentSocket as StubbedSSHAgentSocket, ) __version__ = "0.1" __all__ = ("StubbedSSHAgentSocket",)