HomeSort by relevance Sort by last modified time
    Searched full:strength (Results 1 - 25 of 1068) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
KeyGenerationParameters.java 11 private int strength; field in class:KeyGenerationParameters
15 * and a strength (in bits).
18 * @param strength the size, in bits, of the keys we want to produce.
22 int strength)
25 this.strength = strength;
40 * return the bit strength for keys produced by this generator,
42 * @return the strength of the keys this generator produces (in bits).
46 return strength;
CipherKeyGenerator.java 11 protected int strength; field in class:CipherKeyGenerator
22 this.strength = (param.getStrength() + 7) / 8;
32 byte[] key = new byte[strength];
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
AlgorithmParameterGeneratorSpi.java 21 // Android-changed: Change default strength to 1024
22 // In 1.57, the default strength was changed to 2048. We keep it at 1024 for app
25 protected int strength = 1024; field in class:AlgorithmParameterGeneratorSpi
29 int strength,
32 if (strength < 512 || strength > 3072)
34 throw new InvalidParameterException("strength must be from 512 - 3072");
37 if (strength <= 1024 && strength % 64 != 0)
39 throw new InvalidParameterException("strength must be a multiple of 64 below 1024 bits.")
    [all...]
KeyPairGeneratorSpi.java 32 // Android-changed: Change default strength to 1024
33 // In 1.57, the default strength was changed to 2048. We keep it at 1024 for app
36 int strength = 1024; field in class:KeyPairGeneratorSpi
47 int strength,
50 if (strength < 512 || strength > 4096 || ((strength < 1024) && strength % 64 != 0) || (strength >= 1024 && strength % 1024 != 0)
    [all...]
  /system/chre/apps/chqts/src/general_test/
cell_info_cdma.cc 46 const struct chreWwanSignalStrengthCdma strength) {
50 if ((strength.dbm < 0) || (strength.dbm > 160)) {
51 sendFatalFailureInt32("Invalid CDMA/CDMA dbm: %d", strength.dbm);
52 } else if ((strength.ecio < 0) || (strength.ecio > 1600)) {
53 sendFatalFailureInt32("Invalid CDMA/CDMA ecio: %d", strength.ecio);
62 const struct chreWwanSignalStrengthEvdo strength) {
66 if ((strength.dbm < 0) || (strength.dbm > 160))
    [all...]
cell_info_lte.cc 48 const struct chreWwanSignalStrengthLte strength) {
52 if (!isBoundedInt32(strength.signalStrength, 0, 31, 99)) {
53 sendFatalFailureInt32("Invalid LTE Signal Strength: %d",
54 strength.signalStrength);
55 } else if (!isBoundedInt32(strength.rsrp, 44, 140, max)) {
57 strength.rsrp);
58 } else if (!isBoundedInt32(strength.rsrq, 3, 20, max)) {
61 strength.rsrq);
62 } else if (!isBoundedInt32(strength.rssnr, -200, 300, max)) {
65 strength.rssnr)
    [all...]
cell_info_wcdma.cc 49 const struct chreWwanSignalStrengthWcdma strength) {
52 if (!isBoundedInt32(strength.signalStrength, 0, 31, 99)) {
53 sendFatalFailureInt32("Invalid WCDMA Signal Strength: %d",
54 strength.signalStrength);
55 } else if (!isBoundedInt32(strength.bitErrorRate, 0, 7, 99)) {
57 strength.bitErrorRate);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DESKeyGenerator.java 11 * initialise the key generator - if strength is set to zero
13 * strength can be 64 or 56 bits (if you don't count the parity bits).
22 if (strength == 0 || strength == (56 / 8))
24 strength = DESParameters.DES_KEY_LENGTH;
26 else if (strength != DESParameters.DES_KEY_LENGTH)
DESedeKeyGenerator.java 12 * initialise the key generator - if strength is set to zero
14 * strength can be 128 or 192 (or 112 or 168 if you don't count
24 this.strength = (param.getStrength() + 7) / 8;
26 if (strength == 0 || strength == (168 / 8))
28 strength = DESedeParameters.DES_EDE_KEY_LENGTH;
30 else if (strength == (112 / 8))
32 strength = 2 * DESedeParameters.DES_KEY_LENGTH;
34 else if (strength != DESedeParameters.DES_EDE_KEY_LENGTH
35 && strength != (2 * DESedeParameters.DES_KEY_LENGTH)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RSAKeyGenerationParameters.java 17 int strength,
20 super(random, strength);
22 if (strength < 12)
24 throw new IllegalArgumentException("key strength too small");
  /hardware/interfaces/audio/effect/2.0/
IBassBoostEffect.hal 24 * Returns whether setting bass boost strength is supported.
34 * Sets bass boost strength.
36 * @param strength strength of the effect. The valid range for strength
37 * strength is [0, 1000], where 0 per mille designates the
42 setStrength(uint16_t strength) generates (Result retval);
45 * Gets virtualization strength.
47 getStrength() generates (Result retval, uint16_t strength);
IVirtualizerEffect.hal 24 * Returns whether setting virtualization strength is supported.
34 * Sets virtualization strength.
36 * @param strength strength of the effect. The valid range for strength
37 * strength is [0, 1000], where 0 per mille designates the
42 setStrength(uint16_t strength) generates (Result retval);
45 * Gets virtualization strength.
47 getStrength() generates (Result retval, uint16_t strength);
  /hardware/interfaces/audio/effect/4.0/
IBassBoostEffect.hal 24 * Returns whether setting bass boost strength is supported.
34 * Sets bass boost strength.
36 * @param strength strength of the effect. The valid range for strength
37 * strength is [0, 1000], where 0 per mille designates the
42 setStrength(uint16_t strength) generates (Result retval);
45 * Gets virtualization strength.
47 getStrength() generates (Result retval, uint16_t strength);
IVirtualizerEffect.hal 24 * Returns whether setting virtualization strength is supported.
34 * Sets virtualization strength.
36 * @param strength strength of the effect. The valid range for strength
37 * strength is [0, 1000], where 0 per mille designates the
42 setStrength(uint16_t strength) generates (Result retval);
45 * Gets virtualization strength.
47 getStrength() generates (Result retval, uint16_t strength);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
AlgorithmParameterGeneratorSpi.java 20 protected int strength = 2048; field in class:AlgorithmParameterGeneratorSpi
25 int strength,
28 this.strength = strength;
43 this.strength = spec.getPrimeSize();
52 int certainty = PrimeCertaintyCalculator.getDefaultCertainty(strength);
56 pGen.init(strength, certainty, random);
60 pGen.init(strength, certainty, new SecureRandom());
KeyPairGeneratorSpi.java 30 int strength = 2048; field in class:KeyPairGeneratorSpi
40 int strength,
43 this.strength = strength;
69 Integer paramStrength = Integers.valueOf(strength);
77 DHParameterSpec dhParams = BouncyCastleProvider.CONFIGURATION.getDHDefaultParameters(strength);
98 pGen.init(strength, PrimeCertaintyCalculator.getDefaultCertainty(strength), random);
  /external/icu/icu4c/source/test/testdata/
ssearch.xml 14 strength (PRIMARY | SECONDARY | TERTIARY | QUATERNARY | IDENTICAL) "TERTIARY"
46 <test-case id="test04" strength="PRIMARY" >
51 <test-case id="test05" strength="PRIMARY" >
56 <test-case id="test05.5" strength="PRIMARY" >
63 <test-case id="test06" strength="PRIMARY" >
68 <test-case id="test07" strength="SECONDARY" >
73 <test-case id="test08" strength="PRIMARY" >
80 <test-case id="test09" strength="PRIMARY">
88 <test-case id="test10" strength="TERTIARY">
93 <test-case id="test11" strength="PRIMARY" locale="de_DE@collation=phonebook"
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseAlgorithmParameterGenerator.java 22 protected int strength = 1024; field in class:BaseAlgorithmParameterGenerator
35 int strength,
38 this.strength = strength;
  /prebuilts/jdk/jdk9/darwin-x86/conf/security/policy/unlimited/
default_local.policy 1 // Country-specific policy file for countries with no limits on crypto strength.
  /prebuilts/jdk/jdk9/linux-x86/conf/security/policy/unlimited/
default_local.policy 1 // Country-specific policy file for countries with no limits on crypto strength.
  /external/icu/icu4c/source/test/cintltst/
encoll.h 34 /* performs test with strength PRIMARY */
37 /* perform test with strength SECONDARY */
40 /* perform test with strength TERTIARY */
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CacheValue.java 20 * depending on the current "strength" when {@code getInstance()} was called.
38 * "Strength" of holding a value in CacheValue instances.
39 * The default strength is {@code SOFT}.
41 public enum Strength {
53 private static volatile Strength strength = Strength.SOFT; field in class:CacheValue
59 * Changes the "strength" of value references for subsequent {@code getInstance()} calls.
61 public static void setStrength(Strength strength) { CacheValue.strength = strength;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CacheValue.java 19 * depending on the current "strength" when {@code getInstance()} was called.
36 * "Strength" of holding a value in CacheValue instances.
37 * The default strength is {@code SOFT}.
39 public enum Strength {
51 private static volatile Strength strength = Strength.SOFT; field in class:CacheValue
57 * Changes the "strength" of value references for subsequent {@code getInstance()} calls.
59 public static void setStrength(Strength strength) { CacheValue.strength = strength;
    [all...]
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_SdcaShrinkL1.pbtxt 19 Symmetric l1 regularization strength.
25 Symmetric l2 regularization strength. Should be a positive float.
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
CollatorICU.java 101 int strength; local
105 strength = java.text.Collator.IDENTICAL;
108 strength = java.text.Collator.PRIMARY;
111 strength = java.text.Collator.SECONDARY;
114 strength = java.text.Collator.TERTIARY;
119 strength = java.text.Collator.TERTIARY;
122 throw new IllegalStateException("Unknown strength is used by the ICU Collator.");
124 return strength;
143 // This option is interpreted as IDENTICAL strength.
167 throw new IllegalArgumentException("Invalid strength.")
    [all...]

Completed in 300 milliseconds

1 2 3 4 5 6 7 8 91011>>