亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? connection.java

?? 一個(gè)木馬程序源碼
?? JAVA
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/* *   File:  Connection.java * *   Version 1.02 v1a *   Copyright 1998, 1999 by Hush Communications Corporation, BWI */package hushcode;import java.applet.*;import java.net.*;import java.io.*;import java.awt.*;import java.util.*;import hushcode.HushSHA1;import hushcode.BlowfishCipher;import hushcode.HushApplet;import hushcode.Conversions;import hushcode.ElGamalCipher;import hushcode.HushRandom;import hushcode.ByteQueue;class Connection{ /************************************************************ *  The class variables and the methods that return them  ************************************************************//** * The following variables and methods deal with the user's folderlist.   * The folderlist is obtained by calling the method getFolders(). */  /* The number of folders used by the user   */  private int numberOfFolders;  int numberOfFolders() {return numberOfFolders;}      /* An array containing the names of the user's folders   * in the order they were received from the server   */  private String[] folderNameArray;  String folderName(int x) {return folderNameArray[x];}  /* An array containing the numbers of messages in each folder   * in the order they were received from the server   */  private int[] numberOfMessagesArray;  int numberOfMessages(int x)     {return numberOfMessagesArray[x];}  /* An array containing the numbers of unread messages in each folder   * in the order they were received from the server    */  private int[] numberOfUnreadMessagesArray;  int numberOfUnreadMessages(int x)     {return numberOfUnreadMessagesArray[x];}/** * The following variables and methods deal with the currently open  * folder.  A folder is opened by calling the method openFolder(String foldername) */  /* The name of the currently open folder   */  private String folderName;  String folderName() {return folderName;}   /* The number of messages in the currently open folder   */  private int numberOfMessages;  int numberOfMessages() {return numberOfMessages;}   /* The number of unread messages in the currently open folder   */  private int numberOfUnreadMessages;  int numberOfUnreadMessages() {return numberOfUnreadMessages;}    /* An array containing the messageIDs of messages in the currently    * open folder. messageIDs are assigned in the order messages are     * received from the server.  ?? Do we need this ??   */  private int[] messageIDArray;  int messageID(int x) {return messageIDArray[x];}    /* An array containing the exact sizes in octets of message in the   * currently open folder.  Ordered by messageID.   */  private int[] messageSizeArray;  int messageSize(int x) {return messageSizeArray[x];}  /* An array containing the subjects of the messages in the currently    * open folder.  Ordered by messageID.   */  private String[] subjectArray;  String subject(int x) {return subjectArray[x];}   /* An array containing the from addresses of the messages in the currently    * open folder.  Ordered by messageID.   */  private String[] fromArray;  String from(int x) {return fromArray[x];}  /* An array containing the to addresses of the messages in the currently    * open folder.  Ordered by messageID.   */  private String[] toArray;  String to(int x) {return toArray[x];}   /* An array containing the dates of the messages in the currently    * open folder.  Ordered by messageID.   */  private String[] dateArray;  String date(int x) {return dateArray[x];}   /* An array of type boolean indicating whether or not each message   * in the currently open folder has been read. Ordered by messageID.   */   private boolean[] readArray;  boolean read(int x) {return readArray[x];}  /** * The following variables and methods deal with the current   * message.  The current message is selected by calling * the method getMessage(String messageID). */   /* The messageID of the current message.   */   private int messageID;  int messageID() {return messageID;}  /* The date of the current message.   */   private String date;  String date() {return date;}  /* The subject field of the current message   */  private String subject;  String subject() {return subject;}  /* The to field of the current message   */  private String to;  String to() {return to;}  /* The from field of the current message   */  private String from;  String from() {return from;}  /* The reply-to field of the current message   */  private String replyTo;  String replyTo() {return replyTo;}    /* The cc field of the current message   */  private String cc;  String cc() {return cc;}   /* The bcc field of the current message   */  private String bcc;  String bcc() {return bcc;}   /* The full header of the current message   */  private String header;  String header() {return header;}  /* The body of the current message (unencrypted if the message was secure)   */  private String body;    String body() {return body;}  /* The body of the current message (encrypted if the message was secure)   */  private String actualbody;  String actualbody() {return actualbody;}  /*  If true the message has been rewritten   *  to the server, so the folderlist needs to be reloaded   */  private boolean wasRewritten;  boolean wasRewritten() {return wasRewritten;}  /*  This method wipes the entire message from memory   */  void wipeMessage()  {    date = null;    subject = null;    to = null;    from = null;    replyTo = null;    cc = null;    bcc = null;    header = null;    actualbody = null;    body = "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------";    body = null;  }/** * The following variables and methods deal with the addressbook   * message.  The addressbook is obtained by calling the method * getAddresses(). */  /* The number of addresses in the address book   */  private int numberOfAddresses;  int numberOfAddresses() {return numberOfAddresses;}  /* An array of nicknames for the entries in the addressbook     */  private String[] nicknameArray;  String nickname(int x) {return nicknameArray[x];}  /* An array of fullnames for the entries in the addressbook   */  private String[] fullnameArray;  String fullname(int x) {return fullnameArray[x];}    /* An array of email addresses for the entries in the addressbook   */  private String[] addressesArray;  String addresses(int x) {return addressesArray[x];}  /* An array of public key fingerprints   */  private String[] fingerprintsArray;  String fingerprints(int x) {return fingerprintsArray[x];}/** * The following variables and methods deal with information   * about the users account and current session. */  /* The server's address   */  private String serverAddress;  /* The port the server listens for connections on   */  private int serverPort = 21;  /* The socket used to communicate with the server   */  private Socket s;     /* The service's domain.  Usually hushmail.com   */  private String domain;  String domain() {return domain;}  /* The username   */  private String username;     String username() {return username;}  /* The users email address   */  private String emailAddress;  String emailAddress() {return emailAddress;}    /* Half of a hash of the passPhrase;   */  private byte[] halfPassphraseHash;  void setPassphrase(String passedPassphrase)   {    byte[] passphraseHash = new HushSHA1().SHA1Hash(passedPassphrase);    halfPassphraseHash=new byte[passphraseHash.length/2];    System.arraycopy(passphraseHash,0,halfPassphraseHash,0,halfPassphraseHash.length);    passphraseHash = null;    passCipher = new BlowfishCipher();    passCipher.setKey(passedPassphrase.getBytes());    passedPassphrase = "                                            " +                       "                                            " +                       "                                            " +                       "                                            " +                       "                                            " ;    passedPassphrase=null;  }  /*  The user's public key fingerprint   */  private String fingerprint = "";  String fingerprint() {return fingerprint;}  /* The cipher with the key as user's passphrase   */  private BlowfishCipher passCipher;  void killPassCipher() {passCipher=null;}  /* The pseudo stream cipher for communication between applet and server   */  private BlowfishCipher blowfishPipe;   /* The sessionID.  64 bytes used as a unique identifier by the server to ensure   * a user cannot open multiple sessions, and that no one can break into the middle   * of a session.   */  private byte[] sessionIDBytes;  /* The user's encrypted public key   */  private byte[] encPrivKey;  /* A random number stream for encryption   */  private HushRandom randStream;   /* The applet using this instance of Connection   */  private HushApplet hushApplet;   /* A count of the tasks currently requiring use of the socket.   * Allows the socket to close when not needed.   */  private int socketRequests;  /* An output stream to the socket   */  BufferedOutputStream out;  /* An input stream from the socket.   */  BufferedInputStream eIn;  /* An input stream from a decrypted String which is used as a buffer   * to store data from eIn after it has been decrypted with blowfishPipe   */  DataInputStream in;  /* A boolean flag that indicates if the socket connection has been used yet.   * This ensures the session will only be initialized by method use() once   */  private boolean initialUse;  private String spaces="                               ";/************************************************************ *  Actions ************************************************************/    Connection(String passedUsername, String passedSessionID, String passedSessionKey, HushApplet a) //Constructor  {    /**     * This is the class constructor     */    username = passedUsername.toLowerCase();    /* Convert sessionID hex string to an array of bytes     */    sessionIDBytes = Conversions.hexStringToBytes(passedSessionID);      /* Convert sessionKey hex string to an array of bytes     */    byte[] sessionKeyBytes = Conversions.hexStringToBytes(passedSessionKey);    /* Instantiate cipher with sessionKey     */    blowfishPipe = new BlowfishCipher();    blowfishPipe.setKey(sessionKeyBytes);    hushApplet = a;    serverAddress = hushApplet.getCodeBase().getHost();    domain = "hushmail.com";    emailAddress = username+"@"+domain;    /* Since this session has just been started, no tasks are using the socket yet     */    socketRequests = 0;    /* The socket has not yet been used for communication     */    initialUse = true;    randStream = new HushRandom(new HushSHA1().SHA1Hash(Conversions.longToBytes(new Date().getTime())));  }    void getFolders() throws IOException  {     /**    *  Retrieves information on the folders stored on the server    *       numberOfFolders is set to the number of folders the     *           user has.    *       folderNameArray contains the names of the folders.    *        numberOfMessagesArray contains the numbers of messages    *          in each folder     *        numberOfUnreadMessagesArray contains the numbers of     *          unread messages in each folder     */        encryptAndWrite("LISTFOLDERS\n");    readAndDecrypt();    if (!in.readLine().equals("OK")) throw new IOException();    numberOfFolders = Integer.parseInt(in.readLine());    folderNameArray = new String[numberOfFolders];    numberOfMessagesArray = new int[numberOfFolders];    numberOfUnreadMessagesArray = new int[numberOfFolders];    for (int x=0;x<numberOfFolders;x++)         {      folderNameArray[x] = in.readLine();      numberOfMessagesArray[x] = Integer.parseInt(in.readLine());       numberOfUnreadMessagesArray[x]= Integer.parseInt(in.readLine());    }  }  void deleteFolder(String passedFolderName) throws IOException  {   /**    *  Indicates to the server that the folder with name    *  passedFolderName should be deleted    */     encryptAndWrite("DELETEFOLDER\n"+passedFolderName.trim()+"\n");    readAndDecrypt();    if (!in.readLine().equals("OK")) throw new IOException();   } 

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人av一区二区三区在线观看| 成人精品国产一区二区4080| 性感美女久久精品| 亚洲靠逼com| 亚洲视频中文字幕| 亚洲免费观看视频| 亚洲日本在线观看| 综合久久久久综合| 一区二区不卡在线播放| 亚洲一区二区三区中文字幕| 亚洲成人免费看| 无吗不卡中文字幕| 天堂在线亚洲视频| 日本va欧美va精品发布| 另类小说欧美激情| 国产在线精品一区二区不卡了| 国产一区二区三区免费播放| 成人午夜激情影院| 97se亚洲国产综合自在线观| 91久久精品一区二区三区| 欧美视频你懂的| 日韩视频在线永久播放| 日韩精品一区二| 久久先锋影音av鲁色资源网| 国产欧美一区二区精品久导航 | 欧美日韩免费观看一区二区三区| 欧美三片在线视频观看| 51久久夜色精品国产麻豆| 日韩三级中文字幕| 久久精品人人爽人人爽| 中文字幕一区二区三区在线播放 | 亚洲素人一区二区| 亚洲一区视频在线| 免费成人深夜小野草| 国产成人在线视频网站| 99国产精品一区| 欧美日韩国产精品成人| 日韩精品一区二区三区视频在线观看 | 国产精品一二三在| 99国产精品久久久| 欧美日韩国产精品成人| 亚洲精品一区二区三区蜜桃下载| 国产精品久久久久四虎| 亚洲成人自拍偷拍| 国产在线乱码一区二区三区| 99精品桃花视频在线观看| 欧美日韩国产另类一区| 久久精品亚洲乱码伦伦中文| 亚洲免费三区一区二区| 久久精品国产第一区二区三区| 成人国产精品免费观看视频| 欧美婷婷六月丁香综合色| 久久综合九色欧美综合狠狠| 亚洲国产视频一区二区| 国产精品一区二区在线播放| 日本精品一区二区三区高清| 欧美成人精精品一区二区频| 亚洲三级电影全部在线观看高清| 青青草国产成人av片免费| 99久久er热在这里只有精品66| 日韩欧美一区二区久久婷婷| 最近中文字幕一区二区三区| 美国欧美日韩国产在线播放| 波多野结衣的一区二区三区| 日韩欧美美女一区二区三区| 一区二区成人在线视频| 国产在线播放一区| 欧美日韩国产综合一区二区| 中文字幕一区二区三区精华液| 看国产成人h片视频| 欧美三片在线视频观看| 国产精品国产三级国产普通话99 | 日本亚洲视频在线| 一本大道久久a久久综合| 久久久久九九视频| 蜜桃视频一区二区三区| 欧美图区在线视频| 亚洲欧美日韩国产中文在线| 丰满少妇久久久久久久| 久久亚洲春色中文字幕久久久| 午夜av电影一区| 日本高清不卡视频| 中文字幕av一区二区三区高| 青娱乐精品视频| 欧美在线三级电影| 亚洲国产精品精华液ab| 国产在线精品国自产拍免费| 欧美精品电影在线播放| 亚洲色图一区二区| 懂色一区二区三区免费观看| 欧美一三区三区四区免费在线看| 一区二区国产盗摄色噜噜| 成人毛片在线观看| 久久老女人爱爱| 美女网站色91| 在线电影一区二区三区| 国产精品卡一卡二| 成人久久视频在线观看| 久久精品一级爱片| 黄一区二区三区| 日韩一级黄色大片| 午夜精品一区二区三区免费视频| 99久久精品国产观看| 国产精品成人免费在线| 国产成人在线色| 精品国产伦一区二区三区观看方式| 亚洲国产成人tv| 日本黄色一区二区| 亚洲精品一二三四区| 成人高清在线视频| 久久久久久麻豆| 国产精品白丝jk白祙喷水网站 | 亚洲国产精品成人久久综合一区| 九九国产精品视频| 欧美一区二区三区思思人| 婷婷一区二区三区| 91精品国产一区二区人妖| 婷婷久久综合九色国产成人 | 免费高清在线一区| 欧美成人免费网站| 精品制服美女丁香| 日韩美女天天操| 另类综合日韩欧美亚洲| 欧美mv和日韩mv的网站| 激情综合色播五月| 色综合色综合色综合色综合色综合| 亚洲综合一区二区精品导航| 91久久精品一区二区三| 亚洲国产精品一区二区www| 欧美系列一区二区| 亚洲国产日日夜夜| 欧美色图免费看| 亚洲成人免费看| 久久亚区不卡日本| 丁香婷婷综合五月| 国产精品福利一区| 日本韩国一区二区三区视频| 天天综合网 天天综合色| 欧美一级淫片007| 国内精品伊人久久久久影院对白| 国产精品久久久久婷婷二区次| 91蜜桃网址入口| 亚洲国产精品麻豆| 8v天堂国产在线一区二区| 久久激情五月激情| 国产精品无遮挡| 欧美精品久久久久久久多人混战| 免费观看一级欧美片| 久久先锋影音av鲁色资源网| 91在线一区二区| 亚洲精品乱码久久久久久| 欧美狂野另类xxxxoooo| 久久99精品久久久久久动态图 | 国产精品视频一区二区三区不卡| 国产91色综合久久免费分享| 亚洲欧美国产77777| 91精品黄色片免费大全| 国产一区在线观看麻豆| 亚洲女同一区二区| 日韩一区二区三免费高清| 风间由美性色一区二区三区| 一区二区激情小说| 欧美精品一区二区三| 99国产精品久久久久久久久久久| 日韩专区在线视频| 国产欧美一区视频| 欧美性生活影院| 国产乱码精品一区二区三区忘忧草| 亚洲特黄一级片| 日韩一级大片在线| 99久久99久久久精品齐齐| 奇米一区二区三区av| 国产精品美女视频| 制服.丝袜.亚洲.中文.综合| 波波电影院一区二区三区| 国产尤物一区二区在线| 一区二区三区欧美亚洲| 久久久久久久综合色一本| 欧美日韩你懂的| 成人a免费在线看| 精品一区二区三区久久| 亚洲综合图片区| 中文字幕 久热精品 视频在线 | 91在线高清观看| 免费观看30秒视频久久| 一区二区免费在线播放| 欧美一级免费大片| 成人av在线一区二区三区| 老汉av免费一区二区三区| 亚洲一级二级三级在线免费观看| 中文字幕欧美激情一区| 在线观看91精品国产麻豆| 91美女在线视频| 成人黄色在线网站| 精品制服美女丁香| 亚洲大片精品永久免费| 亚洲大片在线观看| 亚洲精品日产精品乱码不卡| 国产精品乱人伦中文| 欧美精品一区二区三区在线|