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
  • /
  • kdf
  • /
  • 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:28ad7209b10cb18cb1b9010b0d67a27d37bbfbb6
directory badge Iframe embedding
swh:1:dir:bf09c3f808a591f11495e7c7157f866d51edd3a7
Makefile
#
# To run the demos when linked with a shared library (default):
#
#    LD_LIBRARY_PATH=../.. ./hkdf

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

TESTS=hkdf pbkdf2 scrypt argon2

all: $(TESTS)

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

hkdf: hkdf.o
pbkdf2: pbkdf2.o
scrypt: scrypt.o
argon2: argon2.o

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

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