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

1 2

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionState.java 56 * decrypt call
131 protected byte[] decrypt(byte type, byte[] fragment) { method in class:ConnectionState
132 return decrypt(type, fragment, 0, fragment.length);
144 protected abstract byte[] decrypt method in class:ConnectionState
DigitalSignature.java 222 final byte[] decrypt;
224 decrypt = cipher.doFinal(data);
242 return Arrays.equals(decrypt, md5_sha);
SSLRecordProtocol.java 382 fragment = activeReadState.decrypt((byte) type, fragment);
  /external/dropbear/libtomcrypt/demos/
encrypt.c 100 unsigned long outlen, y, ivsize, x, decrypt; local
115 decrypt = 1;
120 decrypt = 0;
166 if (decrypt) {
  /external/srtp/crypto/include/
cipher.h 85 * and direction (i.e., encrypt or decrypt)
144 cipher_encrypt_func_t decrypt; member in struct:cipher_type_t
178 (((c)->type)->decrypt(((c)->state), (buf), (len)))
  /external/openssl/crypto/evp/
pmeth_fn.c 232 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt)
251 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt)
263 return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
288 if (!ctx || !ctx->pmeth || !(ctx->pmeth->derive||ctx->pmeth->encrypt||ctx->pmeth->decrypt) || !ctx->pmeth->ctrl)
pmeth_lib.c 229 pmeth->decrypt = 0;
519 int (*decrypt)(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen,
523 pmeth->decrypt = decrypt;
  /external/ipsec-tools/src/racoon/
algorithm.h 157 vchar_t *(*decrypt) __P((vchar_t *, vchar_t *, vchar_t *)); member in struct:enc_algorithm
algorithm.c 534 if (f == NULL || f->decrypt == NULL)
541 res = (f->decrypt)(buf, key, iv);
  /frameworks/base/drm/libdrmframework/include/
DrmManagerService.h 110 status_t decrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId,
IDrmManagerService.h 75 DECRYPT,
151 virtual status_t decrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId,
234 virtual status_t decrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId,
DrmManager.h 123 status_t decrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId,
DrmManagerClientImpl.h 297 * Open the decrypt session to decrypt the given protected content
309 * Open the decrypt session to decrypt the given protected content
319 * Close the decrypt session for the given handle
342 * Decrypt the protected content buffers for the given unit
358 status_t decrypt(int uniqueId, sp<DecryptHandle> &decryptHandle, int decryptUnitId,
  /frameworks/base/drm/libdrmframework/plugins/common/include/
IDrmEngine.h 316 * Open the decrypt session to decrypt the given protected content
330 * Open the decrypt session to decrypt the given protected content
342 * Close the decrypt session for the given handle
365 * Decrypt the protected content buffers for the given unit
381 virtual status_t decrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId,
DrmEngineBase.h 93 status_t decrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId,
367 * Open the decrypt session to decrypt the given protected content
381 * Open the decrypt session to decrypt the given protected content
393 * Close the decrypt session for the given handle
416 * Decrypt the protected content buffers for the given unit
  /frameworks/base/include/drm/
DrmManagerClient.h 64 * Open the decrypt session to decrypt the given protected content
75 * Open the decrypt session to decrypt the given protected content
84 * Close the decrypt session for the given handle
132 * Decrypt the protected content buffers for the given unit
147 status_t decrypt(
  /frameworks/base/drm/drmserver/
DrmManagerService.cpp 241 status_t DrmManagerService::decrypt( function in class:DrmManagerService
244 LOGV("Entering decrypt");
245 return mDrmManager->decrypt(uniqueId, decryptHandle, decryptUnitId, encBuffer, decBuffer, IV);
  /frameworks/base/drm/libdrmframework/
DrmManagerClient.cpp 137 status_t DrmManagerClient::decrypt( function in class:DrmManagerClient
140 return mDrmManagerClientImpl->decrypt(
DrmManagerClientImpl.cpp 292 status_t DrmManagerClientImpl::decrypt( function in class:DrmManagerClientImpl
299 status = getDrmManagerService()->decrypt(
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 267 char decrypt[PROPERTY_VALUE_MAX]; local
268 property_get("vold.decrypt", decrypt, "");
270 bool encryptedAnimation = atoi(decrypt) != 0 || !strcmp("trigger_restart_min_framework", decrypt);
  /frameworks/base/drm/common/
DrmEngineBase.cpp 141 status_t DrmEngineBase::decrypt( function in class:DrmEngineBase
  /external/webrtc/src/
common_types.h 160 virtual void decrypt(
  /external/wpa_supplicant/
des.c 281 static void deskey(const u8 *key, int decrypt, u32 *keyout)
294 if (decrypt)
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
des.c 281 static void deskey(const u8 *key, int decrypt, u32 *keyout)
294 if (decrypt)
  /external/wpa_supplicant_8/src/crypto/
des-internal.c 279 static void deskey(const u8 *key, int decrypt, u32 *keyout)
292 if (decrypt)

Completed in 981 milliseconds

1 2