Home | History | Annotate | Download | only in apps

Lines Matching refs:keymatexportlen

210 static int keymatexportlen=20;
373 BIO_printf(bio_err," -keymatexportlen len - Export len bytes of keying material (default 20)\n");
985 else if (strcmp(*argv,"-keymatexportlen") == 0)
988 keymatexportlen=atoi(*(++argv));
989 if (keymatexportlen == 0) goto bad;
2158 BIO_printf(bio, " Length: %i bytes\n", keymatexportlen);
2159 exportedkeymat = OPENSSL_malloc(keymatexportlen);
2163 keymatexportlen,
2173 for (i=0; i<keymatexportlen; i++)