* util/import_gcry.py: Skip sample keys.
This commit is contained in:
parent
f4d70fd02b
commit
62ce03cf40
2 changed files with 12 additions and 0 deletions
|
@ -366,6 +366,14 @@ for cipher_file in cipher_files:
|
|||
skip_statement = True
|
||||
continue
|
||||
m = re.match ("static int tripledes_set3keys \(", line)
|
||||
if not m is None:
|
||||
skip_statement = True
|
||||
continue
|
||||
m = re.match ("static const char sample_secret_key", line)
|
||||
if not m is None:
|
||||
skip_statement = True
|
||||
continue
|
||||
m = re.match ("static const char sample_public_key", line)
|
||||
if not m is None:
|
||||
skip_statement = True
|
||||
continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue