summaryrefslogtreecommitdiffstats
path: root/src/include/k5-int-pkinit.h
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2011-12-21 22:52:52 +0000
committerGreg Hudson <ghudson@mit.edu>2011-12-21 22:52:52 +0000
commitedc26c35049615ec634979738ca4d3e3759e9ad8 (patch)
treeab48defdbe3cc321cf4d4b4948dc771d2e2bcbb9 /src/include/k5-int-pkinit.h
parent02fff47a6ff9f322431d8c2d50fa463973ec19fd (diff)
downloadkrb5-edc26c35049615ec634979738ca4d3e3759e9ad8.tar.gz
krb5-edc26c35049615ec634979738ca4d3e3759e9ad8.tar.xz
krb5-edc26c35049615ec634979738ca4d3e3759e9ad8.zip
Stop using krb5_typed_data structure type
Use the krb5_pa_data structure type when encoding or decoding TYPED-DATA. Leave the krb5_typed_data structure definition in krb5.h with a comment saying not to use it. Remove krb5_free_typed_data (which was never declared in krb5.h). Remove some vestigial accessor stuff related to PKINIT encoding and decoding TYPED-DATA, which was unneeded since r25483. Bump the accessor structure version to 19 accordingly. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25601 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/k5-int-pkinit.h')
-rw-r--r--src/include/k5-int-pkinit.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/include/k5-int-pkinit.h b/src/include/k5-int-pkinit.h
index 481d6b1268..3ad5f51062 100644
--- a/src/include/k5-int-pkinit.h
+++ b/src/include/k5-int-pkinit.h
@@ -230,9 +230,6 @@ encode_krb5_reply_key_pack_draft9(const krb5_reply_key_pack_draft9 *,
krb5_data **code);
krb5_error_code
-encode_krb5_typed_data(const krb5_typed_data **, krb5_data **code);
-
-krb5_error_code
encode_krb5_td_trusted_certifiers(const krb5_external_principal_identifier **,
krb5_data **code);
@@ -286,17 +283,12 @@ decode_krb5_reply_key_pack_draft9(const krb5_data *,
krb5_reply_key_pack_draft9 **);
krb5_error_code
-decode_krb5_typed_data(const krb5_data *, krb5_typed_data ***);
-
-krb5_error_code
decode_krb5_td_trusted_certifiers(const krb5_data *,
krb5_external_principal_identifier ***);
krb5_error_code
decode_krb5_td_dh_parameters(const krb5_data *, krb5_algorithm_identifier ***);
-void krb5_free_typed_data(krb5_context, krb5_typed_data **);
-
krb5_error_code
encode_krb5_enc_data(const krb5_enc_data *, krb5_data **);