Lines Matching refs:inlen
20 unsigned char *in, size_t inlen);
58 EVP_PKEY_sign_message_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 if (EVP_PKEY_sign(ctx, NULL, &siglen, in, inlen) <= 0)
276 if (EVP_PKEY_sign(ctx, sig, &siglen, in, inlen) <= 0)
293 /* inlen is the length of the input in this example. */
294 size_t inlen, siglen;
299 * NB: assumes signing_key, in and inlen are set up before
302 * inlen must be the size of the data in bytes.
312 while (inlen > 0) {
313 if (EVP_PKEY_sign_message_update(ctx, in, inlen)) <= 0)
315 if (inlen > 256) {
316 inlen -= 256;
319 inlen = 0;