OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bInput
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/main/java/javax/crypto/
MacSpi.java
99
byte[]
bInput
;
101
bInput
= input.array();
105
engineUpdate(
bInput
, offset + position, limit - position);
108
bInput
= new byte[input.limit() - input.position()];
109
input.get(
bInput
);
110
engineUpdate(
bInput
, 0,
bInput
.length);
CipherSpi.java
344
byte[]
bInput
;
347
bInput
= input.array();
349
bOutput = engineUpdate(
bInput
, offset + position, limit - position);
352
bInput
= new byte[limit - position];
353
input.get(
bInput
);
354
bOutput = engineUpdate(
bInput
, 0, limit - position);
466
byte[]
bInput
;
470
bInput
= input.array();
472
bOutput = engineDoFinal(
bInput
, offset + position, limit - position);
475
bInput
= new byte[limit - position]
[
all
...]
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java
626
ByteBuffer
bInput
= ByteBuffer.allocate(64);
632
bInput
.put(b, 0, 10);
634
c.doFinal(
bInput
, bOutput);
641
c.doFinal(
bInput
, bOutput);
648
bInput
= ByteBuffer.allocate(16);
649
bInput
.put(b, 0, 16);
650
int len = c.doFinal(
bInput
, bOutput);
655
bInput
= ByteBuffer.allocate(64);
657
c.doFinal(bOutput,
bInput
);
664
bInput
.put(b, 0, 16)
[
all
...]
Completed in 6120 milliseconds