mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-07 07:05:27 +00:00
Merge remote-tracking branch 'public/pr/1558' into mbedtls-2.1
This commit is contained in:
commit
ba3e5e60f2
|
@ -8,6 +8,10 @@ Bugfix
|
||||||
* Clarify documentation for mbedtls_ssl_write() to include 0 as a valid
|
* Clarify documentation for mbedtls_ssl_write() to include 0 as a valid
|
||||||
return value. Found by @davidwu2000. #839
|
return value. Found by @davidwu2000. #839
|
||||||
|
|
||||||
|
Changes
|
||||||
|
* Change the shebang line in Perl scripts to look up perl in the PATH.
|
||||||
|
Contributed by fbrosson in #1533.
|
||||||
|
|
||||||
= mbed TLS 2.1.13 branch released 2018-06-18
|
= mbed TLS 2.1.13 branch released 2018-06-18
|
||||||
|
|
||||||
Bugfix
|
Bugfix
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
#
|
#
|
||||||
# This file is part of mbed TLS (https://tls.mbed.org)
|
# This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# Generate error.c
|
# Generate error.c
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
#
|
#
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# Generate main file, individual apps and solution files for MS Visual Studio
|
# Generate main file, individual apps and solution files for MS Visual Studio
|
||||||
# 2010
|
# 2010
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# Parse a massif.out.xxx file and output peak total memory usage
|
# Parse a massif.out.xxx file and output peak total memory usage
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# rename identifiers (functions, types, enum constant, etc)
|
# rename identifiers (functions, types, enum constant, etc)
|
||||||
# on upgrades of major version according to a list
|
# on upgrades of major version according to a list
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# Detect comment blocks that are likely meant to be doxygen blocks but aren't.
|
# Detect comment blocks that are likely meant to be doxygen blocks but aren't.
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# curves.pl
|
# curves.pl
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# depends-hashes.pl
|
# depends-hashes.pl
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# depends-pkalgs.pl
|
# depends-pkalgs.pl
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
#
|
#
|
||||||
# Based on NIST CTR_DRBG.rsp validation file
|
# Based on NIST CTR_DRBG.rsp validation file
|
||||||
# Only uses AES-256-CTR cases that use a Derivation function
|
# Only uses AES-256-CTR cases that use a Derivation function
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
#
|
#
|
||||||
# Based on NIST gcmDecryptxxx.rsp validation files
|
# Based on NIST gcmDecryptxxx.rsp validation files
|
||||||
# Only first 3 of every set used for compile time saving
|
# Only first 3 of every set used for compile time saving
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
#
|
#
|
||||||
# Based on NIST gcmEncryptIntIVxxx.rsp validation files
|
# Based on NIST gcmEncryptIntIVxxx.rsp validation files
|
||||||
# Only first 3 of every set used for compile time saving
|
# Only first 3 of every set used for compile time saving
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
#
|
#
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# key-exchanges.pl
|
# key-exchanges.pl
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# Find functions making recursive calls to themselves.
|
# Find functions making recursive calls to themselves.
|
||||||
# (Multiple recursion where a() calls b() which calls a() not covered.)
|
# (Multiple recursion where a() calls b() which calls a() not covered.)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# test standard configurations:
|
# test standard configurations:
|
||||||
# - build
|
# - build
|
||||||
|
|
Loading…
Reference in a new issue