出于测试目的,我需要使用SecureRandom
自定义算法。这怎么可能?
我想我必须继承SecureRandom
并提供一个SecureRandomSpi
自定义实现:
167: /**
168: A constructor for SecureRandom. It constructs a new
169: SecureRandom using the specified SecureRandomSpi from
170: the specified security provier.
171:
172: @param secureRandomSpi A SecureRandomSpi class
173: @param provider A Provider class
174: */
175: protected SecureRandom(SecureRandomSpi secureRandomSpi, Provider provider)
176: {
177: this(secureRandomSpi, provider, "unknown");
178: }
有没有简单的方法或任何人都可以提供广告示例?