jdk/src/share/classes/com/sun/crypto/provider/DESKeyGenerator.java
changeset 15010 ec6b49ce42b1
parent 5506 202f599c92aa
equal deleted inserted replaced
15009:bcb241432928 15010:ec6b49ce42b1
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   100      */
   100      */
   101     protected SecretKey engineGenerateKey() {
   101     protected SecretKey engineGenerateKey() {
   102         DESKey desKey = null;
   102         DESKey desKey = null;
   103 
   103 
   104         if (this.random == null) {
   104         if (this.random == null) {
   105             this.random = SunJCE.RANDOM;
   105             this.random = SunJCE.getRandom();
   106         }
   106         }
   107 
   107 
   108         try {
   108         try {
   109             byte[] key = new byte[DESKeySpec.DES_KEY_LEN];
   109             byte[] key = new byte[DESKeySpec.DES_KEY_LEN];
   110             do {
   110             do {