I've searched throughout different forums and now I am finally putting my question as I can't find specific answer.

I am writing security protocol for SunSPOT Sensors as my final year Project.

I wish to generate a 128 bit Key which can be hashed later on, through my search on web I come across that best method to generate the random keys is SecureRandom.

I am trying to implement the general statement to see how it works so that I can use it further according to my requirement

SecureRandom gen = SecureRandom.getInstance("SHA1WITHECDSA");

above statment I have used with "SHA1PRNG", "MD5ECDSA" and "ECDSAWithSHA1Signature" as soon as I complete Statement and put semicolon it return this Error

method getInstance in class com.sun.spot.security.implementation.SecureRandom cannot be applied to given types
required: byte found: java.lang.String

I have added the Jar file respectively to the build.xml and into the build.properties ; also the imported the algorithm into the program.

Thanks for reading

and any help is much appriciated

Thankyou Every One who have tried to help.

Hash (Hasnain)

link|improve this question
Please copy and paste the entire stack trace. – GregS Mar 9 '11 at 0:23
@GregS : I beg your pardon, Stack Trace ? what do you require to help. – Hash Mar 9 '11 at 17:30
Stack traces happen with runtime failures. His code doesn't even compile. – Jorn Mar 9 '11 at 22:58
@Jorn, thanks, I mistakenly thought he was seeing a runtime exception. – GregS Mar 10 '11 at 0:35
feedback

5 Answers

Why not just say "SecureRandom()" and let the system pick the algorithm? Here is an explicit example:

import java.security.SecureRandom;

public class Rando {
    public static void main(String[] args) {
        System.out.println(new SecureRandom().nextFloat());
    }

}
link|improve this answer
I am sorry I think I just ammended your reply to comment on it – Hash Mar 8 '11 at 23:13
General Defination return the error such as "cannot find symbol symbol: method SecureRandom() " – Hash Mar 8 '11 at 23:16
I added an example of exactly how to do this. – Spike Gronim Mar 9 '11 at 20:05
"sunspotworld.com/docs/Red/hostjavadoc/com/sun/squawk/security/…; also the Demo code is attached "4shared.com/dir/tJvfDOwg/Code.html"; check the line 53 for the getinstance algorithm; further the Jar file is attached so you can verify that I can use SecureRandom. – Hash Mar 10 '11 at 3:31
I can't use the same class as Java.security.SecureRandom as it is for J2SE, I am working on special build JVM called Squawk ... am I able to build the same information ??? few documantation and relavent information which I know is attached for your information. kindly advice further – Hash Mar 10 '11 at 3:34
feedback

Are you using the correct class? You should be using java.security.SecureRandom. Also, SHA1WITHECDSA, MD5ECDSA, and ECDSAWithSHA1Signature are nonsensical as SecureRandom instances.

link|improve this answer
@ Greg S : Thanks for your response I am writing code for SunSPOT sensor (sunspotworld.com) and the location of Secure Random class for squawk based device is "com.sun.spot.security.implementation.SecureRandom". Please guide me with a different suggestion. Thank you – Hash Mar 9 '11 at 17:02
ahh, sorry, I was not familiar with sun spot. I went on to sunspotworld.com website, took a look at the APIs and found no SecureRandom class of any kind. Can you provide a link to the javadocs for that class? – GregS Mar 10 '11 at 0:28
Thanks Greg S for showing intrest .... "sunspotworld.com/docs/Red/hostjavadoc/com/sun/squawk/security/…; also the Demo code is attached "4shared.com/dir/tJvfDOwg/Code.html"; check the line 53 for the getinstance algorithm; further the Jar file is attached so you can verify that I can use SecureRandom – Hash Mar 10 '11 at 3:29
The page you link to does not have a SecureRandom class. The code of your link shows Signature.getInstance, not SecureRandom.getInstance. – GregS Mar 10 '11 at 12:52
yes true but SHA algorithm is the same for using as a Signature or SecureRandom. Plus the class has SecureRandom not the Javadoc (Check Jar for SecureRandom). therefore I am asking the question on forum about this problem, if I had documentation I might have tried to read through it earlier – Hash Mar 10 '11 at 14:03
feedback

Sounds to me as if you're calling a method that requires a byte as argument, but you are supplying a String.

link|improve this answer
Yes that's the error ... But Although If you "put SecureRandom gen = SecureRandom.getInstance("SHA1PRNG"); which is the general statement it will return the same result :( – Hash Mar 8 '11 at 23:04
feedback

The error is referring to the class com.sun.spot.security.implementation.SecureRandom. You should presumably be using java.security.SecureRandom (it is this class that has the getInstance method that takes a String).

You probably have an incorrect import statement.

link|improve this answer
@ Dan Dyer : Thanks for your response I am writing code for SunSPOT sensor (sunspotworld.com) and the location of Secure Random class for squawk based device is correct as I mentioned. Please refer me to a different suggestion. Thank You – Hash Mar 9 '11 at 17:00
@Hash The Sunspot SecureRandom class is not the same as java.security.SecureRandom (I didn't realise that this was not included in the Sunspot API). It's not the same class in a different package, it's a different class with the same name. You can't call getInstance(String) on it because it doesn't have that method. The example code you are copying probably expects java.security.SecureRandom. The Sunspot class does have a method getInstance(byte), you should probably investigate that. – Dan Dyer Mar 9 '11 at 19:44
Thanks Greg S for showing intrest .... "sunspotworld.com/docs/Red/hostjavadoc/com/sun/squawk/security/…; also the Demo code is attached "4shared.com/dir/tJvfDOwg/Code.html"; check the line 53 for the getinstance algorithm; further the Jar file is attached so you can verify that I can use SecureRandom – Hash Mar 10 '11 at 3:30
feedback

Instance required for secure random in SunSPOT java application is as follow

SecureRandom gen; gen = SecureRandom.getInstance(SecureRandom.ALG_SECURE_RANDOM);

I would like to Thank Everyone who put their effort to resolve this error.

Thanks once again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.