We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Similar to #1160 / #2424, should re-use the same syntax, ie:
xpra attach \ tcp://127.0.0.1:10000/,cork=0,nodelay=1,encryption=AES:keyfile=key.txt,auth=file:filename=password.txt
The text was updated successfully, but these errors were encountered:
We already have #2460, but the syntax above is better for shell compatibility as it does not require quotes. (no &)
&
Also, support for encryption options needs adding.
Sorry, something went wrong.
Done in r26644 (+r26645 typo), with fixes and improvements in r26647, r26648, r26650.
encryption=AES is assumed if the display string contains keyfile or keydata. keydata can be used to specify the encryption key data inline, ie:
encryption=AES
keyfile
keydata
xpra attach tcp://user:[email protected]:10000/keydata=0123456789ABCDEF
The keydata can also be specified as hex:
xpra attach tcp://antoine:[email protected]:10000/keydata=0x30313233343536373839414243444546
Or using a keyfile:
echo -n "0123456789ABCDEF" > ./aes.txt xpra attach tcp://antoine:[email protected]:10000/keyfile=./aes.txt
No branches or pull requests
Similar to #1160 / #2424, should re-use the same syntax, ie:
The text was updated successfully, but these errors were encountered: