2012-04-23 01:14:34 +00:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco Crypto
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
|
|
|
SYSLIBS += -lssl -lcrypto
|
|
|
|
|
2017-09-21 11:42:54 -05:00
|
|
|
objects = Cipher CipherFactory CipherImpl CipherKey CipherKeyImpl \
|
2022-04-09 18:55:26 +00:00
|
|
|
CryptoException CryptoStream CryptoTransform \
|
2022-04-13 10:02:05 +00:00
|
|
|
ECDSADigestEngine ECKey ECKeyImpl Envelope \
|
2022-04-09 18:55:26 +00:00
|
|
|
EVPCipherImpl EVPPKey KeyPair KeyPairImpl PKCS12Container \
|
2012-05-19 03:04:51 +00:00
|
|
|
RSACipherImpl RSAKey RSAKeyImpl RSADigestEngine DigestEngine \
|
2012-04-23 01:14:34 +00:00
|
|
|
X509Certificate OpenSSLInitializer
|
|
|
|
|
|
|
|
target = PocoCrypto
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs = PocoFoundation
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|