Home | History | Annotate | Download | only in sslroots

Lines Matching full:root_dir

52   root_dir = _SplitCrt(args[0], options)
53 _GenCFiles(root_dir, options)
54 _Cleanup(root_dir)
60 root_dir = os.path.dirname(os.path.abspath(source_file)) + '/'
61 _PrintOutput(root_dir, options)
72 new_file_name = root_dir + _PREFIX + label_name + _EXTENSION
82 return root_dir
85 def _GenCFiles(root_dir, options):
86 output_header_file = open(root_dir + _GENERATED_FILE, 'w')
98 for _, _, files in os.walk(root_dir):
104 filtered_output, cert_size = _CreateCertSection(root_dir, current_file,
125 def _Cleanup(root_dir):
126 for f in os.listdir(root_dir):
128 os.remove(root_dir + f)
131 def _CreateCertSection(root_dir, source_file, label, options):
132 command = 'openssl x509 -in %s%s -noout -C' %(root_dir, source_file)