You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
/*
|
|
* Copyright (c) 2013 - present Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
package javax.crypto;
|
|
|
|
import com.facebook.infer.builtins.InferUndefined;
|
|
|
|
import java.io.FilterOutputStream;
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
|
|
public class CipherOutputStream extends FilterOutputStream {
|
|
|
|
|
|
public CipherOutputStream(OutputStream os, Cipher c) {
|
|
super(os);
|
|
}
|
|
|
|
protected CipherOutputStream(OutputStream os) {
|
|
super(os);
|
|
}
|
|
|
|
public void close() throws IOException {
|
|
super.close();
|
|
}
|
|
|
|
public void write(int b) throws IOException {
|
|
InferUndefined.can_throw_ioexception_void();
|
|
}
|
|
|
|
public void write(byte b[]) throws IOException {
|
|
InferUndefined.can_throw_ioexception_void();
|
|
}
|
|
|
|
public void write(byte b[], int off, int len) throws IOException {
|
|
InferUndefined.can_throw_ioexception_void();
|
|
}
|
|
|
|
public void flush() throws IOException {
|
|
InferUndefined.can_throw_ioexception_void();
|
|
}
|
|
}
|