Home
last modified time | relevance | path

Searched refs:KRL_MAGIC (Results 1 – 3 of 3) sorted by relevance

/external/openssh/
DPROTOCOL.krl7 #define KRL_MAGIC 0x5353484b524c0a00ULL /* "SSHKRL\n\0" */
10 uint64 KRL_MAGIC
158 The signature is calculated over the entire KRL from the KRL_MAGIC
Dkrl.h24 #define KRL_MAGIC "SSHKRL\n\0" macro
Dkrl.c722 if ((r = sshbuf_put(buf, KRL_MAGIC, sizeof(KRL_MAGIC) - 1)) != 0 || in ssh_krl_to_blob()
935 if (sshbuf_len(buf) < sizeof(KRL_MAGIC) - 1 || in ssh_krl_from_blob()
936 memcmp(sshbuf_ptr(buf), KRL_MAGIC, sizeof(KRL_MAGIC) - 1) != 0) { in ssh_krl_from_blob()
946 if ((r = sshbuf_consume(copy, sizeof(KRL_MAGIC) - 1)) != 0) in ssh_krl_from_blob()