[Tigervnc-devel] [PATCH 01/10] Add VeNCrypt security types

2010-11-07 Thread Martin Koegler
Signed-off-by: Martin Koegler mkoeg...@auto.tuwien.ac.at --- java/src/com/tigervnc/vncviewer/RfbProto.java | 16 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/java/src/com/tigervnc/vncviewer/RfbProto.java b/java/src/com/tigervnc/vncviewer/RfbProto.java index

[Tigervnc-devel] [PATCH 02/10] Implement VeNCrypt chooser

2010-11-07 Thread Martin Koegler
Signed-off-by: Martin Koegler mkoeg...@auto.tuwien.ac.at --- java/src/com/tigervnc/vncviewer/RfbProto.java | 33 +- java/src/com/tigervnc/vncviewer/VncViewer.java | 43 ++- 2 files changed, 58 insertions(+), 18 deletions(-) diff --git

[Tigervnc-devel] [PATCH 09/10] Remove TightVNC security type from server

2010-11-07 Thread Martin Koegler
Signed-off-by: Martin Koegler mkoeg...@auto.tuwien.ac.at --- common/rfb/ConnParams.cxx |2 +- common/rfb/ConnParams.h|1 - common/rfb/SConnection.cxx | 170 common/rfb/SConnection.h |9 --- 4 files changed, 1 insertions(+), 181

[Tigervnc-devel] [PATCH 07/10] Implement X509 Security types

2010-11-07 Thread Martin Koegler
Signed-off-by: Martin Koegler mkoeg...@auto.tuwien.ac.at --- java/src/com/tigervnc/vncviewer/Makefile|4 +- java/src/com/tigervnc/vncviewer/RfbProto.java |8 ++ java/src/com/tigervnc/vncviewer/VncViewer.java | 15 java/src/com/tigervnc/vncviewer/X509Tunnel.java | 103

[Tigervnc-devel] [PATCH 00/10] VeNCrypt java support

2010-11-07 Thread Martin Koegler
This patchset updates the java code so that it can support all VeNCrypt security types. On thing I noticed, is that the tigervnc server and java client (but not the unix/win client) support the TightVNC security type. This security type is selected by default, if it is supported by server and

[Tigervnc-devel] [PATCH 05/10] Add simple Message Box implementation

2010-11-07 Thread Martin Koegler
Signed-off-by: Martin Koegler mkoeg...@auto.tuwien.ac.at --- java/src/com/tigervnc/vncviewer/Dialog.java | 80 ++ java/src/com/tigervnc/vncviewer/Makefile|6 +- java/src/com/tigervnc/vncviewer/MessageBox.java | 82 +++ 3 files changed,

[Tigervnc-devel] [PATCH 03/10] Support asking for a user name

2010-11-07 Thread Martin Koegler
Signed-off-by: Martin Koegler mkoeg...@auto.tuwien.ac.at --- java/src/com/tigervnc/vncviewer/AuthPanel.java | 13 +++-- java/src/com/tigervnc/vncviewer/VncViewer.java | 31 +++- 2 files changed, 40 insertions(+), 4 deletions(-) diff --git

[Tigervnc-devel] [PATCH 08/10] Disable TightVNC security type

2010-11-07 Thread Martin Koegler
Signed-off-by: Martin Koegler mkoeg...@auto.tuwien.ac.at --- common/rfb/SConnection.cxx|2 +- java/src/com/tigervnc/vncviewer/RfbProto.java |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/rfb/SConnection.cxx b/common/rfb/SConnection.cxx

[Tigervnc-devel] [PATCH 06/10] Implment TLS security type

2010-11-07 Thread Martin Koegler
Signed-off-by: Martin Koegler mkoeg...@auto.tuwien.ac.at --- java/src/com/tigervnc/vncviewer/Makefile |4 +- java/src/com/tigervnc/vncviewer/RfbProto.java | 13 +++ java/src/com/tigervnc/vncviewer/TLSTunnel.java | 51

Re: [Tigervnc-devel] [PATCH 00/10] VeNCrypt java support

2010-11-07 Thread DRC
TurboVNC 1.0 uses the Tight security type to implement its auth extensions, and it relies upon the ability to advertise capabilities to the client using that mechanism. Whether or not the Tight security type actually does anything in our implementation, I think it is important to be able to

Re: [Tigervnc-devel] [PATCH 00/10] VeNCrypt java support

2010-11-07 Thread Martin Koegler
On Sun, Nov 07, 2010 at 12:52:54PM -0600, DRC wrote: TurboVNC 1.0 uses the Tight security type to implement its auth extensions, and it relies upon the ability to advertise capabilities to the client using that mechanism. Whether or not the Tight security type actually does anything in our