File: control

package info (click to toggle)
tlswrapper 0~20250201-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,804 kB
  • sloc: ansic: 7,191; sh: 2,367; makefile: 246
file content (51 lines) | stat: -rw-r--r-- 1,959 bytes parent folder | download
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
Source: tlswrapper
Maintainer: Jan Mojžíš <janmojzis@debian.org>
Priority: optional
Standards-Version: 4.7.0
Section: net
Homepage: https://github.com/janmojzis/tlswrapper
Build-Depends: debhelper-compat (= 13),
               lib25519-dev,
               libbearssl-dev,
               librandombytes-dev,
Vcs-Git: https://salsa.debian.org/janmojzis/tlswrapper.git
Vcs-Browser: https://salsa.debian.org/janmojzis/tlswrapper
Rules-Requires-Root: no

Package: tlswrapper
Depends: ${misc:Depends},
         ${shlibs:Depends},
Architecture: any
Description: TLS encryption wrapper
 The tlswrapper is an TLS encryption wrapper between remote client and
 local program prog.
 .
 Internet <--> tcpserver/inetd/systemd.socket/... <--> tlswrapper <--> prog
 .
 Separate process for every connection
 .
 The tlswrapper is executed from systemd.socket/inetd/tcpserver/... which
 runs separate instance of tlswrapper for each TLS connection.
 It ensures that a vulnerability in the code (e.g. bug in the TLS library)
 can't be used to compromise the memory of another connection.
 .
 Separate process for network connection and for secret-key operation
 .
 To protect against secret-information leaks to the network connection
 (such Heartbleed) tlswrapper runs two independent processes for every
 TLS connection. One process holds secret-keys and runs secret-keys operations
 and second talks to the network. Processes communicate with each other through
 unix pipes.
 .
 Privilege separation, filesystem isolation, limits
 .
 The tlswrapper processes run under dedicated non-zero uid to prohibit kill,
 ptrace, etc. Is chrooted into an empty, unwritable directory to prohibit
 filesystem access. Sets ulimits to prohibit new files, sockets, etc.
 Sets ulimits to prohibit forks.
 .
 TLS library
 .
 The tlswrapper is using BearSSL library which implements only secure
 versions of TLS protocol (TLS1.0 - TLS1.2). And implements safe and
 constant-time algorithms.