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

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

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

all: hkdf pbkdf2 scrypt

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

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

test: ;

clean:
	$(RM) *.o hkdf pbkdf2 scrypt

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

back to top