You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CSecurity.java 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
  2. *
  3. * This is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This software is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this software; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  16. * USA.
  17. */
  18. //
  19. // CSecurity - class on the client side for handling security handshaking. A
  20. // derived class for a particular security type overrides the processMsg()
  21. // method. processMsg() is called first when the security type has been
  22. // decided on, and will keep being called whenever there is data to read from
  23. // the server until either it returns 0, indicating authentication/security
  24. // failure, or it returns 1, to indicate success. A return value of 2
  25. // (actually anything other than 0 or 1) indicates that it should be called
  26. // back when there is more data to read.
  27. //
  28. // Note that the first time processMsg() is called, there is no guarantee that
  29. // there is any data to read from the CConnection's InStream, but subsequent
  30. // calls guarantee there is at least one byte which can be read without
  31. // blocking.
  32. package com.tigervnc.rfb;
  33. abstract public class CSecurity {
  34. abstract public boolean processMsg(CConnection cc);
  35. abstract public int getType();
  36. abstract public String description();
  37. public boolean isSecure() { return false; }
  38. /*
  39. * Use variable directly instead of dumb get/set methods.
  40. * It MUST be set by viewer.
  41. */
  42. public static UserPasswdGetter upg;
  43. }