jdk/src/share/classes/com/sun/crypto/provider/DESedeKeyGenerator.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
   103      *
   103      *
   104      * @return the new Triple DES key
   104      * @return the new Triple DES key
   105      */
   105      */
   106     protected SecretKey engineGenerateKey() {
   106     protected SecretKey engineGenerateKey() {
   107         if (this.random == null) {
   107         if (this.random == null) {
   108             this.random = SunJCE.RANDOM;
   108             this.random = SunJCE.getRandom();
   109         }
   109         }
   110 
   110 
   111         byte[] rawkey = new byte[DESedeKeySpec.DES_EDE_KEY_LEN];
   111         byte[] rawkey = new byte[DESedeKeySpec.DES_EDE_KEY_LEN];
   112 
   112 
   113         if (keysize == 168) {
   113         if (keysize == 168) {