HomeSort by relevance Sort by last modified time
    Searched refs:enc (Results 126 - 150 of 592) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/openssl/crypto/bf/asm/
bf-586.pl 27 local($name,$enc)=@_;
48 if ($enc)
95 local($i,$L,$R,$P,$tmp1,$tmp2,$tmp3,$tmp4,$enc)=@_;
121 if (($enc && ($i != 16)) || ((!$enc) && ($i != 1)))
125 &comment("Load parameter 0 ($i) enc=$enc");
  /external/openssl/ssl/
d1_enc.c 143 const EVP_CIPHER *enc; local
156 enc=NULL;
159 enc=EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
181 enc=NULL;
183 enc=EVP_CIPHER_CTX_cipher(s->enc_read_ctx);
191 (enc == NULL))
ssl_ciph.c 487 int ssl_cipher_get_evp(const SSL_SESSION *s, const EVP_CIPHER **enc,
514 if ((enc == NULL) || (md == NULL)) return(0);
566 *enc=NULL;
570 *enc=EVP_enc_null();
572 *enc=ssl_cipher_methods[i];
614 if ((*enc != NULL) &&
615 (*md != NULL || (EVP_CIPHER_flags(*enc)&EVP_CIPH_FLAG_AEAD_CIPHER)) &&
632 *enc = evp, *md = NULL;
636 *enc = evp, *md = NULL;
640 *enc = evp, *md = NULL
1539 const char *kx,*au,*enc,*mac; local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
PKIXCertPathValidatorResultTest.java 276 assertSame(my.enc, myClone.enc);
281 public byte[] enc; // byte array is cloneable field in class:PKIXCertPathValidatorResultTest.MyPKIXCertPathBuilderResult
284 PolicyNode policyTree, PublicKey subjectPublicKey, byte[] enc) {
287 this.enc = enc;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
X509CertSelectorTest.java 119 byte[] enc = { 0x30, 0x0E, // SEQUENCE
128 selector.setSubjectPublicKey(enc);
132 assertTrue(Arrays.equals(enc, key.getEncoded()));
  /external/wpa_supplicant_8/src/crypto/
crypto_gnutls.c 190 gcry_cipher_hd_t enc; member in struct:crypto_cipher
211 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_STREAM,
222 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_CBC, 0);
227 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_CBC, 0);
232 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_CBC, 0);
240 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_CBC, 0);
253 if (gcry_cipher_setkey(ctx->enc, key, key_len) != GPG_ERR_NO_ERROR ||
255 gcry_cipher_close(ctx->enc);
262 if (gcry_cipher_setiv(ctx->enc, iv, ivlen) != GPG_ERR_NO_ERROR ||
264 gcry_cipher_close(ctx->enc);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mimetools.py 20 for enc in ['7bit','8bit','base64','quoted-printable',
24 mimetools.encode(i, o, enc)
27 mimetools.decode(i, o, enc)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mimetools.py 20 for enc in ['7bit','8bit','base64','quoted-printable',
24 mimetools.encode(i, o, enc)
27 mimetools.decode(i, o, enc)
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CipherInputStream.java 21 byte[] enc; field in class:CipherInputStream
78 enc = new byte[blockSize];
87 int len = internal_read(enc, n, blockSize - n);
97 currentCipher.transformBlock(enc, 0, buffer, 0);
CipherOutputStream.java 21 byte[] enc; field in class:CipherOutputStream
91 enc = new byte[blockSize];
99 currentCipher.transformBlock(buffer, 0, enc, 0);
106 internal_write(enc, 0, blockSize);
  /external/qemu/distrib/sdl-1.2.15/src/audio/sun/
SDL_sunaudio.c 247 int enc; local
262 enc = AUDIO_ENCODING_LINEAR8;
270 enc = AUDIO_ENCODING_LINEAR;
299 info.play.precision = (enc == AUDIO_ENCODING_ULAW)
301 info.play.encoding = enc;
310 if(info.play.encoding == enc
319 switch(enc) {
322 enc = AUDIO_ENCODING_LINEAR;
328 enc = AUDIO_ENCODING_ULAW;
  /external/srtp/crypto/include/
cryptoalg.h 104 cryptoalg_func_t enc; member in struct:cryptoalg_ctx_t
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Android.mk 36 $(EXYNOS_OMX_COMPONENT)/video/enc \
38 $(EXYNOS_OMX_TOP)/video/enc \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_recursion.py 57 enc = RecursiveJSONEncoder()
58 self.assertEqual(enc.encode(JSONTestObject), '"JSONTestObject"')
59 enc.recurse = True
61 enc.encode(JSONTestObject)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_recursion.py 57 enc = RecursiveJSONEncoder()
58 self.assertEqual(enc.encode(JSONTestObject), '"JSONTestObject"')
59 enc.recurse = True
61 enc.encode(JSONTestObject)
  /external/chromium_org/third_party/opus/src/src/
opus_demo.c 200 OpusEncoder *enc=NULL; local
482 enc = opus_encoder_create(sampling_rate, channels, application, &err);
490 opus_encoder_ctl(enc, OPUS_SET_BITRATE(bitrate_bps));
491 opus_encoder_ctl(enc, OPUS_SET_BANDWIDTH(bandwidth));
492 opus_encoder_ctl(enc, OPUS_SET_VBR(use_vbr));
493 opus_encoder_ctl(enc, OPUS_SET_VBR_CONSTRAINT(cvbr));
494 opus_encoder_ctl(enc, OPUS_SET_COMPLEXITY(complexity));
495 opus_encoder_ctl(enc, OPUS_SET_INBAND_FEC(use_inbandfec));
496 opus_encoder_ctl(enc, OPUS_SET_FORCE_CHANNELS(forcechannels));
497 opus_encoder_ctl(enc, OPUS_SET_DTX(use_dtx))
    [all...]
  /external/chromium_org/third_party/opus/src/tests/
test_opus_api.c 1049 OpusEncoder *enc; local
1585 OpusEncoder *enc; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_ciph.c 487 int ssl_cipher_get_evp(const SSL_SESSION *s, const EVP_CIPHER **enc,
514 if ((enc == NULL) || (md == NULL)) return(0);
566 *enc=NULL;
570 *enc=EVP_enc_null();
572 *enc=ssl_cipher_methods[i];
614 if ((*enc != NULL) &&
615 (*md != NULL || (EVP_CIPHER_flags(*enc)&EVP_CIPH_FLAG_AEAD_CIPHER)) &&
632 *enc = evp, *md = NULL;
636 *enc = evp, *md = NULL;
640 *enc = evp, *md = NULL
1539 const char *kx,*au,*enc,*mac; local
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
xmlIO.h 167 xmlAllocParserInputBuffer (xmlCharEncoding enc);
171 xmlCharEncoding enc);
174 xmlCharEncoding enc);
177 xmlCharEncoding enc);
180 xmlCharEncoding enc);
183 xmlCharEncoding enc);
188 xmlCharEncoding enc);
212 xmlCharEncoding enc);
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
cfb64enc.c 68 DES_cblock *ivec, int *num, int enc)
77 if (enc)
ecb_enc.c 109 DES_key_schedule *ks, int enc)
118 DES_encrypt1(ll,ks,enc);
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
e_camellia.c 66 const unsigned char *iv, int enc);
110 const unsigned char *iv, int enc)
e_rc4.c 80 const unsigned char *iv,int enc);
124 const unsigned char *iv, int enc)
e_rc5.c 70 const unsigned char *iv,int enc);
119 const unsigned char *iv, int enc)
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
cfb128.c 69 int enc, block128_f block)
78 if (enc) {
177 unsigned char ivec[16],int enc,
190 if (enc) /* encrypt the input */
212 int enc, block128_f block)
223 cfbr_encrypt_block(c,d,1,key,ivec,enc,block);
232 int enc, block128_f block)
240 cfbr_encrypt_block(&in[n],&out[n],8,key,ivec,enc,block);

Completed in 1694 milliseconds

1 2 3 4 56 7 8 91011>>