src/java.base/share/classes/javax/crypto/CipherOutputStream.java
changeset 51759 ac6e9a2ebc04
parent 49781 21fa027e2e62
equal deleted inserted replaced
51758:6c956c883137 51759:ac6e9a2ebc04
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    51  * if the application requires explicit notification when authentication
    51  * if the application requires explicit notification when authentication
    52  * fails. Such an application can use the Cipher API directly as an
    52  * fails. Such an application can use the Cipher API directly as an
    53  * alternative to using this class.
    53  * alternative to using this class.
    54  *
    54  *
    55  * <p> It is crucial for a programmer using this class not to use
    55  * <p> It is crucial for a programmer using this class not to use
    56  * methods that are not defined or overriden in this class (such as a
    56  * methods that are not defined or overridden in this class (such as a
    57  * new method or constructor that is later added to one of the super
    57  * new method or constructor that is later added to one of the super
    58  * classes), because the design and implementation of those methods
    58  * classes), because the design and implementation of those methods
    59  * are unlikely to have considered security impact with regard to
    59  * are unlikely to have considered security impact with regard to
    60  * CipherOutputStream.
    60  * CipherOutputStream.
    61  *
    61  *