We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 94d83b9 + 9924f5c commit 21ab71cCopy full SHA for 21ab71c
.coveragerc
@@ -11,6 +11,5 @@ omit =
11
exclude_lines =
12
pragma: no cover
13
def get_password
14
- def _prompt
15
def __str__
16
if __name__ == .__main__.:
securesystemslib/interface.py
@@ -66,20 +66,6 @@
66
# security through 2031 and beyond.
67
DEFAULT_RSA_KEY_BITS = 3072
68
69
-# Supported key types.
70
-SUPPORTED_KEY_TYPES = ['rsa', 'ed25519']
71
-
72
73
74
-def _prompt(message, result_type=str):
75
- """
76
- Non-public function that prompts the user for input by printing 'message',
77
- converting the input to 'result_type', and returning the value to the
78
- caller.
79
80
81
- return result_type(six.moves.input(message))
82
83
84
85
0 commit comments