Added missing declarations, removed duplicate ones
authorTheodore Tso <tytso@mit.edu>
Wed, 22 Feb 1995 01:12:38 +0000 (01:12 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 22 Feb 1995 01:12:38 +0000 (01:12 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4969 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/asn.1/ChangeLog
src/lib/krb5/asn.1/asn1_k_decode.h
src/lib/krb5/asn.1/asn1_k_encode.h

index fe4e331f7ef032057852767230f5c19d3f737e22..ccbbdeb80903cf5ab7b458a1c71769e2c8a72357 100644 (file)
@@ -1,3 +1,17 @@
+Tue Feb 21 20:11:30 1995  Theodore Y. Ts'o  (tytso@dcl)
+
+       * asn1_k_decode.h(asn1_decode_kvno, asn1_decode_krb_safe_body):
+               Removed duplicate declarations.
+
+       * asn1_k_decode.h(asn1_decode_passwdsequence, 
+               asn1_decode_sequence_of_passwdsequence): Added missing
+               declarations.
+
+Thu Feb 16 19:29:59 1995  Theodore Y. Ts'o  (tytso@dcl)
+
+       * asn1_k_encode.h(asn1_encode_enc_kdc_rep_part): Remove duplicate
+               declaration of asn1_encode_enc_kdc_rep_part.
+
 Fri Feb 10 15:30:45 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * asn1_k_encode.c: Remove #include of krb5_encode.h (it's not
index 2fc2f65c208d06b779bb427d95826bf530d33ab2..d6f8ec9e0d074bf589532bb2c10ff6170bc4ce4f 100644 (file)
@@ -78,8 +78,6 @@ asn1_error_code asn1_decode_cksumtype
        PROTOTYPE((asn1buf *buf, krb5_cksumtype *val));
 asn1_error_code asn1_decode_enctype
        PROTOTYPE((asn1buf *buf, krb5_enctype *val));
-asn1_error_code asn1_decode_kvno
-       PROTOTYPE((asn1buf *buf, krb5_kvno *val));
 asn1_error_code asn1_decode_octet
        PROTOTYPE((asn1buf *buf, krb5_octet *val));
 asn1_error_code asn1_decode_addrtype
@@ -128,8 +126,6 @@ asn1_error_code asn1_decode_host_address
        PROTOTYPE((asn1buf *buf, krb5_address *val));
 asn1_error_code asn1_decode_kdc_rep
        PROTOTYPE((asn1buf *buf, krb5_kdc_rep *val));
-asn1_error_code asn1_decode_krb_safe_body
-       PROTOTYPE((asn1buf *buf, krb5_safe *val));
 asn1_error_code asn1_decode_last_req_entry
        PROTOTYPE((asn1buf *buf, krb5_last_req_entry *val));
 asn1_error_code asn1_decode_authdata_elt
@@ -139,6 +135,9 @@ asn1_error_code asn1_decode_krb_cred_info
 asn1_error_code asn1_decode_pa_data
        PROTOTYPE((asn1buf *buf, krb5_pa_data *val));
 
+asn1_error_code asn1_decode_passwdsequence
+       PROTOTYPE((asn1buf *buf, passwd_phrase_element *val));
+
 /* arrays */
 asn1_error_code asn1_decode_authorization_data
        PROTOTYPE((asn1buf *buf, krb5_authdata ***val));
@@ -156,4 +155,8 @@ asn1_error_code asn1_decode_last_req
 asn1_error_code asn1_decode_sequence_of_enctype
        PROTOTYPE((asn1buf *buf, int *num, krb5_enctype **val));
 
+asn1_error_code asn1_decode_sequence_of_passwdsequence
+       PROTOTYPE((asn1buf *buf, passwd_phrase_element ***val));
+
+
 #endif
index 357c9e39e7d892a8f956f30220ec4a525ea852e7..070dcb90e6522100470e93f18137dc771e2756a0 100644 (file)
@@ -48,7 +48,6 @@
     asn1_encode_authorization_data
     asn1_encode_krb5_authdata_elt
     asn1_encode_kdc_rep
-    asn1_encode_enc_kdc_rep_part
     asn1_encode_ticket
     asn1_encode_encryption_key
     asn1_encode_checksum
@@ -171,10 +170,6 @@ asn1_error_code asn1_encode_last_req
        PROTOTYPE((asn1buf *buf, const krb5_last_req_entry **val,
                   int *retlen));
 
-asn1_error_code asn1_encode_enc_kdc_rep_part
-       PROTOTYPE((asn1buf *buf, const krb5_enc_kdc_rep_part *val,
-                  int *retlen));
-
 asn1_error_code asn1_encode_sequence_of_pa_data
        PROTOTYPE((asn1buf *buf, const krb5_pa_data **val, int *retlen));