Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • c78f6b3
  • /
  • demos
  • /
  • signature
  • /
  • Makefile
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:50f1c3452d4dbc8eac7f2e37d72aa3f9744716c8
directory badge Iframe embedding
swh:1:dir:dedae8d695c431890b913b16f9b3cbe8fb21deaf
Makefile
#
# To run the demos when linked with a shared library (default):
#
#    LD_LIBRARY_PATH=../.. ./EVP_EC_Signature_demo
#    LD_LIBRARY_PATH=../.. ./EVP_DSA_Signature_demo
#    LD_LIBRARY_PATH=../.. ./EVP_ED_Signature_demo
#    LD_LIBRARY_PATH=../.. ./rsa_pss_direct
#    LD_LIBRARY_PATH=../.. ./rsa_pss_hash

CFLAGS = -I../../include -g -Wall
LDFLAGS = -L../..
LDLIBS = -lcrypto

TESTS=EVP_EC_Signature_demo EVP_DSA_Signature_demo EVP_ED_Signature_demo rsa_pss_direct rsa_pss_hash

all: $(TESTS)

%.o: %.c
	$(CC) $(CFLAGS) -c $<

EVP_EC_Signature_demo: EVP_EC_Signature_demo.o
EVP_DSA_Signature_demo: EVP_DSA_Signature_demo.o
EVP_ED_Signature_demo: EVP_ED_Signature_demo.o
rsa_pss_direct: rsa_pss_direct.o
rsa_pss_hash: rsa_pss_hash.o

clean:
	$(RM) *.o $(TESTS)

.PHONY: test
test: all
	@echo "\nSignature tests:"
	@set -e; for tst in $(TESTS); do \
		echo "\n"$$tst; \
		LD_LIBRARY_PATH=../.. ./$$tst; \
	done

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top