aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/asn.1/asn1_k_encode.h
blob: 818119c80d43aaf2a3654f3ed05a5ba3afa61c31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
 * src/lib/krb5/asn.1/asn1_k_encode.h
 *
 * Copyright 1994, 2008 by the Massachusetts Institute of Technology.
 * All Rights Reserved.
 *
 * Export of this software from the United States of America may
 *   require a specific license from the United States Government.
 *   It is the responsibility of any person or organization contemplating
 *   export to obtain such a license before exporting.
 *
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
 * distribute this software and its documentation for any purpose and
 * without fee is hereby granted, provided that the above copyright
 * notice appear in all copies and that both that copyright notice and
 * this permission notice appear in supporting documentation, and that
 * the name of M.I.T. not be used in advertising or publicity pertaining
 * to distribution of the software without specific, written prior
 * permission.  Furthermore if you modify this software you must label
 * your software as modified software and not distribute it in such a
 * fashion that it might be confused with the original M.I.T. software.
 * M.I.T. makes no representations about the suitability of
 * this software for any purpose.  It is provided "as is" without express
 * or implied warranty.
 */

#ifndef __ASN1_ENCODE_KRB5_H__
#define __ASN1_ENCODE_KRB5_H__

#include "k5-int.h"
#include <stdio.h>
#include "asn1buf.h"

/*
 * **** for simple val's ****
 * asn1_error_code asn1_encode_asn1_type(asn1buf *buf,
 *                                       const krb5_type val,
 *                                       int *retlen);
 *    requires  *buf is allocated
 *    effects   Inserts the encoding of val into *buf and
 *               returns the length of this encoding in *retlen.
 *              Returns ASN1_MISSING_FIELD if a required field is empty in val.
 *              Returns ENOMEM if memory runs out.
 *
 * **** for struct val's ****
 * asn1_error_code asn1_encode_asn1_type(asn1buf *buf,
 *                                       const krb5_type *val,
 *                                       int *retlen);
 *    requires  *buf is allocated
 *    effects   Inserts the encoding of *val into *buf and
 *               returns the length of this encoding in *retlen.
 *              Returns ASN1_MISSING_FIELD if a required field is empty in val.
 *              Returns ENOMEM if memory runs out.
 *
 * **** for array val's ****
 * asn1_error_code asn1_encode_asn1_type(asn1buf *buf,
 *                                       const krb5_type **val,
 *                                       int *retlen);
 *    requires  *buf is allocated, **val != NULL, *val[0] != NULL,
 *               **val is a NULL-terminated array of pointers to krb5_type
 *    effects   Inserts the encoding of **val into *buf and
 *               returns the length of this encoding in *retlen.
 *              Returns ASN1_MISSING_FIELD if a required field is empty in val.
 *              Returns ENOMEM if memory runs out.
 */

/* PKINIT */

asn1_error_code asn1_encode_pk_authenticator(asn1buf *buf,
                                             const krb5_pk_authenticator *val,
                                             unsigned int *retlen);

asn1_error_code
asn1_encode_pk_authenticator_draft9(asn1buf *buf,
                                    const krb5_pk_authenticator_draft9 *val,
                                    unsigned int *retlen);

asn1_error_code
asn1_encode_algorithm_identifier(asn1buf *buf,
                                 const krb5_algorithm_identifier *val,
                                 unsigned int *retlen);

asn1_error_code asn1_encode_subject_pk_info(asn1buf *buf,
                                            const krb5_subject_pk_info *val,
                                            unsigned int *retlen);

asn1_error_code asn1_encode_sequence_of_algorithm_identifier(
    asn1buf *buf, const krb5_algorithm_identifier **val, unsigned int *retlen);

asn1_error_code asn1_encode_auth_pack(asn1buf *buf, const krb5_auth_pack *val,
                                      unsigned int *retlen);

asn1_error_code asn1_encode_auth_pack_draft9(asn1buf *buf,
                                             const krb5_auth_pack_draft9 *val,
                                             unsigned int *retlen);

asn1_error_code asn1_encode_external_principal_identifier(
    asn1buf *buf, const krb5_external_principal_identifier *val,
    unsigned int *retlen);

asn1_error_code asn1_encode_sequence_of_external_principal_identifier(
    asn1buf *buf, const krb5_external_principal_identifier **val,
    unsigned int *retlen);

asn1_error_code asn1_encode_pa_pk_as_req(asn1buf *buf,
                                         const krb5_pa_pk_as_req *val,
                                         unsigned int *retlen);

asn1_error_code asn1_encode_trusted_ca(asn1buf *buf,
                                       const krb5_trusted_ca *val,
                                       unsigned int *retlen);

asn1_error_code asn1_encode_sequence_of_trusted_ca(asn1buf *buf,
                                                   const krb5_trusted_ca **val,
                                                   unsigned int *retlen);

asn1_error_code
asn1_encode_pa_pk_as_req_draft9(asn1buf *buf,
                                const krb5_pa_pk_as_req_draft9 *val,
                                unsigned int *retlen);

asn1_error_code asn1_encode_dh_rep_info(asn1buf *buf,
                                        const krb5_dh_rep_info *val,
                                        unsigned int *retlen);

asn1_error_code asn1_encode_kdc_dh_key_info(asn1buf *buf,
                                            const krb5_kdc_dh_key_info *val,
                                            unsigned int *retlen);

asn1_error_code asn1_encode_reply_key_pack(asn1buf *buf,
                                           const krb5_reply_key_pack *val,
                                           unsigned int *retlen);

asn1_error_code
asn1_encode_reply_key_pack_draft9(asn1buf *buf,
                                  const krb5_reply_key_pack_draft9 *val,
                                  unsigned int *retlen);

asn1_error_code asn1_encode_pa_pk_as_rep(asn1buf *buf,
                                         const krb5_pa_pk_as_rep *val,
                                         unsigned int *retlen);

asn1_error_code
asn1_encode_pa_pk_as_rep_draft9(asn1buf *buf,
                                const krb5_pa_pk_as_rep_draft9 *val,
                                unsigned int *retlen);

asn1_error_code asn1_encode_td_trusted_certifiers(
    asn1buf *buf, const krb5_external_principal_identifier **val,
    unsigned int *retlen);

asn1_error_code asn1_encode_typed_data(asn1buf *buf,
                                       const krb5_typed_data *val,
                                       unsigned int *retlen);

asn1_error_code asn1_encode_sequence_of_typed_data(asn1buf *buf,
                                                   const krb5_typed_data **val,
                                                   unsigned int *retlen);

#endif