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