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

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CBCBlockCipher.java 21 private boolean encrypting; field in class:CBCBlockCipher
53 * @param encrypting if true the cipher is initialised for
60 boolean encrypting,
64 boolean oldEncrypting = this.encrypting;
66 this.encrypting = encrypting;
85 cipher.init(encrypting, ivParam.getParameters());
87 else if (oldEncrypting != encrypting)
89 throw new IllegalArgumentException("cannot change encrypting state without providing key.");
99 cipher.init(encrypting, params)
    [all...]
CFBBlockCipher.java 23 private boolean encrypting; field in class:CFBBlockCipher
53 * @param encrypting if true the cipher is initialised for
60 boolean encrypting,
64 this.encrypting = encrypting;
119 return (encrypting) ? encryptByte(in) : decryptByte(in);
OFBBlockCipher.java 49 * @param encrypting if true the cipher is initialised for
56 boolean encrypting, //ignored by this OFB mode
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 32 * @param encrypting whether or not we are for encryption.
38 boolean encrypting,
53 this.forEncryption = encrypting;
57 workingKey1 = generateWorkingKey(encrypting, key1);
61 workingKey2 = generateWorkingKey(!encrypting, key2);
67 workingKey3 = generateWorkingKey(encrypting, key3);
RC2Engine.java 59 private boolean encrypting; field in class:RC2Engine
115 * @param encrypting whether or not we are for encryption.
121 boolean encrypting,
124 this.encrypting = encrypting;
181 if (encrypting)
DESEngine.java 29 * @param encrypting whether or not we are for encryption.
35 boolean encrypting,
45 workingKey = generateWorkingKey(encrypting,
308 boolean encrypting,
326 if (encrypting)
BlowfishEngine.java 307 private boolean encrypting = false; field in class:BlowfishEngine
323 * @param encrypting whether or not we are for encryption.
329 boolean encrypting,
334 this.encrypting = encrypting;
370 if (encrypting)
TwofishEngine.java 207 private boolean encrypting = false; field in class:TwofishEngine
262 * @param encrypting whether or not we are for encryption.
268 boolean encrypting,
273 this.encrypting = encrypting;
310 if (encrypting)
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLCipherRSA.java 62 * Current cipher mode: encrypting or decrypting.
64 protected boolean encrypting; field in class:OpenSSLCipherRSA
118 if (encrypting) {
126 if (encrypting) {
171 encrypting = true;
173 encrypting = false;
284 if (!encrypting && resultSize != output.length) {
357 if (encrypting) {
483 pkeyCtx = new NativeRef.EVP_PKEY_CTX(encrypting
544 if (encrypting) {
    [all...]
OpenSSLCipher.java 97 * Current cipher mode: encrypting or decrypting.
99 private boolean encrypting; field in class:OpenSSLCipher
428 encrypting = true;
430 encrypting = false;
449 return encrypting;
494 final boolean encrypting = isEncrypting();
498 if (!encrypting) {
519 NativeCrypto.EVP_CipherInit_ex(cipherCtx, cipherType, null, null, encrypting);
523 NativeCrypto.EVP_CipherInit_ex(cipherCtx, cipherType, encodedKey, iv, encrypting);
602 // In case it's encrypting and there are no remainder bytes, add an extra bloc
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/cipher/
ctr.go 8 // repeatedly encrypting an incrementing counter and
ofb_test.go 84 t.Errorf("%s/%d: encrypting\ninput % x\nhave % x\nwant % x", test, len(plaintext), plaintext, ciphertext, tt.out)
example_test.go 98 // size, padding would have to be added when encrypting, which would be
327 // Copy the input file to the output file, encrypting as we go.
  /prebuilts/go/linux-x86/src/crypto/cipher/
ctr.go 8 // repeatedly encrypting an incrementing counter and
ofb_test.go 84 t.Errorf("%s/%d: encrypting\ninput % x\nhave % x\nwant % x", test, len(plaintext), plaintext, ciphertext, tt.out)
example_test.go 98 // size, padding would have to be added when encrypting, which would be
327 // Copy the input file to the output file, encrypting as we go.
  /external/boringssl/src/ssl/test/runner/
ticket.go 171 return nil, errors.New("tls: failed to create cipher while encrypting ticket: " + err.Error())
  /prebuilts/go/darwin-x86/src/crypto/tls/
ticket.go 146 return nil, errors.New("tls: failed to create cipher while encrypting ticket: " + err.Error())
  /prebuilts/go/linux-x86/src/crypto/tls/
ticket.go 146 return nil, errors.New("tls: failed to create cipher while encrypting ticket: " + err.Error())
  /prebuilts/go/darwin-x86/src/crypto/rsa/
rsa.go 17 // interface isn't necessary, there are functions for encrypting/decrypting
51 // used when encrypting.
359 // encrypting the same message twice doesn't result in the same ciphertext.
581 // function ? the random data need not match that used when encrypting.
583 // The label parameter must match the value given when encrypting. See
example_test.go 24 // Before encrypting, data is ?padded? by embedding it in a known
pkcs1v15_test.go 88 t.Errorf("error encrypting: %s", err)
  /prebuilts/go/linux-x86/src/crypto/rsa/
rsa.go 17 // interface isn't necessary, there are functions for encrypting/decrypting
51 // used when encrypting.
359 // encrypting the same message twice doesn't result in the same ciphertext.
581 // function ? the random data need not match that used when encrypting.
583 // The label parameter must match the value given when encrypting. See
example_test.go 24 // Before encrypting, data is ?padded? by embedding it in a known
  /prebuilts/go/darwin-x86/src/crypto/x509/
pem_decrypt.go 202 // We could save this copy by encrypting all the whole blocks in

Completed in 230 milliseconds

1 2