Home | History | Annotate | Download | only in openssh

Lines Matching defs:from

87 /* Flag indicating that we want to delete a host from a known_hosts file */
144 /* Conversion to/from various formats */
157 /* Load key from this PKCS#11 provider */
321 "%u-bit %s, converted by %s@%s from OpenSSH",
798 fatal("cannot read public key from pkcs11");
1074 * Split any comma-separated hostnames from the host list,
1348 printf("Failed to read v2 public key from \"%s\": %s.\n",
1465 char from[32], to[32];
1470 *from = *to = '\0';
1478 strftime(from, sizeof(from), "%Y-%m-%dT%H:%M:%S", tm);
1492 snprintf(ret, sizeof(ret), "after %s", from);
1496 snprintf(ret, sizeof(ret), "from %s to %s", from, to);
1571 fatal("cannot read public key from pkcs11");
1763 char *from, *to;
1781 * from:to, where
1782 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1785 from = xstrdup(timespec);
1786 to = strchr(from, ':');
1787 if (to == NULL || from == to || *(to + 1) == '\0')
1791 if (*from == '-' || *from == '+')
1792 cert_valid_from = parse_relative_time(from, now);
1794 cert_valid_from = parse_absolute_time(from);
1803 free(from);
2004 printf("Revoking from %s\n", path);