Esempio n. 1
0
 protected byte[] engineDoFinal() {
   return core.doFinal();
 }
Esempio n. 2
0
 protected void engineReset() {
   core.reset();
 }
Esempio n. 3
0
 protected void engineUpdate(ByteBuffer input) {
   core.update(input);
 }
Esempio n. 4
0
 protected void engineUpdate(byte input[], int offset, int len) {
   core.update(input, offset, len);
 }
Esempio n. 5
0
 protected void engineUpdate(byte input) {
   core.update(input);
 }
Esempio n. 6
0
 protected void engineInit(Key key, AlgorithmParameterSpec params)
     throws InvalidKeyException, InvalidAlgorithmParameterException {
   core.init(key, params);
 }
Esempio n. 7
0
 protected int engineGetMacLength() {
   return core.getDigestLength();
 }