Home
last modified time | relevance | path

Searched refs:AUTH_MAGIC (Results 1 – 2 of 2) sorted by relevance

/external/openssh/
DPROTOCOL.key8 #define AUTH_MAGIC "openssh-key-v1"
10 byte[] AUTH_MAGIC
Dsshkey.c67 #define AUTH_MAGIC "openssh-key-v1" macro
3102 if ((r = sshbuf_put(encoded, AUTH_MAGIC, sizeof(AUTH_MAGIC))) != 0 || in sshkey_private_to_blob2()
3257 if (sshbuf_len(decoded) < sizeof(AUTH_MAGIC) || in sshkey_parse_private2()
3258 memcmp(sshbuf_ptr(decoded), AUTH_MAGIC, sizeof(AUTH_MAGIC))) { in sshkey_parse_private2()
3263 if ((r = sshbuf_consume(decoded, sizeof(AUTH_MAGIC))) != 0 || in sshkey_parse_private2()