com.qcloud.cos.internal.crypto.AesCtr Maven / Gradle / Ivy
package com.qcloud.cos.internal.crypto;
class AesCtr extends ContentCryptoScheme {
@Override String getKeyGeneratorAlgorithm() { return AES_GCM.getKeyGeneratorAlgorithm(); }
@Override String getCipherAlgorithm() { return "AES/CTR/NoPadding"; }
@Override int getKeyLengthInBits() { return AES_GCM.getKeyLengthInBits(); }
@Override int getBlockSizeInBytes() { return AES_GCM.getBlockSizeInBytes(); }
@Override int getIVLengthInBytes() { return 16; }
@Override long getMaxPlaintextSize() { return MAX_CTR_BYTES; }
@Override
byte[] adjustIV(byte[] iv, long byteOffset) {
// currently only support iv of length 12 for AES/GCM.
// Anything else is quite a bit complicated.
if (iv.length != 12)
throw new UnsupportedOperationException();
final int blockSize = getBlockSizeInBytes();
final long blockOffset = byteOffset / blockSize;
if (blockOffset * blockSize != byteOffset) {
throw new IllegalArgumentException(
"Expecting byteOffset to be multiple of 16, but got blockOffset="
+ blockOffset + ", blockSize=" + blockSize
+ ", byteOffset=" + byteOffset);
}
byte[] J0 = computeJ0(iv);
return incrementBlocks(J0, blockOffset);
}
private byte[] computeJ0(byte[] nonce) {
final int blockSize = getBlockSizeInBytes();
byte[] J0 = new byte[blockSize];
System.arraycopy(nonce, 0, J0, 0, nonce.length);
J0[blockSize - 1] = 0x01;
return incrementBlocks(J0, 1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy