/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/ |
BlockCipherPadding.java | 1 package org.bouncycastle.crypto.paddings;
|
ISO7816d4Padding.java | 1 package org.bouncycastle.crypto.paddings;
|
ZeroBytePadding.java | 1 package org.bouncycastle.crypto.paddings;
|
ISO10126d2Padding.java | 1 package org.bouncycastle.crypto.paddings;
|
PKCS7Padding.java | 1 package org.bouncycastle.crypto.paddings;
|
TBCPadding.java | 1 package org.bouncycastle.crypto.paddings;
|
X923Padding.java | 1 package org.bouncycastle.crypto.paddings;
|
PaddedBufferedBlockCipher.java | 1 package org.bouncycastle.crypto.paddings;
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/ |
CipherPBEThread.java | 30 CipherPBEThread(String name, int[] keys, String[] modes, String[] paddings) { 31 super(name, keys, modes, paddings);
|
CipherRSAThread.java | 26 CipherRSAThread(String name, int[] keys, String[] modes, String[] paddings) { 27 super(name, keys, modes, paddings);
|
CipherWrapThread.java | 26 CipherWrapThread(String name, int[] keys, String[] modes, String[] paddings) { 27 super(name, keys, modes, paddings);
|
CipherSymmetricKeyThread.java | 28 CipherSymmetricKeyThread(String name, int[] keys, String[] modes, String[] paddings) { 29 super(name, keys, modes, paddings);
|
CipherThread.java | 40 CipherThread(String name, int[] keys, String[] modes, String[] paddings) { 44 paddingModeAr = paddings;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/ |
BaseBlockCipher.java | 50 import org.bouncycastle.crypto.paddings.BlockCipherPadding; 51 import org.bouncycastle.crypto.paddings.ISO10126d2Padding; 52 import org.bouncycastle.crypto.paddings.ISO7816d4Padding; 53 import org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher; 54 import org.bouncycastle.crypto.paddings.TBCPadding; 55 import org.bouncycastle.crypto.paddings.X923Padding; 56 import org.bouncycastle.crypto.paddings.ZeroBytePadding;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/ |
CBCBlockCipherMac.java | 7 import org.bouncycastle.crypto.paddings.BlockCipherPadding;
|
/libcore/support/src/test/java/libcore/java/security/ |
StandardNames.java | 122 Set<String> paddings = CIPHER_PADDINGS.get(algorithm); local 123 if (paddings == null) { 124 paddings = new HashSet<String>(); 125 CIPHER_PADDINGS.put(algorithm, paddings); 127 paddings.addAll(Arrays.asList(newPaddings)); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
ExplodedRenderingHelper.java | 95 * or dip, but how many paddings are pushing the screen dimension out. 103 * or dip, but how many paddings are pushing the screen dimension out. 179 * @param paddings the list of the padding for the children. 184 private void combineLinearLayout(Collection<int[]> paddings, int[] resultPadding, 196 for (int[] p : paddings) {
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
YuvImageTest.java | 230 // Generate YuvImage based on the content in bitmap. If paddings > 0, the 231 // strides of YuvImage are calculated by adding paddings to bitmap.getWidth(). 232 private YuvImage generateYuvImage(int format, Bitmap bitmap, int paddings) { 236 int stride = width + paddings;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
DESede.java | 35 import org.bouncycastle.crypto.paddings.ISO7816d4Padding;
|
DES.java | 33 import org.bouncycastle.crypto.paddings.ISO7816d4Padding;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/ |
SuggestionStripLayoutHelper.java | 400 final int paddings = mPadding * mSuggestionsCountInStrip; local 402 final int availableWidth = maxWidth - paddings - dividers;
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/ |
breadcrumbs_controller.js | 162 // Assume style.width == clientWidth (items have no margins or paddings).
|
/prebuilts/sdk/tools/lib/ |
signapk.jar | |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTableCell.cpp | 49 int paddings[2]; member in struct:WebCore::SameSizeAsRenderTableCell [all...] |
/libcore/luni/src/test/java/libcore/javax/crypto/ |
CipherTest.java | 740 Set<String> paddings = StandardNames.getPaddingsForCipher(algorithm); local [all...] |