From 8f598fe4eb1a0568b46d82b061656046da7dd3db Mon Sep 17 00:00:00 2001 From: Redkale <22250530@qq.com> Date: Thu, 17 May 2018 17:58:23 +0800 Subject: [PATCH] --- src/org/redkale/util/Utility.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/redkale/util/Utility.java b/src/org/redkale/util/Utility.java index 432bde66e..fd7adc755 100644 --- a/src/org/redkale/util/Utility.java +++ b/src/org/redkale/util/Utility.java @@ -149,7 +149,7 @@ public final class Utility { } catch (Exception e) { random = new SecureRandom(); } - byte[] bs = new byte[32]; + byte[] bs = new byte[16]; random.nextBytes(bs); random.setSeed(bs); return random;