HomeSort by relevance Sort by last modified time
    Searched refs:ktype (Results 1 - 17 of 17) sorted by null

  /external/openssh/regress/
cert-hostkey.sh 77 for ktype in $PLAIN_TYPES ; do
78 verbose "$tid: sign host ${ktype} cert"
80 ${SSHKEYGEN} -q -N '' -t ${ktype} \
81 -f $OBJ/cert_host_key_${ktype} || \
82 fatal "ssh-keygen of cert_host_key_${ktype} failed"
84 $OBJ/cert_host_key_${ktype}.pub || fatal "KRL update failed"
85 cat $OBJ/cert_host_key_${ktype}.pub >> $OBJ/host_revoked_plain
86 case $ktype in
87 rsa-sha2-*) tflag="-t $ktype"; ca="$OBJ/host_ca_key2" ;;
92 -n $HOSTS $OBJ/cert_host_key_${ktype} ||
    [all...]
cert-userkey.sh 17 case $ktype in
30 for ktype in $PLAIN_TYPES $EXTRA_TYPES ; do
31 verbose "$tid: sign user ${ktype} cert"
32 ${SSHKEYGEN} -q -N '' -t ${ktype} \
33 -f $OBJ/cert_user_key_${ktype} || \
34 fatal "ssh-keygen of cert_user_key_${ktype} failed"
36 case $ktype in
37 rsa-sha2-*) tflag="-t $ktype" ;;
42 -n ${USER},mekmitasdigoat $tflag $OBJ/cert_user_key_${ktype} || \
43 fatal "couldn't sign cert_user_key_${ktype}"
    [all...]
  /external/openssh/
ssh-ecdsa.c 121 char *ktype = NULL; local
135 if (sshbuf_get_cstring(b, &ktype, NULL) != 0 ||
140 if (strcmp(sshkey_ssh_name_plain(key), ktype) != 0) {
185 free(ktype);
ssh-ed25519.c 100 char *ktype = NULL; local
116 if ((r = sshbuf_get_cstring(b, &ktype, NULL)) != 0 ||
119 if (strcmp("ssh-ed25519", ktype) != 0) {
165 free(ktype);
ssh-dss.c 139 char *ktype = NULL; local
158 if (sshbuf_get_cstring(b, &ktype, NULL) != 0 ||
163 if (strcmp("ssh-dss", ktype) != 0) {
213 free(ktype);