JoshuaJeong / nhin-d

Automatically exported from code.google.com/p/nhin-d
0 stars 0 forks source link

Bug in createPKCS12.sh tool #209

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Run direct.tools/createPKCS12.sh

2. enter the command as so

./createPKCS12.sh -cert cert.der -key key.der -out out.p12

What is the expected output? What do you see instead?

Expected a .p12 file to be created.

Instead we get an error.

Error: Unknown argument -cert0

For some reason a "0" is getting added to the end of the command line 
arguments..Unsure why and determined it to be a bug.

What version of the product are you using? On what operating system?

Java RI 2.0 on Ubuntu 12.

Original issue reported on code.google.com by Alan.C.V...@gmail.com on 27 Mar 2013 at 8:38

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
I found this behavior went away when I used

sh ./createPKCS12.sh -cert cert.der -key key.der -out out.p12

Adding the sh seems to be necessary to make this run (at least for me).

Original comment by Alan.C.V...@gmail.com on 27 Mar 2013 at 9:04