Searched refs:S_at (Results 1 – 1 of 1) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
D | GCMBlockCipher.java | 51 private byte[] S, S_at, S_atPre; field in GCMBlockCipher 203 this.S_at = new byte[BLOCK_SIZE]; in init() 275 gHASHBlock(S_at, atBlock); in processAADByte() 294 gHASHBlock(S_at, atBlock); in processAADBytes() 305 System.arraycopy(S_at, 0, S_atPre, 0, BLOCK_SIZE); in initCipher() 444 gHASHPartial(S_at, atBlock, 0, atBlockPos); in doFinal() 450 GCMUtil.xor(S_at, S_atPre); in doFinal() 466 GCMUtil.multiply(S_at, H_c); in doFinal() 469 GCMUtil.xor(S, S_at); in doFinal() 525 S_at = new byte[BLOCK_SIZE]; in reset()
|