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
  • /
  • encrypt
  • /
  • 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:6d4e0606685ed0ada46afe209b8a08d5f1100c14
directory badge Iframe embedding
swh:1:dir:5cb2042a56eca425b1ab5b6db3cead7f9df4c149
Makefile
#
# To run the demos when linked with a shared library (default):
#
#    LD_LIBRARY_PATH=../.. ./rsa_encrypt

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

TESTS=rsa_encrypt

all: $(TESTS)

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

rsa_encrypt: rsa_encrypt.o

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

.PHONY: test
test: all
	@echo "\nEncrypt 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