Lines Matching refs:cli_args
54 (cli, cli_args) = parser.parse_args(sys.argv[1:])
56 if len(cli_args) != 1:
61 keysize = int(cli_args[0])
64 print('Not a valid number: %s' % cli_args[0], file=sys.stderr)
115 def perform_operation(self, indata, key, cli_args): argument
126 (cli, cli_args) = self.parse_cli()
128 key = self.read_key(cli_args[0], cli.keyform)
133 outdata = self.perform_operation(indata, key, cli_args)
155 (cli, cli_args) = parser.parse_args(sys.argv[1:])
157 if len(cli_args) != self.expected_cli_args:
161 return cli, cli_args
205 def perform_operation(self, indata, pub_key, cli_args=None): argument
222 def perform_operation(self, indata, priv_key, cli_args=None): argument
244 def perform_operation(self, indata, priv_key, cli_args): argument
247 hash_method = cli_args[1]
269 def perform_operation(self, indata, pub_key, cli_args): argument
272 signature_file = cli_args[1]