Lines Matching defs:nonce
23 /* Request nonce length, in bits (must be a multiple of 8). */
121 {"no_nonce", OPT_NO_NONCE, '-', "Do not include a nonce"},
481 /* Setting nonce if requested. */
554 ASN1_INTEGER *nonce = NULL;
566 if ((nonce = ASN1_INTEGER_new()) == NULL)
568 OPENSSL_free(nonce->data);
569 nonce->length = len - i;
570 nonce->data = app_malloc(nonce->length + 1, "nonce buffer");
571 memcpy(nonce->data, buf + i, nonce->length);
572 return nonce;
575 BIO_printf(bio_err, "could not create nonce\n");
576 ASN1_INTEGER_free(nonce);