Results 1 to 3 of 3
Thread: error in DES implementation
- 03-26-2010, 03:53 PM #1
Member
- Join Date
- Mar 2010
- Posts
- 5
- Rep Power
- 0
error in DES implementation
import java.util.regex.*;
import java.net.*;
import java.io.*;
public class CommandParser implements Serializable
{
public static InetAddress ia;
public static Service service;
public static DESECB d;
public static String key;
public static String path;
public CommandParser (InetAddress ia, Service service)
{
d=new DESECB();
key="Netx4U";
this.ia=ia;
this.service=service;
}
public void cmd(String s) throws Exception
{
service.execute(s);
}
}
Whenever i try to run this code the following error occurs
C:\Java\jdk1.6.0_01\bin>javac CommandParser.java
CommandParser.java:12: cannot find symbol
symbol : class DESECB
location: class CommandParser
public static DESECB d;
^
CommandParser.java:18: cannot find symbol
symbol : class DESECB
location: class CommandParser
d=new DESECB();
^
2 errors
Plz help
Thanx in advance:):)
- 03-26-2010, 04:50 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,603
- Blog Entries
- 7
- Rep Power
- 17
There is no DESECB class included in the core distribution nor do you import one so the compiler complains.
kind regards,
Jos
- 03-26-2010, 05:21 PM #3
Member
- Join Date
- Mar 2010
- Posts
- 5
- Rep Power
- 0
Similar Threads
-
help with rc5 algorithm implementation
By raghav in forum New To JavaReplies: 0Last Post: 03-25-2010, 06:11 AM -
ListIterator implementation
By hari.kr in forum Advanced JavaReplies: 2Last Post: 02-15-2010, 09:14 AM -
Interface Implementation
By Samyx in forum New To JavaReplies: 3Last Post: 12-02-2009, 12:20 PM -
Method implementation
By kathyla18 in forum New To JavaReplies: 6Last Post: 04-02-2009, 06:44 AM -
Graph DPS and BFS implementation
By hey in forum New To JavaReplies: 1Last Post: 01-09-2008, 09:19 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks