Skip to content

Commit f5684b4

Browse files
testing: Move crypto to drivers and open_memstream to libc
follow the dissusion from: apache#2931 Signed-off-by: Xiang Xiao <[email protected]>
1 parent d3a1f80 commit f5684b4

20 files changed

+18
-18
lines changed

testing/crypto/3descbc.c renamed to testing/drivers/crypto/3descbc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/3descbc.c
2+
* apps/testing/drivers/crypto/3descbc.c
33
*
44
* SPDX-License-Identifier: BSD-2-Clause
55
* SPDX-FileCopyrightText: 2002 Markus Friedl. All rights reserved.

testing/crypto/CMakeLists.txt renamed to testing/drivers/crypto/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ##############################################################################
2-
# apps/testing/crypto/CMakeLists.txt
2+
# apps/testing/drivers/crypto/CMakeLists.txt
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
File renamed without changes.

testing/crypto/Make.defs renamed to testing/drivers/crypto/Make.defs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/crypto/Make.defs
2+
# apps/testing/drivers/crypto/Make.defs
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#

testing/crypto/Makefile renamed to testing/drivers/crypto/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/crypto/Makefile
2+
# apps/testing/drivers/crypto/Makefile
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#

testing/crypto/aescbc.c renamed to testing/drivers/crypto/aescbc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/aescbc.c
2+
* apps/testing/drivers/crypto/aescbc.c
33
*
44
* SPDX-License-Identifier: ISC
55
* SPDX-FileCopyrightText: 2005 Markus Friedl. All rights reserved.

testing/crypto/aescmac.c renamed to testing/drivers/crypto/aescmac.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/aescmac.c
2+
* apps/testing/drivers/crypto/aescmac.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/crypto/aesctr.c renamed to testing/drivers/crypto/aesctr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/aesctr.c
2+
* apps/testing/drivers/crypto/aesctr.c
33
*
44
* SPDX-License-Identifier: ISC
55
* SPDX-FileCopyrightText: 2005 Markus Friedl <[email protected]>

testing/crypto/aesxts.c renamed to testing/drivers/crypto/aesxts.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/aesxts.c
2+
* apps/testing/drivers/crypto/aesxts.c
33
*
44
* SPDX-License-Identifier: BSD-2-Clause
55
* SPDX-FileCopyrightText: 2002 Markus Friedl. All rights reserved.

testing/crypto/crc32.c renamed to testing/drivers/crypto/crc32.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/crc32.c
2+
* apps/testing/drivers/crypto/crc32.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/crypto/dhm.c renamed to testing/drivers/crypto/dhm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/dhm.c
2+
* apps/testing/drivers/crypto/dhm.c
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*

testing/crypto/ecdsa.c renamed to testing/drivers/crypto/ecdsa.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/ecdsa.c
2+
* apps/testing/drivers/crypto/ecdsa.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/crypto/hash.c renamed to testing/drivers/crypto/hash.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/hash.c
2+
* apps/testing/drivers/crypto/hash.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/crypto/hmac.c renamed to testing/drivers/crypto/hmac.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/hmac.c
2+
* apps/testing/drivers/crypto/hmac.c
33
*
44
* SPDX-License-Identifier: ISC
55
* SPDX-FileCopyrightText: 2008 Damien Bergamini <[email protected]>

testing/crypto/rsa.c renamed to testing/drivers/crypto/rsa.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/rsa.c
2+
* apps/testing/drivers/crypto/rsa.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/open_memstream/CMakeLists.txt renamed to testing/libc/open_memstream/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ##############################################################################
2-
# apps/testing/open_memstream/CMakeLists.txt
2+
# apps/testing/libc/open_memstream/CMakeLists.txt
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
File renamed without changes.

testing/open_memstream/Make.defs renamed to testing/libc/open_memstream/Make.defs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/open_memstream/Make.defs
2+
# apps/testing/libc/open_memstream/Make.defs
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#

testing/open_memstream/Makefile renamed to testing/libc/open_memstream/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/open_memstream/Makefile
2+
# apps/testing/libc/open_memstream/Makefile
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#

testing/open_memstream/open_memstream.c renamed to testing/libc/open_memstream/open_memstream.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/open_memstream/open_memstream.c
2+
* apps/testing/libc/open_memstream/open_memstream.c
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*

0 commit comments

Comments
 (0)