Lines Matching refs:inlen
23 unsigned char *in, size_t inlen);
64 EVP_PKEY_verify_update() adds I<inlen> bytes from I<in> to the data to be
248 /* inlen is the length of the input in this example. */
249 size_t inlen, siglen;
254 * NB: assumes signing_key, in and inlen are set up before
257 * inlen must be the size of the data in bytes.
268 ret = EVP_PKEY_verify(ctx, sig, siglen, in, inlen);
286 /* inlen is the length of the input in this example. */
287 size_t inlen, siglen;
292 * NB: assumes signing_key, in and inlen are set up before
295 * inlen must be the size of the data in bytes.
309 while (inlen > 0) {
310 if (EVP_PKEY_verify_message_update(ctx, in, inlen)) <= 0)
312 if (inlen > 256) {
313 inlen -= 256;
316 inlen = 0;