Active Members Fi8sVrs Posted October 3, 2014 Active Members Report Posted October 3, 2014 README FILE: CHATROOM Server Daemon AND CLIENT - AES 128 bit Encryption SupportProgramming Languages: C and JavaDescription: This is a chat system composed of a TCP/IP server daemon and its corresponding java client. You can chat with other peers in clear text or AES password based encryption on your own computer network. The AES password encryption and decryption is based on 128 bit key which is padded using SHA-256 applied to the provided password. REQUIREMENT:JDK at least version 8 GCC (GNU C Compiler with standard libraries)Make utility (For Compilation of both java and c program)Operating System of Server: Unix / Linux Operating System of client-user: ANY OS that has at least JRE or JDK 8You can send a chat invitation to anyone by e-mail and attaching the generated .jar java executable (See next instructions). Your client will need at least java version 8. INSTALL:To install javac,java and jar on Unix / Linux: Download jdk, extract jdk and issue the following commands as root:ln -s /path/to/jdk/bin/java /usr/bin/javaln -s /path/to/jdk/bin/jar /usr/bin/jarln -s /path/to/jdk/bin/javac /usr/bin/javacInstall gcc using your package manager.Compile and run Server and Client:make./chatdjava -jar chatclient.jarDownloadSource 1 Quote
Kotzu Posted November 10, 2014 Report Posted November 10, 2014 nu am treaba cu linux-ul ma poate ajuta cineva cu chatul acesta? vreau sa-l hostez intr-un virtual Quote
Active Members Fi8sVrs Posted November 11, 2014 Author Active Members Report Posted November 11, 2014 nu am treaba cu linux-ul ma poate ajuta cineva cu chatul acesta? vreau sa-l hostez intr-un virtualREADME:REQUIREMENT:JDK at least version 8 GCC (GNU C Compiler with standard libraries)Make utility (For Compilation of both java and c program)Operating System of Server: Unix / Linux Operating System of client-user: ANY OS that has at least JRE or JDK 8You can send a chat invitation to anyone by e-mail and attaching the generated .jar java executable (See next instructions). Your client will need at least java version 8. INSTALL:To install javac,java and jar on Unix / Linux: Download jdk, extract jdk and issue the following commands as root:ln -s /path/to/jdk/bin/java /usr/bin/javaln -s /path/to/jdk/bin/jar /usr/bin/jarln -s /path/to/jdk/bin/javac /usr/bin/javacInstall "gcc" and "make" tool using your package manager.Compile and run Server and Client:make./chatdjava -jar chatclient.jarSend the "chatclient.jar" executable to anyone who have at least JRE 8 and tell them to connect where you executed "./chatd".If you want to communicate securely (if you really want to make sure no-body is reading your content) then tell your peer through other secured means (like hard-copy paper or pgp / email) to use the password of your choice and enter it on the password field of the User Interface before sending any message.EOF Quote
f1v3 Posted July 22, 2015 Report Posted July 22, 2015 I am facing an error when I used its@debian:~/Desktop/chatroom_source$ makerm -f chat/tcptest/*javac *.java -d chatwindow1.java:108: error: cannot find symbol this.output2 = Base64.getEncoder().encode(this.output); ^ symbol: variable Base64 location: class window1window1.java:313: error: cannot find symbol (Base64.getDecoder().decode(new String(b2,0,item))), ^ symbol: variable Base64 location: class window12 errorsmake: *** [chatclient.jar] Error 1 Quote
M2G Posted July 22, 2015 Report Posted July 22, 2015 You probably don't have JDK 8 installed.https://docs.oracle.com/javase/8/docs/api/java/util/Base64.htmlrun java -version and check the version. Quote
f1v3 Posted July 22, 2015 Report Posted July 22, 2015 just Installed itjre was installed and now jdk to but still same error Quote