< prev index next >

test/sun/security/x509/X500Name/NullX500Name.java

Print this page




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4118818
  26  * @summary allow null X.500 Names



  27  */
  28 
  29 import java.util.Arrays;
  30 import sun.security.util.DerOutputStream;
  31 import sun.security.x509.*;
  32 import sun.misc.HexDumpEncoder;
  33 
  34 public class NullX500Name {
  35 
  36     public static void main(String[] argv) throws Exception {
  37         X500Name subject;
  38         String name = "";
  39 
  40         subject = new X500Name(name);
  41         System.out.println("subject:" + subject.toString());
  42 
  43         System.out.println("getCN:" + subject.getCommonName());
  44 
  45         System.out.println("getC:" + subject.getCountry());
  46 




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4118818
  26  * @summary allow null X.500 Names
  27  * @modules java.base/sun.misc
  28  *          java.base/sun.security.util
  29  *          java.base/sun.security.x509
  30  */
  31 
  32 import java.util.Arrays;
  33 import sun.security.util.DerOutputStream;
  34 import sun.security.x509.*;
  35 import sun.misc.HexDumpEncoder;
  36 
  37 public class NullX500Name {
  38 
  39     public static void main(String[] argv) throws Exception {
  40         X500Name subject;
  41         String name = "";
  42 
  43         subject = new X500Name(name);
  44         System.out.println("subject:" + subject.toString());
  45 
  46         System.out.println("getCN:" + subject.getCommonName());
  47 
  48         System.out.println("getC:" + subject.getCountry());
  49 


< prev index next >