Skip to content

Commit d6468be

Browse files
committedNov 10, 2022
8293886: The abstract keyword can be removed in AESCipher
Reviewed-by: ascarpino, wetmore
1 parent 54c986e commit d6468be

File tree

1 file changed

+25
-11
lines changed

1 file changed

+25
-11
lines changed
 

‎src/java.base/share/classes/com/sun/crypto/provider/AESCipher.java

+25-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,7 +30,6 @@
3030
import javax.crypto.IllegalBlockSizeException;
3131
import javax.crypto.NoSuchPaddingException;
3232
import javax.crypto.ShortBufferException;
33-
import java.nio.ByteBuffer;
3433
import java.security.AlgorithmParameters;
3534
import java.security.GeneralSecurityException;
3635
import java.security.InvalidAlgorithmParameterException;
@@ -50,21 +49,21 @@
5049
*
5150
* @author Valerie Peng
5251
*
53-
*
5452
* @see AESCrypt
5553
* @see CipherBlockChaining
5654
* @see ElectronicCodeBook
5755
* @see CipherFeedback
5856
* @see OutputFeedback
5957
*/
6058

61-
abstract class AESCipher extends CipherSpi {
59+
class AESCipher extends CipherSpi {
6260
public static final class General extends AESCipher {
6361
public General() {
6462
super(-1);
6563
}
6664
}
67-
abstract static class OidImpl extends AESCipher {
65+
66+
static class OidImpl extends AESCipher {
6867
protected OidImpl(int keySize, String mode, String padding) {
6968
super(keySize);
7069
try {
@@ -76,6 +75,7 @@ protected OidImpl(int keySize, String mode, String padding) {
7675
}
7776
}
7877
}
78+
7979
public static final class AES128_ECB_NoPadding extends OidImpl {
8080
public AES128_ECB_NoPadding() {
8181
super(16, "ECB", "NOPADDING");
@@ -138,7 +138,7 @@ public AES256_CFB_NoPadding() {
138138
}
139139

140140
// utility method used by AESCipher and AESWrapCipher
141-
static final void checkKeySize(Key key, int fixedKeySize)
141+
static void checkKeySize(Key key, int fixedKeySize)
142142
throws InvalidKeyException {
143143
if (fixedKeySize != -1) {
144144
if (key == null) {
@@ -160,7 +160,7 @@ static final void checkKeySize(Key key, int fixedKeySize)
160160
/*
161161
* internal CipherCore object which does the real work.
162162
*/
163-
private CipherCore core = null;
163+
private final CipherCore core;
164164

165165
/*
166166
* needed to support AES oids which associates a fixed key size
@@ -186,6 +186,7 @@ protected AESCipher(int keySize) {
186186
* @exception NoSuchAlgorithmException if the requested cipher mode does
187187
* not exist
188188
*/
189+
@Override
189190
protected void engineSetMode(String mode)
190191
throws NoSuchAlgorithmException {
191192
core.setMode(mode);
@@ -199,6 +200,7 @@ protected void engineSetMode(String mode)
199200
* @exception NoSuchPaddingException if the requested padding mechanism
200201
* does not exist
201202
*/
203+
@Override
202204
protected void engineSetPadding(String paddingScheme)
203205
throws NoSuchPaddingException {
204206
core.setPadding(paddingScheme);
@@ -210,6 +212,7 @@ protected void engineSetPadding(String paddingScheme)
210212
* @return the block size (in bytes), or 0 if the underlying algorithm is
211213
* not a block cipher
212214
*/
215+
@Override
213216
protected int engineGetBlockSize() {
214217
return AESConstants.AES_BLOCK_SIZE;
215218
}
@@ -231,6 +234,7 @@ protected int engineGetBlockSize() {
231234
*
232235
* @return the required output buffer size (in bytes)
233236
*/
237+
@Override
234238
protected int engineGetOutputSize(int inputLen) {
235239
return core.getOutputSize(inputLen);
236240
}
@@ -247,6 +251,7 @@ protected int engineGetOutputSize(int inputLen) {
247251
* underlying algorithm does not use an IV, or if the IV has not yet
248252
* been set.
249253
*/
254+
@Override
250255
protected byte[] engineGetIV() {
251256
return core.getIV();
252257
}
@@ -264,6 +269,7 @@ protected byte[] engineGetIV() {
264269
* @return the parameters used with this cipher, or null if this cipher
265270
* does not use any parameters.
266271
*/
272+
@Override
267273
protected AlgorithmParameters engineGetParameters() {
268274
return core.getParameters("AES");
269275
}
@@ -298,6 +304,7 @@ protected AlgorithmParameters engineGetParameters() {
298304
* @exception InvalidKeyException if the given key is inappropriate for
299305
* initializing this cipher
300306
*/
307+
@Override
301308
protected void engineInit(int opmode, Key key, SecureRandom random)
302309
throws InvalidKeyException {
303310
checkKeySize(key, fixedKeySize);
@@ -328,6 +335,7 @@ protected void engineInit(int opmode, Key key, SecureRandom random)
328335
* @exception InvalidAlgorithmParameterException if the given algorithm
329336
* parameters are inappropriate for this cipher
330337
*/
338+
@Override
331339
protected void engineInit(int opmode, Key key,
332340
AlgorithmParameterSpec params,
333341
SecureRandom random)
@@ -336,6 +344,7 @@ protected void engineInit(int opmode, Key key,
336344
core.init(opmode, key, params, random);
337345
}
338346

347+
@Override
339348
protected void engineInit(int opmode, Key key,
340349
AlgorithmParameters params,
341350
SecureRandom random)
@@ -363,6 +372,7 @@ protected void engineInit(int opmode, Key key,
363372
* @exception IllegalStateException if this cipher is in a wrong state
364373
* (e.g., has not been initialized)
365374
*/
375+
@Override
366376
protected byte[] engineUpdate(byte[] input, int inputOffset,
367377
int inputLen) {
368378
return core.update(input, inputOffset, inputLen);
@@ -391,6 +401,7 @@ protected byte[] engineUpdate(byte[] input, int inputOffset,
391401
* @exception ShortBufferException if the given output buffer is too small
392402
* to hold the result
393403
*/
404+
@Override
394405
protected int engineUpdate(byte[] input, int inputOffset, int inputLen,
395406
byte[] output, int outputOffset)
396407
throws ShortBufferException {
@@ -429,10 +440,10 @@ protected int engineUpdate(byte[] input, int inputOffset, int inputLen,
429440
* and (un)padding has been requested, but the decrypted data is not
430441
* bounded by the appropriate padding bytes
431442
*/
443+
@Override
432444
protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
433445
throws IllegalBlockSizeException, BadPaddingException {
434-
byte[] out = core.doFinal(input, inputOffset, inputLen);
435-
return out;
446+
return core.doFinal(input, inputOffset, inputLen);
436447
}
437448

438449
/**
@@ -471,13 +482,13 @@ protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
471482
* and (un)padding has been requested, but the decrypted data is not
472483
* bounded by the appropriate padding bytes
473484
*/
485+
@Override
474486
protected int engineDoFinal(byte[] input, int inputOffset, int inputLen,
475487
byte[] output, int outputOffset)
476488
throws IllegalBlockSizeException, ShortBufferException,
477489
BadPaddingException {
478-
int outLen = core.doFinal(input, inputOffset, inputLen, output,
490+
return core.doFinal(input, inputOffset, inputLen, output,
479491
outputOffset);
480-
return outLen;
481492
}
482493

483494
/**
@@ -489,6 +500,7 @@ protected int engineDoFinal(byte[] input, int inputOffset, int inputLen,
489500
*
490501
* @exception InvalidKeyException if <code>key</code> is invalid.
491502
*/
503+
@Override
492504
protected int engineGetKeySize(Key key) throws InvalidKeyException {
493505
byte[] encoded = key.getEncoded();
494506
Arrays.fill(encoded, (byte)0);
@@ -515,6 +527,7 @@ protected int engineGetKeySize(Key key) throws InvalidKeyException {
515527
* wrap the key with this cipher (e.g., a hardware protected key is
516528
* being passed to a software only cipher).
517529
*/
530+
@Override
518531
protected byte[] engineWrap(Key key)
519532
throws IllegalBlockSizeException, InvalidKeyException {
520533
return core.wrap(key);
@@ -541,6 +554,7 @@ protected byte[] engineWrap(Key key)
541554
* represent a wrapped key of type <code>wrappedKeyType</code> for
542555
* the <code>wrappedKeyAlgorithm</code>.
543556
*/
557+
@Override
544558
protected Key engineUnwrap(byte[] wrappedKey,
545559
String wrappedKeyAlgorithm,
546560
int wrappedKeyType)

0 commit comments

Comments
 (0)
Please sign in to comment.