2012-12-22 11:23:58 +04:00
|
|
|
# WinPR: Windows Portable Runtime
|
|
|
|
# libwinpr-crypto cmake build script
|
|
|
|
#
|
|
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2022-10-18 14:51:09 +03:00
|
|
|
set(SRCS
|
2015-10-08 20:58:55 +03:00
|
|
|
hash.c
|
2015-10-08 23:26:37 +03:00
|
|
|
rand.c
|
|
|
|
cipher.c
|
2015-10-08 20:58:55 +03:00
|
|
|
cert.c
|
2014-04-29 11:42:18 +04:00
|
|
|
crypto.c
|
2022-10-18 14:51:09 +03:00
|
|
|
crypto.h
|
|
|
|
)
|
2023-05-17 11:07:08 +03:00
|
|
|
if (WITH_INTERNAL_RC4)
|
|
|
|
list(APPEND SRCS rc4.c rc4.h)
|
|
|
|
endif()
|
|
|
|
|
2022-10-18 14:51:09 +03:00
|
|
|
if (WITH_INTERNAL_MD4)
|
|
|
|
list(APPEND SRCS md4.c md4.h)
|
|
|
|
endif()
|
|
|
|
|
2022-10-18 14:52:00 +03:00
|
|
|
if (WITH_INTERNAL_MD5)
|
|
|
|
list(APPEND SRCS md5.c md5.h)
|
2022-10-18 15:11:15 +03:00
|
|
|
list(APPEND SRCS hmac_md5.c hmac_md5.h)
|
2022-10-18 14:52:00 +03:00
|
|
|
endif()
|
|
|
|
|
2022-10-18 14:51:09 +03:00
|
|
|
winpr_module_add(
|
|
|
|
${SRCS}
|
|
|
|
)
|
2012-12-22 11:23:58 +04:00
|
|
|
|
2015-10-21 18:36:37 +03:00
|
|
|
if(OPENSSL_FOUND)
|
|
|
|
winpr_include_directory_add(${OPENSSL_INCLUDE_DIR})
|
2019-03-15 13:36:24 +03:00
|
|
|
winpr_library_add_private(${OPENSSL_LIBRARIES})
|
2015-10-21 18:36:37 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(MBEDTLS_FOUND)
|
|
|
|
winpr_include_directory_add(${MBEDTLS_INCLUDE_DIR})
|
2019-03-15 13:36:24 +03:00
|
|
|
winpr_library_add_private(${MBEDTLS_LIBRARIES})
|
2015-10-21 18:36:37 +03:00
|
|
|
endif()
|
|
|
|
|
2014-07-17 20:02:47 +04:00
|
|
|
if(WIN32)
|
2019-03-15 13:36:24 +03:00
|
|
|
winpr_library_add_public(crypt32)
|
2014-07-17 20:02:47 +04:00
|
|
|
endif()
|
|
|
|
|
2013-01-04 21:16:55 +04:00
|
|
|
if(BUILD_TESTING)
|
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|