HomeSort by relevance Sort by last modified time
    Searched refs:forEncryption (Results 1 - 25 of 27) sorted by null

1 2

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
AsymmetricBlockCipher.java 13 * @param forEncryption if true the cipher is initialised for
17 public void init(boolean forEncryption, CipherParameters param);
BlockCipher.java 12 * @param forEncryption if true the cipher is initialised for
18 public void init(boolean forEncryption, CipherParameters params)
StreamCipher.java 11 * @param forEncryption if true the cipher is initialised for
17 public void init(boolean forEncryption, CipherParameters params)
StreamBlockCipher.java 35 * @param forEncryption true if we are setting up for encryption, false otherwise.
39 boolean forEncryption,
42 cipher.init(forEncryption, params);
BufferedBlockCipher.java 17 protected boolean forEncryption;
74 * @param forEncryption if true the cipher is initialised for
81 boolean forEncryption,
85 this.forEncryption = forEncryption;
89 cipher.init(forEncryption, params);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
BlockCipher.java 15 public void init(boolean forEncryption, byte[] key);