jdk/src/share/classes/com/sun/crypto/provider/BlowfishKeyGenerator.java
changeset 15010 ec6b49ce42b1
parent 5506 202f599c92aa
equal deleted inserted replaced
15009:bcb241432928 15010:ec6b49ce42b1
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2009, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 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
   102      *
   102      *
   103      * @return the new Blowfish key
   103      * @return the new Blowfish key
   104      */
   104      */
   105     protected SecretKey engineGenerateKey() {
   105     protected SecretKey engineGenerateKey() {
   106         if (this.random == null) {
   106         if (this.random == null) {
   107             this.random = SunJCE.RANDOM;
   107             this.random = SunJCE.getRandom();
   108         }
   108         }
   109 
   109 
   110         byte[] keyBytes = new byte[this.keysize];
   110         byte[] keyBytes = new byte[this.keysize];
   111         this.random.nextBytes(keyBytes);
   111         this.random.nextBytes(keyBytes);
   112 
   112