Performs tests to ensure that the pseudo random number generator (PRNG) is
functioning correctly.
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
A mask representing all of the FIPS tests. This value can be used as a mask
with the results of the PRNG tests to determine if all of the FIPS tests passed.
For example:
if ( ( result & ALL_FIPS_TESTS_PASSED ) == ALL_FIPS_TESTS_PASSED ) {
// one or more of the tests failed
}
Since:
JDE 3.6.0
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
ALL_TESTS_PASSED
public static final int ALL_TESTS_PASSED
A mask representing all of the tests. This value can be used as a mask
with the results of the PRNG tests to determine if all of the tests passed.
For example:
if ( ( result & ALL_TESTS_PASSED ) == ALL_TESTS_PASSED ) {
// one or more of the tests failed
}
Since:
JDE 3.6.0
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
LONG_RUNS_TEST_PASSED
public static final int LONG_RUNS_TEST_PASSED
A mask representing the long runs test. This value can be used as a mask
with the results of the PRNG tests to determine if the long runs test passed.
For example:
if ( ( result & LONG_RUNS_TEST_PASSED ) == 0 ) {
// long runs test failed
}
Since:
JDE 3.6.0
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
MONO_BIT_TEST_PASSED
public static final int MONO_BIT_TEST_PASSED
A mask representing the mono bit test. This value can be used as a mask
with the results of the PRNG tests to determine if the mono bit test passed.
For example:
if ( ( result & MONO_BIT_TEST_PASSED ) == 0 ) {
// mono bit test failed
}
Since:
JDE 3.6.0
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
POKER_TEST_PASSED
public static final int POKER_TEST_PASSED
A mask representing the poker test. This value can be used as a mask
with the results of the PRNG tests to determine if the poker test passed.
For example:
if ( ( result & POKER_TEST_PASSED ) == 0 ) {
// poker test failed
}
Since:
JDE 3.6.0
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
RUNS_TEST_PASSED
public static final int RUNS_TEST_PASSED
A mask representing the runs test. This value can be used as a mask
with the results of the PRNG tests to determine if the runs test passed.
For example:
if ( ( result & RUNS_TEST_PASSED ) == 0 ) {
// runs test failed
}
Since:
JDE 3.6.0
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
Tests the pseudo-random source given the PseudoRandomSource object.
Parameters:
source - The pseudo-random source of the.
Returns:
A boolean that determines if the source is suitably random.
Throws:
CryptoTokenException - Thrown if an error occurs with the crypto
token or the crypto token is invalid.
Since:
JDE 3.6.0
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
testRandomSource
public static int testRandomSource()
Tests RandomSource for randomness.
Returns:
ALL_TESTS_PASSED if all tests passed.
Since:
JDE 3.6.0
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
Copyright 1999-2007 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved. Copyright 1993-2003 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. Copyright 2002-2003 Nokia Corporation All Rights Reserved. Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.