diff options
Diffstat (limited to 'luni/src/main/java/javax/crypto')
-rw-r--r-- | luni/src/main/java/javax/crypto/CipherInputStream.java | 2 | ||||
-rw-r--r-- | luni/src/main/java/javax/crypto/spec/PBEKeySpec.java | 2 | ||||
-rw-r--r-- | luni/src/main/java/javax/crypto/spec/PSource.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/luni/src/main/java/javax/crypto/CipherInputStream.java b/luni/src/main/java/javax/crypto/CipherInputStream.java index fa6040f..8ad0b84 100644 --- a/luni/src/main/java/javax/crypto/CipherInputStream.java +++ b/luni/src/main/java/javax/crypto/CipherInputStream.java @@ -21,7 +21,7 @@ import java.io.FilterInputStream; import java.io.IOException; import java.io.InputStream; import java.security.GeneralSecurityException; -import libcore.base.Streams; +import libcore.io.Streams; /** * This class wraps an {@code InputStream} and a cipher so that {@code read()} diff --git a/luni/src/main/java/javax/crypto/spec/PBEKeySpec.java b/luni/src/main/java/javax/crypto/spec/PBEKeySpec.java index c84cdcb..e1f0d96 100644 --- a/luni/src/main/java/javax/crypto/spec/PBEKeySpec.java +++ b/luni/src/main/java/javax/crypto/spec/PBEKeySpec.java @@ -19,7 +19,7 @@ package javax.crypto.spec; import java.security.spec.KeySpec; import java.util.Arrays; -import libcore.base.EmptyArray; +import libcore.util.EmptyArray; /** * The key specification for a <i>password based encryption</i> key. diff --git a/luni/src/main/java/javax/crypto/spec/PSource.java b/luni/src/main/java/javax/crypto/spec/PSource.java index 5f520f3..0efa1e9 100644 --- a/luni/src/main/java/javax/crypto/spec/PSource.java +++ b/luni/src/main/java/javax/crypto/spec/PSource.java @@ -17,7 +17,7 @@ package javax.crypto.spec; -import libcore.base.EmptyArray; +import libcore.util.EmptyArray; /** * The source of the label <code>L</code> as specified in <a |