mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8242366: Fix JavaDoc warnings
Reviewed-by: dfuchs, mullan, prappo, weijun
This commit is contained in:
parent
941bb3bcb8
commit
cc05419e1a
23 changed files with 44 additions and 56 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -202,7 +202,7 @@ abstract class AESCipher extends CipherSpi {
|
|||
/**
|
||||
* Sets the padding mechanism of this cipher.
|
||||
*
|
||||
* @param padding the padding mechanism
|
||||
* @param paddingScheme the padding mechanism
|
||||
*
|
||||
* @exception NoSuchPaddingException if the requested padding mechanism
|
||||
* does not exist
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2004, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2004, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -313,10 +313,10 @@ abstract class AESWrapCipher extends CipherSpi {
|
|||
* current Cipher.engineInit(...) implementation,
|
||||
* IllegalStateException will always be thrown upon invocation.
|
||||
*
|
||||
* @param in the input buffer
|
||||
* @param inOffset the offset in <code>in</code> where the input
|
||||
* @param input the input buffer
|
||||
* @param inputOffset the offset in <code>in</code> where the input
|
||||
* starts
|
||||
* @param inLen the input length.
|
||||
* @param inputLen the input length.
|
||||
*
|
||||
* @return n/a.
|
||||
*
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1998, 2007, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1998, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -130,7 +130,6 @@ final class BlowfishCrypt extends SymmetricCipher
|
|||
*
|
||||
* @param plain the buffer with the input data to be encrypted
|
||||
* @param plainOffset the offset in <code>plain</code>
|
||||
* @param plainLen the length of the input data
|
||||
* @param cipher the buffer for the result
|
||||
* @param cipherOffset the offset in <code>cipher</code>
|
||||
*/
|
||||
|
@ -154,7 +153,6 @@ final class BlowfishCrypt extends SymmetricCipher
|
|||
*
|
||||
* @param cipher the buffer with the input data to be decrypted
|
||||
* @param cipherOffset the offset in <code>cipherOffset</code>
|
||||
* @param cipherLen the length of the input data
|
||||
* @param plain the buffer for the result
|
||||
* @param plainOffset the offset in <code>plain</code>
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -552,12 +552,8 @@ class DESCrypt extends SymmetricCipher implements DESConstants {
|
|||
*
|
||||
* @param plain the buffer with the input data to be encrypted
|
||||
* @param plainOffset the offset in <code>plain</code>
|
||||
* @param plainLen the length of the input data
|
||||
* @param cipher the buffer for the result
|
||||
* @param cipherOffset the offset in <code>cipher</code>
|
||||
*
|
||||
* @exception IllegalBlockSizeException if the input length is different
|
||||
* from the cipher's block size
|
||||
*/
|
||||
void encryptBlock(byte[] plain, int plainOffset,
|
||||
byte[] cipher, int cipherOffset)
|
||||
|
@ -579,12 +575,8 @@ class DESCrypt extends SymmetricCipher implements DESConstants {
|
|||
*
|
||||
* @param cipher the buffer with the input data to be decrypted
|
||||
* @param cipherOffset the offset in <code>cipherOffset</code>
|
||||
* @param cipherLen the length of the input data
|
||||
* @param plain the buffer for the result
|
||||
* @param plainOffset the offset in <code>plain</code>
|
||||
*
|
||||
* @exception IllegalBlockSizeException if the input length is different
|
||||
* from the cipher's block size
|
||||
*/
|
||||
void decryptBlock(byte[] cipher, int cipherOffset,
|
||||
byte[] plain, int plainOffset)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -262,8 +262,6 @@ final class GaloisCounterMode extends FeedbackCipher {
|
|||
* @param algorithm the algorithm name
|
||||
* @param key the key
|
||||
* @param iv the iv
|
||||
* @param tagLenBytes the length of tag in bytes
|
||||
*
|
||||
* @exception InvalidKeyException if the given key is inappropriate for
|
||||
* initializing this cipher
|
||||
*/
|
||||
|
@ -279,8 +277,8 @@ final class GaloisCounterMode extends FeedbackCipher {
|
|||
*
|
||||
* @param decrypting flag indicating encryption or decryption
|
||||
* @param algorithm the algorithm name
|
||||
* @param key the key
|
||||
* @param iv the iv
|
||||
* @param keyValue the key
|
||||
* @param ivValue the iv
|
||||
* @param tagLenBytes the length of tag in bytes
|
||||
*
|
||||
* @exception InvalidKeyException if the given key is inappropriate for
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -225,7 +225,7 @@ abstract class PBEKeyFactory extends SecretKeyFactorySpi {
|
|||
*
|
||||
* @param key the key
|
||||
*
|
||||
* @param keySpec the requested format in which the key material shall be
|
||||
* @param keySpecCl the requested format in which the key material shall be
|
||||
* returned
|
||||
*
|
||||
* @return the underlying key specification (key material) in the
|
||||
|
|
|
@ -92,7 +92,7 @@ final class PBES1Core {
|
|||
* Sets the padding mechanism of this cipher. This algorithm only uses
|
||||
* PKCS #5 padding.
|
||||
*
|
||||
* @param padding the padding mechanism
|
||||
* @param paddingScheme the padding mechanism
|
||||
*
|
||||
* @exception NoSuchPaddingException if the requested padding mechanism
|
||||
* is invalid
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -75,7 +75,7 @@ abstract class PBKDF2Core extends SecretKeyFactorySpi {
|
|||
*
|
||||
* @param key the key
|
||||
*
|
||||
* @param keySpec the requested format in which the key material shall be
|
||||
* @param keySpecCl the requested format in which the key material shall be
|
||||
* returned
|
||||
*
|
||||
* @return the underlying key specification (key material) in the
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -49,7 +49,7 @@ interface Padding {
|
|||
* interface.
|
||||
*
|
||||
* @param in the input buffer with the data to pad
|
||||
* @param the offset in <code>in</code> where the padding bytes
|
||||
* @param off the offset in <code>in</code> where the padding bytes
|
||||
* are appended
|
||||
* @param len the number of padding bytes to add
|
||||
*
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -29,7 +29,7 @@ import java.security.InvalidKeyException;
|
|||
|
||||
/**
|
||||
* This abstract class represents the core of all block ciphers. It allows to
|
||||
* intialize the cipher and encrypt/decrypt single blocks. Larger quantities
|
||||
* initialize the cipher and encrypt/decrypt single blocks. Larger quantities
|
||||
* are handled by modes, which are subclasses of FeedbackCipher.
|
||||
*
|
||||
* @author Gigi Ankeny
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue