Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17295#discussion_r107323246
  
    --- Diff: 
core/src/main/scala/org/apache/spark/security/CryptoStreamUtils.scala ---
    @@ -63,12 +84,27 @@ private[spark] object CryptoStreamUtils extends Logging 
{
           is: InputStream,
           sparkConf: SparkConf,
           key: Array[Byte]): InputStream = {
    -    val properties = toCryptoConf(sparkConf)
         val iv = new Array[Byte](IV_LENGTH_IN_BYTES)
    -    is.read(iv, 0, iv.length)
    -    val transformationStr = sparkConf.get(IO_CRYPTO_CIPHER_TRANSFORMATION)
    -    new CryptoInputStream(transformationStr, properties, is,
    -      new SecretKeySpec(key, "AES"), new IvParameterSpec(iv))
    +    ByteStreams.readFully(is, iv)
    +    val params = new CryptoParams(key, sparkConf)
    +    new CryptoInputStream(params.transformation, params.conf, is, 
params.keySpec,
    +      new IvParameterSpec(iv))
    +  }
    +
    +  /**
    +   * Wrap a `ReadableByteChannel` for decryption.
    +   */
    +  def createReadableChannel(
    +      channel: ReadableByteChannel,
    +      sparkConf: SparkConf,
    +      key: Array[Byte]): ReadableByteChannel = {
    +    val iv = new Array[Byte](IV_LENGTH_IN_BYTES)
    +    val buf = ByteBuffer.wrap(iv)
    +    JavaUtils.readFully(channel, buf)
    --- End diff --
    
    why not use `ByteStreams.readFully`? the `buf` is not used else where


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to