summaryrefslogtreecommitdiff
path: root/apps/netutils/codecs/Kconfig
blob: 5248f1d5db42f9c9219d96f0a59707af1c1596cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config NETUTILS_CODECS
	bool "CODEC Library"
	default n
	---help---
		Enables the netutils/code library: Base64 coding, URL coding, MD5.

if NETUTILS_CODECS

config CODECS_BASE64
	bool "Base 64 Support"
	default n
	---help---
		Enables support for the following interfaces: base64_encode(),
		base64_decode(), base64w_encode(), and base64w_decode(),

		Contributed NuttX by Darcy Gong.

config CODECS_HASH_MD5
	bool "MD5 Support"
	default n
	---help---
		Enables support for the following interfaces: MD5Init(),
		MD5Update(), MD5Final(), MD5Transform(), md5_sum() and md5_hash()

		Contributed NuttX by Darcy Gong.

config CODECS_URLCODE
	bool "URL Decode Support"
	default n
	---help---
		Enables support for the following interfaces: urlencode() and
		urldecode()

		Contributed NuttX by Darcy Gong.

config CODECS_URLCODE_NEWMEMORY
	bool "URL Allocating Decode Support"
	default n
	---help---
		Enables support for the following interfaces: url_encode() and
		url_decode()

		Contributed NuttX by Darcy Gong.

config CODECS_AVR_URLCODE
	bool "URL Raw Decode Support"
	default n
	---help---
		Enables support for the following interfaces: urlrawdecode() and
		urlrawencode()

		Contributed NuttX by Darcy Gong.

endif