Changes between Version 2 and Version 3 of Encryption/AES
- Timestamp:
- 01/12/21 15:32:24 (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Encryption/AES
v2 v3 25 25 == Example == 26 26 27 * generate a key: 28 {{{ 29 uuidgen > ./key.txt 30 }}} 31 27 32 * server 28 33 {{{ … … 36 41 --tcp-encryption=AES --tcp-encryption-keyfile=./key.txt 37 42 }}} 43 44 ---- 45 46 With version 4.1 onwards this can be achieved with the more compact syntax: 47 {{{ 48 xpra start --start=xterm --bind-tcp=0.0.0.0:10000,encryption=AES,keyfile=key.txt 38 49 }}} 50 {{{ 51 xpra attach "tcp://localhost:10000/?encryption=AES&keyfile=./key.txt" 52 }}} 53 54 And the key data can be embedded in those strings using the syntax: 55 * `keydata=0x...` for hexadecimal encoded keys 56 * `keydata=...` for plain text keys 57 }}}