Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
mbedtls
Commits
533407a2
Commit
533407a2
authored
Apr 04, 2018
by
fbrosson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use "#!/usr/bin/env perl" as shebang line.
parent
80aa3b8d
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
21 additions
and
19 deletions
+21
-19
ChangeLog
ChangeLog
+2
-0
scripts/config.pl
scripts/config.pl
+1
-1
scripts/generate_errors.pl
scripts/generate_errors.pl
+1
-1
scripts/generate_features.pl
scripts/generate_features.pl
+1
-1
scripts/generate_visualc_files.pl
scripts/generate_visualc_files.pl
+1
-1
scripts/massif_max.pl
scripts/massif_max.pl
+1
-1
scripts/rename.pl
scripts/rename.pl
+1
-1
tests/scripts/check-doxy-blocks.pl
tests/scripts/check-doxy-blocks.pl
+1
-1
tests/scripts/curves.pl
tests/scripts/curves.pl
+1
-1
tests/scripts/depends-hashes.pl
tests/scripts/depends-hashes.pl
+1
-1
tests/scripts/depends-pkalgs.pl
tests/scripts/depends-pkalgs.pl
+1
-1
tests/scripts/gen_ctr_drbg.pl
tests/scripts/gen_ctr_drbg.pl
+1
-1
tests/scripts/gen_gcm_decrypt.pl
tests/scripts/gen_gcm_decrypt.pl
+1
-1
tests/scripts/gen_gcm_encrypt.pl
tests/scripts/gen_gcm_encrypt.pl
+1
-1
tests/scripts/gen_pkcs1_v21_sign_verify.pl
tests/scripts/gen_pkcs1_v21_sign_verify.pl
+1
-1
tests/scripts/key-exchanges.pl
tests/scripts/key-exchanges.pl
+1
-1
tests/scripts/list-enum-consts.pl
tests/scripts/list-enum-consts.pl
+1
-1
tests/scripts/recursion.pl
tests/scripts/recursion.pl
+1
-1
tests/scripts/run-test-suites.pl
tests/scripts/run-test-suites.pl
+1
-1
tests/scripts/test-ref-configs.pl
tests/scripts/test-ref-configs.pl
+1
-1
No files found.
ChangeLog
View file @
533407a2
...
...
@@ -93,6 +93,8 @@ Changes
* Improve robustness of mbedtls_ssl_derive_keys against the use of
HMAC functions with non-HMAC ciphersuites. Independently contributed
by Jiayuan Chen in #1377. Fixes #1437.
* Change the shebang line in Perl scripts to look up perl in the PATH.
Contributed by fbrosson.
= mbed TLS 2.8.0 branch released 2018-03-16
...
...
scripts/config.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
#
# This file is part of mbed TLS (https://tls.mbed.org)
#
...
...
scripts/generate_errors.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# Generate error.c
#
...
...
scripts/generate_features.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
#
use
strict
;
...
...
scripts/generate_visualc_files.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# Generate files for MS Visual Studio:
# - for VS6: main project (library) file, individual app files, workspace
...
...
scripts/massif_max.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# Parse a massif.out.xxx file and output peak total memory usage
...
...
scripts/rename.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
#
# This file is part of mbed TLS (https://tls.mbed.org)
#
...
...
tests/scripts/check-doxy-blocks.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# Detect comment blocks that are likely meant to be doxygen blocks but aren't.
#
...
...
tests/scripts/curves.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# curves.pl
#
...
...
tests/scripts/depends-hashes.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# depends-hashes.pl
#
...
...
tests/scripts/depends-pkalgs.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# depends-pkalgs.pl
#
...
...
tests/scripts/gen_ctr_drbg.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
#
# Based on NIST CTR_DRBG.rsp validation file
# Only uses AES-256-CTR cases that use a Derivation function
...
...
tests/scripts/gen_gcm_decrypt.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
#
# Based on NIST gcmDecryptxxx.rsp validation files
# Only first 3 of every set used for compile time saving
...
...
tests/scripts/gen_gcm_encrypt.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
#
# Based on NIST gcmEncryptIntIVxxx.rsp validation files
# Only first 3 of every set used for compile time saving
...
...
tests/scripts/gen_pkcs1_v21_sign_verify.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
#
use
strict
;
...
...
tests/scripts/key-exchanges.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# key-exchanges.pl
#
...
...
tests/scripts/list-enum-consts.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
use
warnings
;
use
strict
;
...
...
tests/scripts/recursion.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# Find functions making recursive calls to themselves.
# (Multiple recursion where a() calls b() which calls a() not covered.)
...
...
tests/scripts/run-test-suites.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# run-test-suites.pl
#
...
...
tests/scripts/test-ref-configs.pl
View file @
533407a2
#!/usr/bin/perl
#!/usr/bin/
env
perl
# test-ref-configs.pl
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment