Skip to content

Commit febf863

Browse files
Krzysztof StachowiakPatater
Krzysztof Stachowiak
authored andcommitted
Change Arm trademarks in the examples' source files
1 parent b4c89a3 commit febf863

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

authcrypt/authcrypt.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Hello world example of using the authenticated encryption with mbed TLS
2+
* Hello world example of using the authenticated encryption with Mbed TLS
33
*
4-
* Copyright (C) 2017, ARM Limited, All Rights Reserved
4+
* Copyright (C) 2017, Arm Limited, All Rights Reserved
55
* SPDX-License-Identifier: Apache-2.0
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License"); you may

authcrypt/authcrypt.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Hello world example of using the authenticated encryption with mbed TLS
2+
* Hello world example of using the authenticated encryption with Mbed TLS
33
*
4-
* Copyright (C) 2017, ARM Limited, All Rights Reserved
4+
* Copyright (C) 2017, Arm Limited, All Rights Reserved
55
* SPDX-License-Identifier: Apache-2.0
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License"); you may

authcrypt/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Hello world example of using the authenticated encryption with mbed TLS
2+
* Hello world example of using the authenticated encryption with Mbed TLS
33
*
4-
* Copyright (C) 2016-2017, ARM Limited, All Rights Reserved
4+
* Copyright (C) 2016-2017, Arm Limited, All Rights Reserved
55
* SPDX-License-Identifier: Apache-2.0
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License"); you may

authcrypt/mbedtls_entropy_config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
2+
* Copyright (C) 2006-2016, Arm Limited, All Rights Reserved
33
* SPDX-License-Identifier: Apache-2.0
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*
17-
* This file is part of mbed TLS (https://tls.mbed.org)
17+
* This file is part of Mbed TLS (https://tls.mbed.org)
1818
*/
1919

2020
#if !defined(MBEDTLS_ENTROPY_HARDWARE_ALT) && \

benchmark/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Benchmark demonstration program
33
*
4-
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
4+
* Copyright (C) 2006-2016, Arm Limited, All Rights Reserved
55
* SPDX-License-Identifier: Apache-2.0
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License"); you may

hashing/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Hello world example of using the hashing functions of mbed TLS
2+
* Hello world example of using the hashing functions of Mbed TLS
33
*
4-
* Copyright (C) 2016, ARM Limited, All Rights Reserved
4+
* Copyright (C) 2016, Arm Limited, All Rights Reserved
55
* SPDX-License-Identifier: Apache-2.0
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License"); you may

tls-client/main.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Hello world example of a TLS client: fetch an HTTPS page
33
*
4-
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
4+
* Copyright (C) 2006-2016, Arm Limited, All Rights Reserved
55
* SPDX-License-Identifier: Apache-2.0
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -16,7 +16,7 @@
1616
* See the License for the specific language governing permissions and
1717
* limitations under the License.
1818
*
19-
* This file is part of mbed TLS (https://tls.mbed.org)
19+
* This file is part of Mbed TLS (https://tls.mbed.org)
2020
*/
2121

2222
/** \file main.cpp
@@ -307,7 +307,7 @@ class HelloHTTPS {
307307

308308
#if DEBUG_LEVEL > 0
309309
/**
310-
* Debug callback for mbed TLS
310+
* Debug callback for Mbed TLS
311311
* Just prints on the USB serial port
312312
*/
313313
static void my_debug(void *ctx, int level, const char *file, int line,
@@ -327,7 +327,7 @@ class HelloHTTPS {
327327
}
328328

329329
/**
330-
* Certificate verification callback for mbed TLS
330+
* Certificate verification callback for Mbed TLS
331331
* Here we only use it to display information on each cert in the chain
332332
*/
333333
static int my_verify(void *data, mbedtls_x509_crt *crt, int depth, uint32_t *flags)
@@ -354,7 +354,7 @@ class HelloHTTPS {
354354
#endif
355355

356356
/**
357-
* Receive callback for mbed TLS
357+
* Receive callback for Mbed TLS
358358
*/
359359
static int ssl_recv(void *ctx, unsigned char *buf, size_t len) {
360360
int recv = -1;
@@ -372,7 +372,7 @@ class HelloHTTPS {
372372
}
373373

374374
/**
375-
* Send callback for mbed TLS
375+
* Send callback for Mbed TLS
376376
*/
377377
static int ssl_send(void *ctx, const unsigned char *buf, size_t len) {
378378
int size = -1;

tls-client/mbedtls_entropy_config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
2+
* Copyright (C) 2006-2016, Arm Limited, All Rights Reserved
33
* SPDX-License-Identifier: Apache-2.0
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*
17-
* This file is part of mbed TLS (https://tls.mbed.org)
17+
* This file is part of Mbed TLS (https://tls.mbed.org)
1818
*/
1919

2020
#if !defined(MBEDTLS_ENTROPY_HARDWARE_ALT) && \

0 commit comments

Comments
 (0)