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

1 2 3 4

  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
zcgunzip.cc 60 int inlen; local
62 ok = in.Next(&inptr, &inlen);
66 if (inlen > 0) {
67 int err = write(STDOUT_FILENO, inptr, inlen);
68 assert(err == inlen);
  /external/openssl/crypto/ecdh/
ech_key.c 74 void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen))
ech_locl.h 69 void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen));
ecdh.h 95 void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen));
ech_ossl.c 84 void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen));
110 void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen))
  /external/openssl/crypto/pkcs12/
p12_decr.c 72 int passlen, unsigned char *in, int inlen, unsigned char **data,
87 if(!(out = OPENSSL_malloc(inlen + EVP_CIPHER_CTX_block_size(&ctx)))) {
92 if (!EVP_CipherUpdate(&ctx, out, &i, in, inlen))
163 int inlen; local
168 inlen = ASN1_item_i2d(obj, &in, it);
173 if (!PKCS12_pbe_crypt(algor, pass, passlen, in, inlen, &oct->data,
179 if (zbuf) OPENSSL_cleanse(in, inlen);
  /external/openssl/crypto/cms/
cms_pwri.c 226 const unsigned char *in, size_t inlen, EVP_CIPHER_CTX *ctx)
231 if (inlen < 2 * blocklen)
236 if (inlen % blocklen)
241 tmp = OPENSSL_malloc(inlen);
243 EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl,
244 in + inlen - 2 * blocklen, blocklen * 2);
250 tmp + inlen - blocklen, blocklen);
252 EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen);
257 EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen);
264 if (inlen < (size_t)(tmp[0] - 4 )
    [all...]
  /external/openssl/crypto/aes/
aes_wrap.c 64 const unsigned char *in, unsigned int inlen)
68 if ((inlen & 0x7) || (inlen < 8))
72 memcpy(out + 8, in, inlen);
81 for (i = 0; i < inlen; i += 8, t++, R += 8)
96 return inlen + 8;
101 const unsigned char *in, unsigned int inlen)
105 inlen -= 8;
106 if (inlen & 0x7)
108 if (inlen < 8
    [all...]
aes.h 137 const unsigned char *in, unsigned int inlen);
140 const unsigned char *in, unsigned int inlen);
  /external/chromium_org/third_party/boringssl/src/include/openssl/
ecdh.h 87 void *(*KDF)(const void *in, size_t inlen,
  /external/chromium_org/third_party/libxml/src/include/libxml/
encoding.h 105 * @inlen: the length of @in
112 * The value of @inlen after return is the number of octets consumed
117 const unsigned char *in, int *inlen);
125 * @inlen: the length of @in
134 * The value of @inlen after return is the number of octets consumed
139 const unsigned char *in, int *inlen);
244 int *inlen);
250 int *inlen);
DOCBparser.h 48 int *inlen, int quoteChar);
  /external/libxml2/include/libxml/
encoding.h 90 * @inlen: the length of @in
97 * The value of @inlen after return is the number of octets consumed
102 const unsigned char *in, int *inlen);
110 * @inlen: the length of @in
119 * The value of @inlen after return is the number of octets consumed
124 const unsigned char *in, int *inlen);
229 int *inlen);
235 int *inlen);
DOCBparser.h 48 int *inlen, int quoteChar);
  /external/chromium_org/third_party/libxml/src/
encoding.c 159 * @inlen: the length of @in
164 * The value of @inlen after return is the number of octets consumed
170 const unsigned char* in, int *inlen) {
178 inend = in + (*inlen);
188 *inlen = processed - base;
195 *inlen = processed - base;
205 * @inlen: the length of @in
211 * The value of @inlen after return is the number of octets consumed
217 const unsigned char* in, int *inlen) {
226 if ((out == NULL) || (outlen == NULL) || (inlen == NULL)) return(-1)
489 unsigned int c, d, inlen; local
727 unsigned int c, d, inlen; local
    [all...]
  /external/libxml2/
encoding.c 163 * @inlen: the length of @in
168 * The value of @inlen after return is the number of octets consumed
174 const unsigned char* in, int *inlen) {
182 inend = in + (*inlen);
192 *inlen = processed - base;
199 *inlen = processed - base;
209 * @inlen: the length of @in
215 * The value of @inlen after return is the number of octets consumed
221 const unsigned char* in, int *inlen) {
230 if ((out == NULL) || (outlen == NULL) || (inlen == NULL)) return(-1)
493 unsigned int c, d, inlen; local
731 unsigned int c, d, inlen; local
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
tasn_utl.c 145 int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
156 enc->enc = OPENSSL_malloc(inlen);
160 memcpy(enc->enc, in, inlen);
161 enc->len = inlen;
  /external/openssl/crypto/asn1/
tasn_utl.c 165 int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
175 enc->enc = OPENSSL_malloc(inlen);
178 memcpy(enc->enc, in, inlen);
179 enc->len = inlen;
  /external/openssl/crypto/rand/
rand_lib.c 239 static int drbg_rand_add(DRBG_CTX *ctx, const void *in, int inlen,
242 RAND_SSLeay()->add(in, inlen, entropy);
246 static int drbg_rand_seed(DRBG_CTX *ctx, const void *in, int inlen)
248 RAND_SSLeay()->seed(in, inlen);
  /external/openssl/include/openssl/
ecdh.h 95 void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen));
aes.h 137 const unsigned char *in, unsigned int inlen);
140 const unsigned char *in, unsigned int inlen);
  /external/chromium_org/third_party/boringssl/src/crypto/chacha/
chacha_vec.c 144 size_t inlen,
188 for (iters = 0; iters < inlen/(BPI*64); iters++)
279 for (iters = inlen%(BPI*64)/64; iters != 0; iters--)
292 inlen = inlen % 64;
293 if (inlen)
303 if (inlen >= 16)
306 if (inlen >= 32)
309 if (inlen >= 48)
324 for (i=inlen & ~15; i<inlen; i++
    [all...]
  /external/openssl/crypto/evp/
pmeth_fn.c 212 const unsigned char *in, size_t inlen)
226 return ctx->pmeth->encrypt(ctx, out, outlen, in, inlen);
249 const unsigned char *in, size_t inlen)
263 return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
  /external/chromium_org/third_party/boringssl/src/crypto/evp/
p_rsa.c 264 const uint8_t *in, size_t inlen) {
281 !RSA_padding_add_PKCS1_OAEP_mgf1(rctx->tbuf, key_len, in, inlen,
291 return RSA_encrypt(rsa, outlen, out, *outlen, in, inlen, rctx->pad_mode);
296 size_t inlen) {
316 !RSA_decrypt(rsa, &plaintext_len, rctx->tbuf, key_len, in, inlen,
331 return RSA_decrypt(rsa, outlen, out, key_len, in, inlen, rctx->pad_mode);
  /external/openssl/apps/
pkeyutl.c 84 unsigned char *in, size_t inlen);
543 unsigned char *in, size_t inlen)
549 rv = EVP_PKEY_verify_recover(ctx, out, poutlen, in, inlen);
553 rv = EVP_PKEY_sign(ctx, out, poutlen, in, inlen);
557 rv = EVP_PKEY_encrypt(ctx, out, poutlen, in, inlen);
561 rv = EVP_PKEY_decrypt(ctx, out, poutlen, in, inlen);

Completed in 479 milliseconds

1 2 3 4