blob: e3eeb601bd10b8e0dbd29272c0f8b8217875fe57 [file] [log] [blame]
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00001/*
2 * Copyright (c) 2019 Google LLC
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#ifndef SSHSIG_H
18#define SSHSIG_H
19
20struct sshbuf;
21struct sshkey;
djm@openbsd.orgbab6feb2019-09-05 04:55:32 +000022struct sshsigopt;
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000023
24typedef int sshsig_signer(struct sshkey *, u_char **, size_t *,
25 const u_char *, size_t, const char *, u_int, void *);
26
djm@openbsd.orgd637c4a2019-09-03 08:35:27 +000027/* Buffer-oriented API */
28
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000029/*
djm@openbsd.orgd637c4a2019-09-03 08:35:27 +000030 * Creates a detached SSH signature for a given buffer.
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000031 * Returns 0 on success or a negative SSH_ERR_* error code on failure.
32 * out is populated with the detached signature, or NULL on failure.
33 */
djm@openbsd.orgd637c4a2019-09-03 08:35:27 +000034int sshsig_signb(struct sshkey *key, const char *hashalg,
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000035 const struct sshbuf *message, const char *sig_namespace,
36 struct sshbuf **out, sshsig_signer *signer, void *signer_ctx);
37
38/*
djm@openbsd.orgd637c4a2019-09-03 08:35:27 +000039 * Verifies that a detached signature is valid and optionally returns key
40 * used to sign via argument.
41 * Returns 0 on success or a negative SSH_ERR_* error code on failure.
42 */
43int sshsig_verifyb(struct sshbuf *signature,
44 const struct sshbuf *message, const char *sig_namespace,
45 struct sshkey **sign_keyp);
46
47/* File/FD-oriented API */
48
49/*
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000050 * Creates a detached SSH signature for a given file.
51 * Returns 0 on success or a negative SSH_ERR_* error code on failure.
52 * out is populated with the detached signature, or NULL on failure.
53 */
54int sshsig_sign_fd(struct sshkey *key, const char *hashalg,
55 int fd, const char *sig_namespace, struct sshbuf **out,
56 sshsig_signer *signer, void *signer_ctx);
57
58/*
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000059 * Verifies that a detached signature over a file is valid and optionally
60 * returns key used to sign via argument.
61 * Returns 0 on success or a negative SSH_ERR_* error code on failure.
62 */
63int sshsig_verify_fd(struct sshbuf *signature, int fd,
64 const char *sig_namespace, struct sshkey **sign_keyp);
65
djm@openbsd.orgd637c4a2019-09-03 08:35:27 +000066/* Utility functions */
67
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000068/*
69 * Return a base64 encoded "ASCII armoured" version of a raw signature.
70 */
71int sshsig_armor(const struct sshbuf *blob, struct sshbuf **out);
72
73/*
74 * Decode a base64 encoded armoured signature to a raw signature.
75 */
76int sshsig_dearmor(struct sshbuf *sig, struct sshbuf **out);
77
78/*
79 * Checks whether a particular key/principal/namespace is permitted by
80 * an allowed_keys file. Returns 0 on success.
81 */
82int sshsig_check_allowed_keys(const char *path, const struct sshkey *sign_key,
83 const char *principal, const char *ns);
84
djm@openbsd.orgbab6feb2019-09-05 04:55:32 +000085/* Parse zero or more allowed_keys signature options */
86struct sshsigopt *sshsigopt_parse(const char *opts,
87 const char *path, u_long linenum, const char **errstrp);
88
89/* Free signature options */
90void sshsigopt_free(struct sshsigopt *opts);
91
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000092#endif /* SSHSIG_H */