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