HomeSort by relevance Sort by last modified time
    Searched defs:tLen (Results 1 - 25 of 25) sorted by null

  /libcore/ojluni/src/main/java/javax/crypto/spec/
GCMParameterSpec.java 39 * <li>{@code tLen}: length (in bits) of authentication tag T</li>
54 * The GCM specification states that {@code tLen} may only have the
70 private int tLen;
76 * @param tLen the authentication tag length (in bits)
80 * @throws IllegalArgumentException if {@code tLen} is negative,
83 public GCMParameterSpec(int tLen, byte[] src) {
88 init(tLen, src, 0, src.length);
96 * @param tLen the authentication tag length (in bits)
102 * @throws IllegalArgumentException if {@code tLen} is negative,
107 public GCMParameterSpec(int tLen, byte[] src, int offset, int len)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
GcmSpecUtil.java 56 Method tLen = gcmSpecClass.getDeclaredMethod("getTLen", new Class[0]);
59 return new GCMParameters((byte[])iv.invoke(paramSpec, new Object[0]), ((Integer)tLen.invoke(paramSpec, new Object[0])).intValue() / 8);
  /external/conscrypt/common/src/main/java/org/conscrypt/
GCMParameters.java 37 // The default value (in bits) for TLEN in the GCM ASN.1 module
41 private int tLen;
48 GCMParameters(int tLen, byte[] iv) {
49 this.tLen = tLen;
57 return tLen;
74 this.tLen = params.tLen;
95 this.tLen = newTlen;
115 return aClass.cast(Platform.toGCMParameterSpec(tLen, iv))
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseMac.java 219 Method tLen = gcmSpecClass.getDeclaredMethod("getTLen", new Class[0]);
222 param = new AEADParameters(keyParam, ((Integer)tLen.invoke(params, new Object[0])).intValue(), (byte[])iv.invoke(params, new Object[0]));
BaseBlockCipher.java 841 Method tLen = gcmSpecClass.getDeclaredMethod("getTLen", new Class[0]);
853 param = aeadParams = new AEADParameters(keyParam, ((Integer)tLen.invoke(params, new Object[0])).intValue(), (byte[])iv.invoke(params, new Object[0]));
    [all...]
  /external/icu/icu4c/source/test/intltest/
tscoll.cpp 94 IntlTestCollator::compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status) {
106 uiter_setString(&tIter, target, tLen);
148 int32_t sLen = source.length(), tLen = target.length();
156 uiter_setString(&tIter, trg, tLen);
170 u_strToUTF8(utf8Target, 256, &utf8TargetLen, trg, tLen, &status);
178 uiter_setString(&tIter, target, tLen);*/
213 partialSKResult = compareUsingPartials(myCollation, src, sLen, trg, tLen, partialSizes[i], status);
221 partialNormalizedSKResult = compareUsingPartials(myCollation, src, sLen, trg, tLen, partialSizes[i], status);
  /external/conscrypt/android/src/main/java/org/conscrypt/
Platform.java 688 int tLen;
693 tLen = (int) getTLenMethod.invoke(params);
696 return new GCMParameters(tLen, iv);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
callcoll.c 232 static UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode *status) {
249 uiter_setString(&tIter, target, tLen);
277 uint32_t tLen = u_strlen(target);
285 compareResult = ucol_strcoll(myCollation, source, sLen, target, tLen);
297 uiter_setString(&tIter, target, tLen);
312 u_strToUTF8(utf8Target, 256, &utf8TargetLen, target, tLen, &status);
377 partialSKResult = compareUsingPartials(myCollation, source, sLen, target, tLen, partialSizes[i], &status);
387 partialNormalizedSKResult = compareUsingPartials(myCollation, source, sLen, target, tLen, partialSizes[i], &status);
399 sortklen2=ucol_getSortKey(myCollation, target, tLen, NULL, 0);
412 ucol_getSortKey(myCollation, target, tLen, sortKey2, sortklen2+1)
    [all...]
usrchtst.c     [all...]
cmsccoll.c 49 const UChar *target, const int tLen);
1694 uint32_t tlen = u_unescape(testString, test, 32); local
    [all...]
  /external/icu/icu4c/source/tools/genrb/
wrtxml.cpp 811 int32_t tLen = ( outDir == NULL) ? 0 :(int32_t)uprv_strlen(outDir);
812 char* fn = (char*) uprv_malloc(sizeof(char) * (tLen+1024 +
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/
jce.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/
jce.jar 
  /prebuilts/tools/common/m2/repository/com/cedarsoftware/java-util/1.24.0/
java-util-1.24.0.jar 
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
sunjce_provider.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
sunjce_provider.jar 
  /prebuilts/misc/common/nimbus-jose-jwt/
nimbus-jose-jwt-4.33.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-r1.jar 
android-all-8.1.0-robolectric-r4458339.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/current/
core.jar 

Completed in 326 milliseconds