Lines Matching defs:gstr
73 static EVP_PKEY_CTX *set_keygen_ctx(const char *gstr,
1499 static EVP_PKEY_CTX *set_keygen_ctx(const char *gstr,
1512 /* Treat the first part of gstr, and only that */
1513 if (gstr == NULL) {
1520 } else if (gstr[0] >= '0' && gstr[0] <= '9') {
1525 const char *p = strchr(gstr, ':');
1529 len = p - gstr;
1531 len = strlen(gstr);
1533 if (strncmp(gstr, "param", len) == 0) {
1538 gstr);
1542 keytype = gstr;
1547 gstr = gstr + len + 1;
1549 gstr = NULL;
1552 /* Treat the second part of gstr, if there is one */
1553 if (gstr != NULL) {
1555 if (!expect_paramfile && gstr[0] >= '0' && gstr[0] <= '9')
1556 keylen = atol(gstr);
1558 paramfile = gstr;