mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-10 21:12:01 +03:00
0c34d06494
Instead of extracting information from the X509 certificate chain in the fetcher the entire chain is propagated in Distinguished Encoding Rules (DER) format. This allows all the information contained in a certificate chain to be retained which can subsequently be presented to the user
25 lines
307 B
Makefile
25 lines
307 B
Makefile
# utils sources
|
|
|
|
S_UTILS := \
|
|
bloom.c \
|
|
corestrings.c \
|
|
file.c \
|
|
filename.c \
|
|
filepath.c \
|
|
hashtable.c \
|
|
idna.c \
|
|
libdom.c \
|
|
log.c \
|
|
messages.c \
|
|
nsoption.c \
|
|
punycode.c \
|
|
ssl_certs.c \
|
|
talloc.c \
|
|
time.c \
|
|
url.c \
|
|
useragent.c \
|
|
utf8.c \
|
|
utils.c
|
|
|
|
S_UTILS := $(addprefix utils/,$(S_UTILS))
|