| OLD | NEW |
| 1 /* ssl/kssl.h -*- mode: C; c-file-style: "eay" -*- */ | 1 /* ssl/kssl.h -*- mode: C; c-file-style: "eay" -*- */ |
| 2 /* Written by Vern Staats <staatsvr@asc.hpc.mil> for the OpenSSL project 2000. | 2 /* Written by Vern Staats <staatsvr@asc.hpc.mil> for the OpenSSL project 2000. |
| 3 * project 2000. | 3 * project 2000. |
| 4 */ | 4 */ |
| 5 /* ==================================================================== | 5 /* ==================================================================== |
| 6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved. | 6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 #endif | 68 #endif |
| 69 | 69 |
| 70 /* Private (internal to OpenSSL) */ | 70 /* Private (internal to OpenSSL) */ |
| 71 void print_krb5_data(char *label, krb5_data *kdata); | 71 void print_krb5_data(char *label, krb5_data *kdata); |
| 72 void print_krb5_authdata(char *label, krb5_authdata **adata); | 72 void print_krb5_authdata(char *label, krb5_authdata **adata); |
| 73 void print_krb5_keyblock(char *label, krb5_keyblock *keyblk); | 73 void print_krb5_keyblock(char *label, krb5_keyblock *keyblk); |
| 74 | 74 |
| 75 char *kstring(char *string); | 75 char *kstring(char *string); |
| 76 char *knumber(int len, krb5_octet *contents); | 76 char *knumber(int len, krb5_octet *contents); |
| 77 | 77 |
| 78 EVP_CIPHER *kssl_map_enc(krb5_enctype enctype); | 78 const EVP_CIPHER *kssl_map_enc(krb5_enctype enctype); |
| 79 | 79 |
| 80 int kssl_keytab_is_available(KSSL_CTX *kssl_ctx); | 80 int kssl_keytab_is_available(KSSL_CTX *kssl_ctx); |
| 81 int kssl_tgt_is_available(KSSL_CTX *kssl_ctx); | 81 int kssl_tgt_is_available(KSSL_CTX *kssl_ctx); |
| 82 | 82 |
| 83 #ifdef __cplusplus | 83 #ifdef __cplusplus |
| 84 } | 84 } |
| 85 #endif | 85 #endif |
| 86 #endif /* OPENSSL_NO_KRB5 */ | 86 #endif /* OPENSSL_NO_KRB5 */ |
| 87 #endif /* KSSL_LCL_H */ | 87 #endif /* KSSL_LCL_H */ |
| OLD | NEW |