You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(15) |
Nov
(29) |
Dec
(5) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(88) |
Feb
(75) |
Mar
(86) |
Apr
(81) |
May
(47) |
Jun
(36) |
Jul
(87) |
Aug
(61) |
Sep
(37) |
Oct
(36) |
Nov
(18) |
Dec
(4) |
2004 |
Jan
(19) |
Feb
(26) |
Mar
(5) |
Apr
(10) |
May
|
Jun
(2) |
Jul
(14) |
Aug
(21) |
Sep
(8) |
Oct
(51) |
Nov
(20) |
Dec
(11) |
2005 |
Jan
(5) |
Feb
(5) |
Mar
(25) |
Apr
(48) |
May
(6) |
Jun
(29) |
Jul
(42) |
Aug
(25) |
Sep
(11) |
Oct
(42) |
Nov
(43) |
Dec
(52) |
2006 |
Jan
(39) |
Feb
(21) |
Mar
(42) |
Apr
(25) |
May
(22) |
Jun
(9) |
Jul
(4) |
Aug
(7) |
Sep
(3) |
Oct
(7) |
Nov
(11) |
Dec
(8) |
2007 |
Jan
(1) |
Feb
(5) |
Mar
(11) |
Apr
(2) |
May
(5) |
Jun
(9) |
Jul
(1) |
Aug
(9) |
Sep
|
Oct
(8) |
Nov
(1) |
Dec
(1) |
2008 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
(5) |
Dec
|
2009 |
Jan
(8) |
Feb
|
Mar
(1) |
Apr
(5) |
May
(4) |
Jun
(1) |
Jul
(4) |
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
(2) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(10) |
Nov
|
Dec
|
2011 |
Jan
(1) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: Tim B. <tba...@av...> - 2002-10-30 17:21:27
|
I have read able the issue with JCE 1.2.1 and signed providers but I've noticed that if I delete the jce.jar file from $java.home/jre/lib then I can get the examples to work. Is there a better way to do this and if not is Cryptix planning on release a JCE implementation that works with Java 1.4.x in the near future? Thanks, Tim Bardzil |
From: Jeroen C. v. G. <je...@va...> - 2002-10-30 17:17:09
|
Roger, No, I am sorry, I am using the Cryptix JCE classes. -J On Tuesday, Oct 29, 2002, at 22:25 US/Eastern, Roger Whitbread wrote: > Are you using Cryptix 3.2.0? > > The problem we had was when using the addProvider method to install > the cryptix libraries: > > "Netscape security model is no longer supported. > Please migrate to the Java 2 security model instead." > > Then everything just bombs out... im guessing that this is b/c of the > calls that cryptix makes to netscape.security. We are using > the following line to add the libraries: > > java.security.Security.addProvider(new cryptix.provider.Cryptix()); > > are you also using this method in your s/w? > > Thanks, > Roger. > > -----Original Message----- > From: cry...@li... > [mailto:cry...@li...]On Behalf Of Jeroen > C. > van Gelderen > Sent: Wednesday, 30 October 2002 12:55 PM > To: Roger Whitbread > Cc: cry...@li... > Subject: Re: [Cryptix-users] Cryptix and Mac OS X > > > > On Tuesday, Oct 29, 2002, at 01:15 US/Eastern, Roger Whitbread wrote: >> i was wondering if anyone has had tried using Cryptix libraries on Mac >> OS X, in particular, with regard to the security exception >> that gets thrown when you try and load them. > > I'm personally using them on OS X. I don't remember but may very well > have tweaked something to make it work. What exception are you seeing? > > -J > -- > Jeroen C. van Gelderen - je...@va... - +1 242 357 5115 > > "All that is necessary for evil to triumph is for good men to do > nothing." > -- Edmund Burke > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Cryptix-Users mailing list > Cry...@li... > https://lists.sourceforge.net/lists/listinfo/cryptix-users > > -- Jeroen C. van Gelderen - je...@va... - +1 242 357 5115 "Simplicity is the highest goal, achievable when you have overcome all difficulties." -- Frederic Chopin |
From: Jeroen C. v. G. <je...@va...> - 2002-10-30 17:15:16
|
Faveh, On which line does the exception occur? -J On Wednesday, Oct 30, 2002, at 11:50 US/Eastern, Faveh Khosravi wrote: > Hi, > > I am using Cryptix 3 and I get the followoing error: > > java.lang.ClassCastException: > com.sun.rsajca.JSA_RSAPublicKey > > when I run the following code: > > public void computeKeys(int size) { > try { > KeyPairGenerator kpg = > KeyPairGenerator.getInstance("RSA"); > Cipher cipher = Cipher.getInstance("RSA"); > > kpg.initialize(size, prng); > System.out.print(". "); > KeyPair pair = kpg.generateKeyPair(); > System.out.print(". "); > PrivateKey sk = pair.getPrivate(); > System.out.print(". "); > PublicKey pk = pair.getPublic(); > System.out.println(". Done!\n"); > > System.out.println("Getting simple key > components..."); > > BigInteger m = ((CryptixRSAPublicKey) > pk).getModulus(); > BigInteger e = ((CryptixRSAPublicKey) > pk).getExponent(); > System.out.println(" Public key > material:"); > System.out.println(" n: " + > BI.dumpString(m)); > System.out.println(" e: " + > BI.dumpString(e)); > > BigInteger n = ((CryptixRSAPrivateKey) > sk).getModulus(); > BigInteger d = ((CryptixRSAPrivateKey) > sk).getExponent(); > BigInteger p = ((RSAFactors) sk).getP(); > BigInteger q = ((RSAFactors) sk).getQ(); > BigInteger u = ((RSAFactors) > sk).getInverseOfQModP(); > System.out.println(" Private key > material:"); > System.out.println(" n: " + > BI.dumpString(n)); > System.out.println(" d: " + > BI.dumpString(d)); > System.out.println(" p: " + > BI.dumpString(p)); > System.out.println(" q: " + > BI.dumpString(q)); > System.out.println(" u: " + > BI.dumpString(u)); > > > } catch (Exception e) { > System.out.println(e); > } > return; > } > > Your help will be very much appreciated. Thanks in > advance. > > > > __________________________________________________ > Do you Yahoo!? > HotJobs - Search new jobs daily now > http://hotjobs.yahoo.com/ > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Cryptix-Users mailing list > Cry...@li... > https://lists.sourceforge.net/lists/listinfo/cryptix-users > -- Jeroen C. van Gelderen - je...@va... - +1 242 357 5115 "All that is necessary for evil to triumph is for good men to do nothing." -- Edmund Burke |
From: Faveh K. <kav...@ya...> - 2002-10-30 16:57:51
|
Hi, I am using Cryptix 3 and I get the followoing error: java.lang.ClassCastException: com.sun.rsajca.JSA_RSAPublicKey when I run the following code: public void computeKeys(int size) { try { KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA"); Cipher cipher = Cipher.getInstance("RSA"); kpg.initialize(size, prng); System.out.print(". "); KeyPair pair = kpg.generateKeyPair(); System.out.print(". "); PrivateKey sk = pair.getPrivate(); System.out.print(". "); PublicKey pk = pair.getPublic(); System.out.println(". Done!\n"); System.out.println("Getting simple key components..."); BigInteger m = ((CryptixRSAPublicKey) pk).getModulus(); BigInteger e = ((CryptixRSAPublicKey) pk).getExponent(); System.out.println(" Public key material:"); System.out.println(" n: " + BI.dumpString(m)); System.out.println(" e: " + BI.dumpString(e)); BigInteger n = ((CryptixRSAPrivateKey) sk).getModulus(); BigInteger d = ((CryptixRSAPrivateKey) sk).getExponent(); BigInteger p = ((RSAFactors) sk).getP(); BigInteger q = ((RSAFactors) sk).getQ(); BigInteger u = ((RSAFactors) sk).getInverseOfQModP(); System.out.println(" Private key material:"); System.out.println(" n: " + BI.dumpString(n)); System.out.println(" d: " + BI.dumpString(d)); System.out.println(" p: " + BI.dumpString(p)); System.out.println(" q: " + BI.dumpString(q)); System.out.println(" u: " + BI.dumpString(u)); } catch (Exception e) { System.out.println(e); } return; } Your help will be very much appreciated. Thanks in advance. __________________________________________________ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/ |
From: <nbr...@to...> - 2002-10-30 05:58:32
|
Hi, I'm using this stuff for the first time, but am bemused by the following: The javadoc for xjava.security.Cipher states that all versions of crypt() automatically pad/unpad as necessary. =20 But a simple test case for Rijndael: String message =3D "Dennis eats worms."; Cipher cipher =3D Cipher.getInstance(algorithm); cipher.initEncrypt(new RawSecretKey(algorithm, key));=20 byte[] encryptedMessage =3D cipher.crypt(message.getBytes()); cipher.initDecrypt(new RawSecretKey(algorithm, key)); byte[] unencryptedMessage =3D cipher.crypt(encryptedMessage); System.out.println("message=3D" + new String(unencryptedMessage));= Throws the following exception: Exception in thread "main" xjava.security.IllegalBlockSizeException: Rijndael: Non-padding cipher in ENCRYPT state with an incomplete final block at xjava.security.Cipher.updateInternal(Cipher.java:1264) at xjava.security.Cipher.crypt(Cipher.java:1046) at xjava.security.Cipher.crypt(Cipher.java:1011) at com.touchcorp.test.Encrypt.main(Encrypt.java:46) Either the javadoc or the code appears to be wrong. Help? Neil Brennan |
From: <nbr...@to...> - 2002-10-30 05:13:07
|
Hi, I'm using this stuff for the first time, but am bemused by the following: The javadoc for xjava.security.Cipher states that all versions of crypt() automatically pad/unpad as necessary. =20 But a simple test case for Rijndael: String message =3D "Dennis eats worms."; Cipher cipher =3D Cipher.getInstance(algorithm); cipher.initEncrypt(new RawSecretKey(algorithm, key)); byte[] encryptedMessage =3D cipher.crypt(message.getBytes()); cipher.initDecrypt(new RawSecretKey(algorithm, key)); byte[] unencryptedMessage =3D cipher.crypt(encryptedMessage); System.out.println("message=3D" + new String(unencryptedMessage)); Throws the following exception: Exception in thread "main" xjava.security.IllegalBlockSizeException: Rijndael: Non-padding cipher in ENCRYPT state with an incomplete final block at xjava.security.Cipher.updateInternal(Cipher.java:1264) at xjava.security.Cipher.crypt(Cipher.java:1046) at xjava.security.Cipher.crypt(Cipher.java:1011) at com.touchcorp.test.Encrypt.main(Encrypt.java:46) =20 Either the javadoc or the code appears to be wrong. Help? Neil Brennan |
From: Roger W. <ro...@pr...> - 2002-10-30 03:25:33
|
Are you using Cryptix 3.2.0? The problem we had was when using the addProvider method to install the cryptix libraries: "Netscape security model is no longer supported. Please migrate to the Java 2 security model instead." Then everything just bombs out... im guessing that this is b/c of the calls that cryptix makes to netscape.security. We are using the following line to add the libraries: java.security.Security.addProvider(new cryptix.provider.Cryptix()); are you also using this method in your s/w? Thanks, Roger. -----Original Message----- From: cry...@li... [mailto:cry...@li...]On Behalf Of Jeroen C. van Gelderen Sent: Wednesday, 30 October 2002 12:55 PM To: Roger Whitbread Cc: cry...@li... Subject: Re: [Cryptix-users] Cryptix and Mac OS X On Tuesday, Oct 29, 2002, at 01:15 US/Eastern, Roger Whitbread wrote: > i was wondering if anyone has had tried using Cryptix libraries on Mac > OS X, in particular, with regard to the security exception > that gets thrown when you try and load them. I'm personally using them on OS X. I don't remember but may very well have tweaked something to make it work. What exception are you seeing? -J -- Jeroen C. van Gelderen - je...@va... - +1 242 357 5115 "All that is necessary for evil to triumph is for good men to do nothing." -- Edmund Burke ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Cryptix-Users mailing list Cry...@li... https://lists.sourceforge.net/lists/listinfo/cryptix-users |
From: Jeroen C. v. G. <je...@va...> - 2002-10-30 01:53:48
|
On Tuesday, Oct 29, 2002, at 01:15 US/Eastern, Roger Whitbread wrote: > i was wondering if anyone has had tried using Cryptix libraries on Mac > OS X, in particular, with regard to the security exception > that gets thrown when you try and load them. I'm personally using them on OS X. I don't remember but may very well have tweaked something to make it work. What exception are you seeing? -J -- Jeroen C. van Gelderen - je...@va... - +1 242 357 5115 "All that is necessary for evil to triumph is for good men to do nothing." -- Edmund Burke |
From: <fma...@bo...> - 2002-10-29 21:42:31
|
Dear friends, I'm having a problem with this program: /* START...*/ import java.io.*; import java.lang.*; import cryptix.util.core.BI; import cryptix.util.core.Hex; import cryptix.util.test.BaseTest; import java.math.BigInteger; import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.PrivateKey; import java.security.PublicKey; import java.security.SecureRandom; import java.security.Signature; import xjava.security.Cipher; import xjava.security.interfaces.CryptixRSAPublicKey; import xjava.security.interfaces.CryptixRSAPrivateKey; import xjava.security.interfaces.RSAFactors; // BaseTest import java.io.PrintWriter; import java.io.StringWriter; import java.applet.Applet; public class RSAchico3 { // Constantes private static final byte[] message =3D ( "Je ne veux que du magnifique, et je ne travaille pas pour le " + "vulgaire des lecteurs --Giambattista BODONI (1740-1813)").getBytes(); private static final SecureRandom prng =3D new SecureRandom(); // Metodos public static void main (String[] args) throws Exception { java.security.Security.addProvider(new cryptix.provider.Cryptix()= ); new RSAchico3().engine(); } protected void engine() throws Exception { int k =3D 2; KeyPairGenerator kpg =3D KeyPairGenerator.getInstance("RSA"); Signature[] sigs =3D new Signature[] { Signature.getInstance("MD2/RSA/PKCS#1"), Signature.getInstance("MD5/RSA/PKCS#1"), Signature.getInstance("SHA-1/RSA/PKCS#1"), Signature.getInstance("RIPEMD160/RSA/PKCS#1"), }; Cipher cipher =3D Cipher.getInstance("RSA"); int s; // key strength for (int i =3D 1; i < k; i++) { // s =3D 384 + 128 * i; s =3D 512; System.out.println("\nTest #" + (i) + " (" + s + "-bit modulus)\n"); System.out.print(" Generating keypair "); kpg.initialize(s, prng); System.out.print(". "); KeyPair pair =3D kpg.generateKeyPair(); System.out.print(". "); PrivateKey sk =3D pair.getPrivate(); System.out.print(". "); PublicKey pk =3D pair.getPublic(); System.out.println(". Done!\n"); System.out.print(" Testing Signatures \n"); for (int j =3D 0; j < sigs.length; j++) { testSignature(s, pk, sk, sigs[j]); // out.print(". "); } // out.println("Done!\n"); //testEncryption(s, pk, sk, cipher); } } private void testSignature(int s, PublicKey pk, PrivateKey sk, Signat= ure alg) { try { System.out.println(" Signing with a " + s + "-bit key using = " + alg.getAlgorithm() + "..."); alg.initSign(sk); System.out.println("B\n"); alg.update(message); byte[] signature =3D alg.sign(); System.out.println(" Verifying with same " + s + "-bit key using " + alg.getAlgorithm() + "..."); alg.initVerify(pk); alg.update(message); boolean ok =3D alg.verify(signature); if (ok) System.out.println("Verificacao ok!\n"); } catch (Throwable e) { System.out.println(e); } } } /* END...*/ The result is: -------------------- Test #1 (512-bit modulus) Generating keypair . . . . Done! Testing Signatures Signing with a 512-bit key using MD2/RSA/PKCS#1... java.security.InvalidKeyException: MD2/RSA/PKCS#1: Not an RSA private key Signing with a 512-bit key using MD5/RSA/PKCS#1... java.security.InvalidKeyException: MD5/RSA/PKCS#1: Not an RSA private key Signing with a 512-bit key using SHA-1/RSA/PKCS#1... java.security.InvalidKeyException: SHA-1/RSA/PKCS#1: Not an RSA private k= ey Signing with a 512-bit key using RIPEMD160/RSA/PKCS#1... java.security.InvalidKeyException: RIPEMD160/RSA/PKCS#1: Not an RSA priva= te key What does this mean? Where is the error? Thanks! Francisco Magalh=E3es 226-7500/226-7474/9981-3252 ICQ 145605801 S=E3o Lu=EDs - Patrim=F4nio da Humanidade |
From: Roger W. <ro...@pr...> - 2002-10-29 06:15:33
|
Hi, i was wondering if anyone has had tried using Cryptix libraries on Mac OS X, in particular, with regard to the security exception that gets thrown when you try and load them. Thanks, Roger. |
From: Eric A. D. L. <eri...@co...> - 2002-10-24 00:39:24
|
I am using Cryptix 3.2.0, with JDK 1.4.01 running RedHat Linux Server 7.2 with kernel 2.4.7 I get this error within the following code snippet: // Use NTLM authentication if (this.username != null && this.password != null && this.usernameDomain != null && this.hostname != null && this.hostnameDomain != null && this.securityProviderClassName != null) { System.setProperty("java.protocol.handler.pkgs", "HTTPClient"); if (securityProviderClassName != null) { Class securityProvider = Class.forName(securityProviderClassName); Security.addProvider((Provider)securityProvider.newInstance()); /**** THIS LINE THROWS THE EXCEPTION ****/ } HTTPClient.AuthorizationHandler ntlm = new com.luigidragone.net.ntlm.NTLMAuthorizationHandler(hostname, hostnameDomain, username, usernameDomain, password); HTTPClient.AuthorizationInfo.setAuthHandler(ntlm); java.lang.ExceptionInInitializerError at cryptix.provider.Cryptix.getVersionAsDouble(Cryptix.java:115) at cryptix.provider.Cryptix.<init>(Cryptix.java:93) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAcces sorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstruc torAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:274) at java.lang.Class.newInstance0(Class.java:296) at java.lang.Class.newInstance(Class.java:249) at com.quote.io.HttpEventFactory.getResource(HttpEventFactory.java:84) at com.quote.news.feed.HttpFeedManager.run(HttpFeedManager.java:127) Caused by: netscape.security.ForbiddenTargetException: access to target denied at netscape.security.PrivilegeManager.enablePrivilegePrivate(PrivilegeManager.j ava:397) at netscape.security.PrivilegeManager.enablePrivilege(PrivilegeManager.java:412 ) at cryptix.CryptixProperties.setProperties(CryptixProperties.java:443) at cryptix.CryptixProperties.<clinit>(CryptixProperties.java:414) Any help would be truly appreciated! Thanks!! |
From: Marcel M. <mar...@to...> - 2002-10-18 08:09:13
|
Is there a plan to have a cryptix jce provider version on jdk 1.4? Thanks Marcel |
From: Ahmed M. <ah...@fo...> - 2002-10-18 04:29:56
|
Hi All, Could you help with a how-to use Cryptix to encrypt to and decrypt from PGP, please? Thanks a lot for your attention. Your help will be appreciated so much. Best Regards, Ahmed |
From: Ahmed M. <ah...@fo...> - 2002-10-18 04:24:19
|
confirm 234379 |