hg: jdk8/tl/jdk: 8008434: Misc javadoc warning fixes in DateTimeFormatterBuilder and TimeZone

2013-02-19 Thread joe . darcy
Changeset: 49b3d8efd30a Author:darcy Date: 2013-02-19 00:19 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/49b3d8efd30a 8008434: Misc javadoc warning fixes in DateTimeFormatterBuilder and TimeZone Reviewed-by: mduigou, okutsu !

hg: jdk8/tl/jdk: 2 new changesets

2013-02-19 Thread sean . coffey
Changeset: 885bb24f6018 Author:coffeys Date: 2013-02-19 14:07 + URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/885bb24f6018 7197187: Currency.isPastCutoverDate should be made more robust Reviewed-by: alanb ! src/share/classes/java/util/Currency.java Changeset: 01b6b0dd2006

hg: jdk8/tl/jdk: 8007609: WinNTFileSystem_md.c should correctly check value returned from realloc

2013-02-19 Thread chris . hegarty
Changeset: 824187de1591 Author:jzavgren Date: 2013-02-19 16:19 + URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/824187de1591 8007609: WinNTFileSystem_md.c should correctly check value returned from realloc Reviewed-by: alanb, chegar, dholmes !

Re: RFR: JDK-8007607

2013-02-19 Thread Chris Hegarty
Hi John, Functionally this looks fine. Most my comments are nit picking, and style. src/share/native/sun/security/jgss/wrapper/GSSLibStub.c My fault, I think I suggested you return NULL, but since these methods return jlong they cannot (without generating warnings). It would be better

Re: RFR JDK-8008107

2013-02-19 Thread Chris Hegarty
Looks ok to me. -Chris. On 02/19/2013 05:16 PM, John Zavgren wrote: Greetings: I posted a webrev image: http://cr.openjdk.java.net/~jzavgren/8008107/webrev.01/, of a change that I made to the native source code file: jdk/src/share/native/sun/security/pkcs11/wrapper/p11_convert.c There is a

hg: jdk8/tl/jdk: 7092447: Clarify the default locale used in each locale sensitive operation

2013-02-19 Thread naoto . sato
Changeset: af396ec087f4 Author:naoto Date: 2013-02-19 10:34 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/af396ec087f4 7092447: Clarify the default locale used in each locale sensitive operation Reviewed-by: okutsu ! src/share/classes/java/text/DateFormat.java !

Re: hg: jdk8/tl/langtools: 8006212: javac, convert jtreg tests from shell script to java

2013-02-19 Thread Jonathan Gibbons
Woohoo -- 23 shell tests replaced with equivalent Java code: that's over 2/3 of the shell tests in langtools/test. -- Jon On 02/19/2013 09:54 AM, vicente.rom...@oracle.com wrote: Changeset: dc8b7aa7cef3 Author:vromero Date: 2013-02-19 17:53 + URL:

Re: RFR: JDK-8007607

2013-02-19 Thread Valerie (Yu-Ching) Peng
src/share/native/sun/security/jgss/wrapper/GSSLibStub.c - The implementation of throwByName(...) and throwOutOfMemory(...) should be moved to NativeUtil.c as that's where most if not all the utility functions are held. - I think it's better to move the block of code from line 330 to 333 to

PKCS #11 provider shutdown process, key zeroization

2013-02-19 Thread Matthew Hall
Hello, I am working on a product which uses the Sun PKCS #11 provider. I was curious how the FIPS mode worked, in particular about the shutdown procedure and whether or not it performed key and password zeroization, so I was reading through the OpenJDK 7 trunk version of the implementation

hg: jdk8/tl/jdk: 8004561: Additional functional interfaces, extension methods and name changes

2013-02-19 Thread mike . duigou
Changeset: 16efb7ba188f Author:mduigou Date: 2013-02-19 11:56 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/16efb7ba188f 8004561: Additional functional interfaces, extension methods and name changes Summary: Adds additional functional interfaces for primitives and Bi (two

hg: jdk8/tl/jdk: 8008107: [parfait] Use after free of pointer in jdk/src/share/native/sun/security/pkcs11/wrapper/p11_convert.c

2013-02-19 Thread sean . mullan
Changeset: 267bca6af07e Author:jzavgren Date: 2013-02-19 15:31 -0500 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/267bca6af07e 8008107: [parfait] Use after free of pointer in jdk/src/share/native/sun/security/pkcs11/wrapper/p11_convert.c Reviewed-by: mullan, chegar !

Safe storage of RSA private keys before binding to X.509 cert

2013-02-19 Thread Matthew Hall
Hello, I have a question about safely storing RSA private keys while waiting for a Cerification Request to be processed remotely so a signed X.509 Certificate will be returned. I want to store it inside the PKCS #11 KeyStore so it will be protected while we wait for the Certificate to become

Re: PKCS #11 provider shutdown process, key zeroization

2013-02-19 Thread Matthew Hall
I found another issue related to this topic. Quite a number of bits of code are printing out the content of the private exponent of the RSA Private Keys by default into the toString() output, which could lead to key compromise if they're printed into a log.

hg: jdk8/tl/jdk: 8008262: pack200 should support MethodParameters - part 2

2013-02-19 Thread kumar . x . srinivasan
Changeset: ec1a79c3a99c Author:ksrini Date: 2013-02-19 16:49 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/ec1a79c3a99c 8008262: pack200 should support MethodParameters - part 2 Reviewed-by: jrose ! src/share/classes/com/sun/java/util/jar/pack/Attribute.java !

hg: jdk8/tl/langtools: 8006948: Update javac for MethodParameters format change

2013-02-19 Thread kumar . x . srinivasan
Changeset: 9345394ac8fe Author:ksrini Date: 2013-02-19 17:19 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/9345394ac8fe 8006948: Update javac for MethodParameters format change Reviewed-by: ksrini, forax Contributed-by: eric.mccor...@oracle.com !

Re: Safe storage of RSA private keys before binding to X.509 cert

2013-02-19 Thread mstjohns
Store the private key with a self-signed certificate. Replace the cert when it is issued. Sent from Comcast mobile -Original Message- From: Matthew Hall To: security-dev Sent: 2013-02-20 00:27:51 + Subject: Safe storage of RSA private keys before binding to X.509 cert Hello, I

Re: Safe storage of RSA private keys before binding to X.509 cert

2013-02-19 Thread Matthew Hall
Is there a more elegant way? On Wed, Feb 20, 2013 at 02:24:40AM +, mstjo...@comcast.net wrote: Store the private key with a self-signed certificate. Replace the cert when it is issued. Sent from Comcast mobile -Original Message- From: Matthew Hall To: security-dev Sent:

Re: Safe storage of RSA private keys before binding to X.509 cert

2013-02-19 Thread mstjohns
Not using the pkcs11 provider. If you use the (undocumented) wrapper classes you can get more direct access to the pkcs11 libraries. Or go with the iaik pkcs11 lobs. Sent from Comcast mobile -Original Message- From: Matthew Hall To: mstjohns Cc: security-dev Sent: 2013-02-20

Re: Safe storage of RSA private keys before binding to X.509 cert

2013-02-19 Thread Matthew Hall
How could I do it with the undocumented classes? Muahahahahaha! :) On Wed, Feb 20, 2013 at 02:36:26AM +, mstjo...@comcast.net wrote: Not using the pkcs11 provider. If you use the (undocumented) wrapper classes you can get more direct access to the pkcs11 libraries. Or go with the iaik

Re: Safe storage of RSA private keys before binding to X.509 cert

2013-02-19 Thread mstjohns
Use the source Luke. Sent from Comcast mobile -Original Message- From: Matthew Hall To: mstjohns Cc: security-dev Sent: 2013-02-20 02:48:57 + Subject: Re: Safe storage of RSA private keys before binding to X.509 cert How could I do it with the undocumented classes? Muahahahahaha!

Re: Safe storage of RSA private keys before binding to X.509 cert

2013-02-19 Thread Matthew Hall
Abandon all hope, ye who import sun.* ? :-D On Wed, Feb 20, 2013 at 02:54:08AM +, mstjo...@comcast.net wrote: Use the source Luke. Sent from Comcast mobile -Original Message- From: Matthew Hall To: mstjohns Cc: security-dev Sent: 2013-02-20 02:48:57 + Subject: Re:

hg: jdk8/tl/corba: 2 new changesets

2013-02-19 Thread lana . steuck
Changeset: 27d6368ae8ba Author:katleman Date: 2013-02-14 11:43 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/corba/rev/27d6368ae8ba Added tag jdk8-b77 for changeset 35684a40c584 ! .hgtags Changeset: c528d8ce83f1 Author:lana Date: 2013-02-19 20:48 -0800 URL:

hg: jdk8/tl/jaxp: Added tag jdk8-b77 for changeset 573e789c187a

2013-02-19 Thread lana . steuck
Changeset: 00958c5a7070 Author:katleman Date: 2013-02-14 11:43 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/jaxp/rev/00958c5a7070 Added tag jdk8-b77 for changeset 573e789c187a ! .hgtags

hg: jdk8/tl/jaxws: Added tag jdk8-b77 for changeset 64dfba1bad16

2013-02-19 Thread lana . steuck
Changeset: 391de4c992d1 Author:katleman Date: 2013-02-14 11:43 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/jaxws/rev/391de4c992d1 Added tag jdk8-b77 for changeset 64dfba1bad16 ! .hgtags

hg: jdk8/tl: 3 new changesets

2013-02-19 Thread lana . steuck
Changeset: 45d6d221 Author:katleman Date: 2013-02-14 11:43 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/rev/45d6d221 Added tag jdk8-b77 for changeset 3933eebc659d ! .hgtags Changeset: bbb7548d45c7 Author:lana Date: 2013-02-14 22:11 -0800 URL:

hg: jdk8/tl/hotspot: 36 new changesets

2013-02-19 Thread lana . steuck
Changeset: 1f84c84f8e1a Author:katleman Date: 2013-02-14 11:43 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/hotspot/rev/1f84c84f8e1a Added tag jdk8-b77 for changeset cdb46031e718 ! .hgtags Changeset: 1a0174612b49 Author:amurillo Date: 2013-02-08 08:16 -0800 URL:

hg: jdk8/tl/langtools: 3 new changesets

2013-02-19 Thread lana . steuck
Changeset: bc24411bcc37 Author:katleman Date: 2013-02-14 11:44 -0800 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/bc24411bcc37 Added tag jdk8-b77 for changeset 89c664151689 ! .hgtags Changeset: a3aa32fe4536 Author:lana Date: 2013-02-14 22:11 -0800 URL: