Skip to content

Commit

Permalink
Align Code with Javadoc
Browse files Browse the repository at this point in the history
Fixes: gh-6734
  • Loading branch information
jzheaux committed Apr 2, 2019
1 parent 9520e3a commit 9c1eac7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -37,16 +37,15 @@ public class SecureRandomFactoryBean implements FactoryBean<SecureRandom> {
public SecureRandom getObject() throws Exception {
SecureRandom rnd = SecureRandom.getInstance(algorithm);

// Request the next bytes, thus eagerly incurring the expense of default
// seeding and to prevent the see from replacing the entire state
rnd.nextBytes(new byte[1]);

if (seed != null) {
// Seed specified, so use it
byte[] seedBytes = FileCopyUtils.copyToByteArray(seed.getInputStream());
rnd.setSeed(seedBytes);
}
else {
// Request the next bytes, thus eagerly incurring the expense of default
// seeding
rnd.nextBytes(new byte[1]);
}

return rnd;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -15,14 +15,14 @@
*/
package org.springframework.security.core.token;

import static org.assertj.core.api.Assertions.*;

import java.security.SecureRandom;

import org.junit.Test;

import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.security.core.token.SecureRandomFactoryBean;

import static org.assertj.core.api.Assertions.assertThat;

/**
* Tests {@link SecureRandomFactoryBean}.
Expand Down Expand Up @@ -59,10 +59,11 @@ public void testCreatesUsingSeed() throws Exception {
"org/springframework/security/core/token/SecureRandomFactoryBeanTests.class");
assertThat(resource).isNotNull();
factory.setSeed(resource);
Object result = factory.getObject();
assertThat(result).isInstanceOf(SecureRandom.class);
int rnd = ((SecureRandom) result).nextInt();
assertThat(rnd).isNotEqualTo(0);
SecureRandom first = factory.getObject();
SecureRandom second = factory.getObject();
assertThat(first.nextInt())
.isNotEqualTo(0)
.isNotEqualTo(second.nextInt());
}

}

0 comments on commit 9c1eac7

Please sign in to comment.