HomeSort by relevance Sort by last modified time
    Searched refs:getBlockSize (Results 1 - 25 of 57) sorted by null

1 2 3

  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
BlockCipher.java 33 public int getBlockSize();
BufferedBlockCipher.java 40 buf = new byte[cipher.getBlockSize()];
97 public int getBlockSize()
99 return cipher.getBlockSize();
118 leftOver = total % buf.length - (cipher.getBlockSize() + 2);
144 leftOver = total % buf.length - (cipher.getBlockSize() + 2);
212 int blockSize = getBlockSize();
StreamBlockCipher.java 24 if (cipher.getBlockSize() != 1)
  /frameworks/base/core/java/android/os/
StatFs.java 48 public native int getBlockSize();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/macs/
CBCBlockCipherMac.java 34 this(cipher, (cipher.getBlockSize() * 8) / 2, null);
48 this(cipher, (cipher.getBlockSize() * 8) / 2, padding);
99 mac = new byte[cipher.getBlockSize()];
101 buf = new byte[cipher.getBlockSize()];
147 int blockSize = cipher.getBlockSize();
179 int blockSize = cipher.getBlockSize();
BlockCipherMac.java 29 this(cipher, (cipher.getBlockSize() * 8) / 2);
56 mac = new byte[cipher.getBlockSize()];
58 buf = new byte[cipher.getBlockSize()];
104 int blockSize = cipher.getBlockSize();
136 int blockSize = cipher.getBlockSize();
CFBBlockCipherMac.java 36 this.IV = new byte[cipher.getBlockSize()];
37 this.cfbV = new byte[cipher.getBlockSize()];
38 this.cfbOutV = new byte[cipher.getBlockSize()];
96 public int getBlockSize()
191 this(cipher, 8, (cipher.getBlockSize() * 8) / 2, null);
206 this(cipher, 8, (cipher.getBlockSize() * 8) / 2, padding);
257 mac = new byte[cipher.getBlockSize()];
263 buf = new byte[this.cipher.getBlockSize()];
309 int blockSize = cipher.getBlockSize();
341 int blockSize = cipher.getBlockSize();
    [all...]
ISO9797Alg3Mac.java 42 this(cipher, cipher.getBlockSize() * 8, null);
56 this(cipher, cipher.getBlockSize() * 8, padding);
113 mac = new byte[cipher.getBlockSize()];
115 buf = new byte[cipher.getBlockSize()];
193 int blockSize = cipher.getBlockSize();
225 int blockSize = cipher.getBlockSize();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 35 this.IV = new byte[cipher.getBlockSize()];
36 this.ofbV = new byte[cipher.getBlockSize()];
37 this.ofbOutV = new byte[cipher.getBlockSize()];
114 public int getBlockSize()
SICBlockCipher.java 30 this.blockSize = cipher.getBlockSize();
69 public int getBlockSize()
71 return cipher.getBlockSize();
GOFBBlockCipher.java 38 this.blockSize = cipher.getBlockSize();
45 this.IV = new byte[cipher.getBlockSize()];
46 this.ofbV = new byte[cipher.getBlockSize()];
47 this.ofbOutV = new byte[cipher.getBlockSize()];
128 public int getBlockSize()
CBCBlockCipher.java 31 this.blockSize = cipher.getBlockSize();
104 public int getBlockSize()
106 return cipher.getBlockSize();
PaddedBlockCipher.java 30 buf = new byte[cipher.getBlockSize()];
135 int blockSize = getBlockSize();
178 * 2 * getBlockSize() bytes.
193 int blockSize = cipher.getBlockSize();
CFBBlockCipher.java 36 this.IV = new byte[cipher.getBlockSize()];
37 this.cfbV = new byte[cipher.getBlockSize()];
38 this.cfbOutV = new byte[cipher.getBlockSize()];
116 public int getBlockSize()
CTSBlockCipher.java 32 blockSize = cipher.getBlockSize();
130 int blockSize = getBlockSize();
197 int blockSize = cipher.getBlockSize();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
DESedeWrapEngine.java 151 int noOfBlocks = WKCKS.length / engine.getBlockSize();
152 int extraBytes = WKCKS.length % engine.getBlockSize();
163 int currentBytePos = i * engine.getBlockSize();
191 int currentBytePos = i * engine.getBlockSize();
221 if (inLen % engine.getBlockSize() != 0)
224 + engine.getBlockSize());
253 for (int i = 0; i < (TEMP3.length / engine.getBlockSize()); i++)
255 int currentBytePos = i * engine.getBlockSize();
286 for (int i = 0; i < (WKCKS.length / engine.getBlockSize()); i++)
288 int currentBytePos = i * engine.getBlockSize();
    [all...]
NullEngine.java 41 * @see org.bouncycastle.crypto.BlockCipher#getBlockSize()
43 public int getBlockSize()
DESedeEngine.java 81 public int getBlockSize()
  /cts/tests/tests/os/src/android/os/cts/
StatFsTest.java 43 method = "getBlockSize",
65 int blockSize = stat.getBlockSize();
77 blockSize = stat.getBlockSize();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/paddings/
PaddedBufferedBlockCipher.java 35 buf = new byte[cipher.getBlockSize()];
187 int blockSize = getBlockSize();
230 * 2 * getBlockSize() bytes.
246 int blockSize = cipher.getBlockSize();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JCEBlockCipher.java 104 return baseEngine.getBlockSize();
177 ivLength = baseEngine.getBlockSize();
183 ivLength = baseEngine.getBlockSize();
194 new OFBBlockCipher(baseEngine, 8 * baseEngine.getBlockSize()));
199 ivLength = baseEngine.getBlockSize();
210 new CFBBlockCipher(baseEngine, 8 * baseEngine.getBlockSize()));
218 // ivLength = baseEngine.getBlockSize();
224 // ivLength = baseEngine.getBlockSize();
238 ivLength = baseEngine.getBlockSize();
248 ivLength = baseEngine.getBlockSize();
    [all...]
BrokenJCEBlockCipher.java 96 return cipher.getBlockSize();
156 ivLength = cipher.getUnderlyingCipher().getBlockSize();
162 ivLength = cipher.getUnderlyingCipher().getBlockSize();
173 new OFBBlockCipher(cipher.getUnderlyingCipher(), 8 * cipher.getBlockSize()));
178 ivLength = cipher.getUnderlyingCipher().getBlockSize();
189 new CFBBlockCipher(cipher.getUnderlyingCipher(), 8 * cipher.getBlockSize()));
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 368 (long)sdStats.getBlockSize();
373 (long)internalStats.getBlockSize();
375 (long)internalStats.getBlockSize();
435 (long)sdStats.getBlockSize();
441 (long)internalStats.getBlockSize();
443 (long)internalStats.getBlockSize();
  /frameworks/base/services/java/com/android/server/
DeviceStorageMonitorService.java 129 mDataFileStats.getBlockSize();
151 mSystemFileStats.getBlockSize();
158 mCacheFileStats.getBlockSize();
281 mDataFileStats.getBlockSize())/100L;
DiskStatsService.java 88 long bsize = statfs.getBlockSize();

Completed in 393 milliseconds

1 2 3