Is this krb5 file infected for things like fishing?

/*
* This file is auto generated. Please do not edit it.
#ifndef __KERBEROS5__
#define __KERBEROS5__
/* This file is generated, please don't edit it directly. */
#ifndef KRB5_KRB5_H_INCLUDED
#define KRB5_KRB5_H_INCLUDED
/* -*- c -*-
* include/krb5.h
* Copyright 1989,1990,1995,2001, 2003, 2007 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.
* General definitions for Kerberos version 5.
* Copyright (C) 1998 by the FundsXpress, INC.
* 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 FundsXpress. not be used in advertising or publicity pertaining
* to distribution of the software without specific, written prior
* permission. FundsXpress makes no representations about the suitability of
* this software for any purpose. It is provided "as is" without express
* or implied warranty.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#ifndef KRB5_GENERAL__
#define KRB5_GENERAL__
/* By default, do not expose deprecated interfaces. */
#ifndef KRB5_DEPRECATED
#define KRB5_DEPRECATED 0
#endif
#if defined(__MACH__) && defined(__APPLE__)
# include <TargetConditionals.h>
# if TARGET_RT_MAC_CFM
# error "Use KfM 4.0 SDK headers for CFM compilation."
# endif
#endif
#if defined(_MSDOS) || defined(_WIN32)
#include <win-mac.h>
#endif
#ifndef KRB5_CONFIG__
#ifndef KRB5_CALLCONV
#define KRB5_CALLCONV
#define KRB5_CALLCONV_C
#endif /* !KRB5_CALLCONV */
#endif /* !KRB5_CONFIG__ */
#ifndef KRB5_CALLCONV_WRONG
#define KRB5_CALLCONV_WRONG
#endif
#ifndef THREEPARAMOPEN
#define THREEPARAMOPEN(x,y,z) open(x,y,z)
#endif
#define KRB5_OLD_CRYPTO
#include <stdlib.h>
#include <limits.h> /* for *_MAX */
#include <stdarg.h>
#ifndef KRB5INT_BEGIN_DECLS
#if defined(__cplusplus)
#define KRB5INT_BEGIN_DECLS extern "C" {
#define KRB5INT_END_DECLS }
#else
#define KRB5INT_BEGIN_DECLS
#define KRB5INT_END_DECLS
#endif
#endif
KRB5INT_BEGIN_DECLS
#if TARGET_OS_MAC
# pragma pack(push,2)
#endif
#if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 30203
# define KRB5_ATTR_DEPRECATED __attribute__((deprecated))
#elif defined _WIN32
# define KRB5_ATTR_DEPRECATED __declspec(deprecated)
#else
# define KRB5_ATTR_DEPRECATED
#endif
/* from profile.h */
struct _profile_t;
/* typedef struct _profile_t *profile_t; */
* begin wordsize.h
* Word-size related definition.
typedef unsigned char krb5_octet;
#if INT_MAX == 0x7fff
typedef int krb5_int16;
typedef unsigned int krb5_ui_2;
#elif SHRT_MAX == 0x7fff
typedef short krb5_int16;
typedef unsigned short krb5_ui_2;
#else
#error undefined 16 bit type
#endif
#if INT_MAX == 0x7fffffffL
typedef int krb5_int32;
typedef unsigned int krb5_ui_4;
#elif LONG_MAX == 0x7fffffffL
typedef long krb5_int32;
typedef unsigned long krb5_ui_4;
#elif SHRT_MAX == 0x7fffffffL
typedef short krb5_int32;
typedef unsigned short krb5_ui_4;
#else
#error: undefined 32 bit type
#endif
#define VALID_INT_BITS INT_MAX
#define VALID_UINT_BITS UINT_MAX
#define KRB5_INT32_MAX 2147483647
/* this strange form is necessary since - is a unary operator, not a sign
indicator */
#define KRB5_INT32_MIN (-KRB5_INT32_MAX-1)
#define KRB5_INT16_MAX 65535
/* this strange form is necessary since - is a unary operator, not a sign
indicator */
#define KRB5_INT16_MIN (-KRB5_INT16_MAX-1)
* end wordsize.h
* begin "base-defs.h"
* Basic definitions for Kerberos V5 library
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
typedef unsigned int krb5_boolean;
typedef unsigned int krb5_msgtype;
typedef unsigned int krb5_kvno;
typedef krb5_int32 krb5_addrtype;
typedef krb5_int32 krb5_enctype;
typedef krb5_int32 krb5_cksumtype;
typedef krb5_int32 krb5_authdatatype;
typedef krb5_int32 krb5_keyusage;
typedef krb5_int32 krb5_preauthtype; /* This may change, later on */
typedef krb5_int32 krb5_flags;
typedef krb5_int32 krb5_timestamp;
typedef krb5_int32 krb5_error_code;
typedef krb5_int32 krb5_deltat;
typedef krb5_error_code krb5_magic;
typedef struct _krb5_data {
krb5_magic magic;
unsigned int length;
char *data;
} krb5_data;
typedef struct _krb5_octet_data {
krb5_magic magic;
unsigned int length;
krb5_octet *data;
} krb5_octet_data;
* Hack length for crypto library to use the afs_string_to_key It is
* equivalent to -1 without possible sign extension
* We also overload for an unset salt type length - which is also -1, but
* hey, why not....
#define SALT_TYPE_AFS_LENGTH UINT_MAX
#define SALT_TYPE_NO_LENGTH UINT_MAX
typedef void * krb5_pointer;
typedef void const * krb5_const_pointer;
typedef struct krb5_principal_data {
krb5_magic magic;
krb5_data realm;
krb5_data *data; /* An array of strings */
krb5_int32 length;
krb5_int32 type;
} krb5_principal_data;
typedef krb5_principal_data * krb5_principal;
* Per V5 spec on definition of principal types
/* Name type not known */
#define KRB5_NT_UNKNOWN 0
/* Just the name of the principal as in DCE, or for users */
#define KRB5_NT_PRINCIPAL 1
/* Service and other unique instance (krbtgt) */
#define KRB5_NT_SRV_INST 2
/* Service with host name as instance (telnet, rcommands) */
#define KRB5_NT_SRV_HST 3
/* Service with host as remaining components */
#define KRB5_NT_SRV_XHST 4
/* Unique ID */
#define KRB5_NT_UID 5
/* PKINIT */
#define KRB5_NT_X500_PRINCIPAL 6
/* Name in form of SMTP email name */
#define KRB5_NT_SMTP_NAME 7
/* Windows 2000 UPN */
#define KRB5_NT_ENTERPRISE_PRINCIPAL 10
/* Windows 2000 UPN and SID */
#define KRB5_NT_MS_PRINCIPAL -128
/* NT 4 style name */
#define KRB5_NT_MS_PRINCIPAL_AND_ID -129
/* NT 4 style name and SID */
#define KRB5_NT_ENT_PRINCIPAL_AND_ID -130
/* constant version thereof: */
typedef const krb5_principal_data *krb5_const_principal;
#define krb5_princ_realm(context, princ) (&(princ)->realm)
#define krb5_princ_set_realm(context, princ,value) ((princ)->realm = *(value))
#define krb5_princ_set_realm_length(context, princ,value) (princ)->realm.length = (value)
#define krb5_princ_set_realm_data(context, princ,value) (princ)->realm.data = (value)
#define krb5_princ_size(context, princ) (princ)->length
#define krb5_princ_type(context, princ) (princ)->type
#define krb5_princ_name(context, princ) (princ)->data
#define krb5_princ_component(context, princ,i) \
(((i) < krb5_princ_size(context, princ)) \
? (princ)->data + (i) \
: NULL)
* Constants for realm referrals.
#define KRB5_REFERRAL_REALM ""
* Referral-specific functions.
krb5_boolean KRB5_CALLCONV krb5_is_referral_realm(const krb5_data *);
* end "base-defs.h"
* begin "hostaddr.h"
*/

Rachel may get back to you next week. Meanwhile I will add some comments.
Firstly even if I understood the code I do not see anywhere in your original post any of the following
#endif \* __KERBEROS5__ */
endif \* __KER
endif \*
#endif /* __KERBEROS5__ */
endif /* __KER
So I am unable to see what you are trying to point out.
*'''You may need to post a correction for one of your posts ?'''
Secondly such discussions would normally be outside the scope of the forum and so it maybe worth asking on some malware or security related forum such as:
* http://www.bleepingcomputer.com/forums/
* http://www.malwarebytes.org/forums/
* http://www.spywarewarrior.com/index.php
* http://www.spywareinfoforum.com/
Or ask on a Mac related site. Surely your OS provides security anyhow. *Why are you needing to try to obtain such a file from the internet ?
As a general uneducated observation. If I see something like that I may wonder
* Is the software I have that generates that file kosher ?
* Could it be obfuscated code ? <br />Or indications that malicious obfuscated code is present somewhere ?
** I am guessing <br />'''/*any text */''' is a remark and not actioned <br /> '''\*''' that the * will act as a delimeter on a single line <br />The latter possibly harmless in in a config file but setting alarm bells off that something may be wrong.
As you have asked the question it would be interesting to know the answer you get.
Background info
* http://en.wikipedia.org/wiki/Kerberos_%28protocol%29
* http://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html
*https://developer.mozilla.org/en-US/docs/Integrated_Authentication

Similar Messages

  • For things like burning dvd's, would the jump...

    For things like burning dvd's, would the jump from 2GHz to 2.26 GHz on the mini make a noticeable difference?

    Use Toast, it makes "Audio DVD's" (which are not the same as the DVD-Audio standard but a huge disk of audio files).
    From their help:
    Making a Music DVD
    A Music DVD can be played in a set-top DVD player or in a Macintosh or a Windows computer with a DVD player. A Music DVD should not be confused with a DVD-Audio disc. DVD-Audio discs require a special DVD player. A Music DVD is a standard DVD that contains music (and can also contain photo slideshows and videos), has full navigation menus for song selection, and can be played in any set-top DVD player.
    A standard Music DVD can contain over 50 hours of music with Dolby Digital sound. If your recorder supports dual-layer recordable DVDs, you can create a Music DVD with over 100 hours of music.

  • HT5622 We are a family of 4, each with their own apple device. Is it best for us to set up individual apple ID's for things like ITunes? If we do can the same e-mail address be used for all of them or do we need to create e-mails for the kids? Thank-you

    We are a family of 4, each with their own apple device. Is it best for us to set up individual apple ID's for things like ITunes? If we do can the same e-mail address be used for all of them or do we need to create e-mails for the kids?
    Thank-you

    1. Yes, it is.
    2. You may be able to use the same address by adding a plussed suffix to it, such as [email protected] If that doesn't work, create separate emails.
    (103279)

  • I recently upgraded to 10.8 from 10.6 and I would like to be able to see the folder/file size for each like in version 10.6

    I recently upgraded to 10.8 from 10.6 and I would like to be able to see the folder/file size for each, like in version 10.6. It used to show the size at the bottom of the "window" for the selected folder,drive etc.

  • Is LabView good at precise motion control for things like running an assembly line with lots of cars moving about?

    Is LabView good at precise motion control for things like running an
    assembly line with lots of cars moving about? Precise speed and
    acceleration control? Safety interlocks?
    Thanks for any help you can offer!
    Sent via Deja.com http://www.deja.com/
    Before you buy.

    If you are a long time Nokia/Symbian fan then you will Know full well that Nokia phones ALWAYS improve with software updates, Symbian will not be abandoned and will not be replaced by WP7, it will continue to evolve and improve, as will the handsets. Anyone who desires or wants a different OS should try one, because it's a free world, but really, the 'perfect' OS doesn't exist, and Symbian suits me for now and I will rely on Nokia to keep it up to date, and reliable.
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • HT1222 How do I increase the total amount of space I have on iPhone for things like iTunes n more music n like MusicTube n YouTube. Thank you in advance for any help that can be given.

    I am running out of usage space. How do I increase the total amount of space I have on my iPhone4S: for things like programs &amp; apps such as, iTunes &amp; more music &amp; like MusicTube &amp; YouTube. The only reason I have any space now is because the music that I had downloaded and synced onto my phone from iTunes I had to take it all off. I would really really love to be able to put my music back onto my iPhone. Currently I'm using apps like Spotify, AOLradio, and MusicTube to listen to music. Thank you so very much in advance for any help that may be given!

    Also to add to my original question: is what I'm asking even a possibility??? Meaning is there even a way to get more usage space? Or do I have to just continue to work within the confines that apple has preset on the phone?

  • Is there an app that allows for things like aperture effects on video recording?

    Title says it all, I'm looking for an app where when video recording on my iPhone, it can focus on me, but blur out the background

    I think it would be easier to buy a post-production app like iMovie, and edit that, then.

  • IPhone 5....how do I turn of the repeat alert tones for things like texts or vm? I only want one alert tone

    Pls help me

    Okay, I have noticed every single highlighted word is a link direct to Ebay. Nowhere else. I wonder how much Ebay paid Apple to do this. Random words scattered throughout the internet, but it seems most prevalent on internet forums. I am feeling pretty annoyed that my iPad has turned itself into a portable advertising campaign for Ebay. The highlighting of random numbers or phrases for maps or as phone numbers continues.

  • Firefox is working fine for things like argos/normal browsing but when we try youtube or stardoll then it says that firefox has a problam and shuts down

    Firefox is working fine but there's a problem with YouTube and stardoll when you access these sites it tells you that there is a problam and firefox shuts down to prevent any damege

    But I can't... find... it... It's not there.
    Unless you're talking about the entire Mozilla Firefox folder (which isn't what the thing you copied says,) there is no installation folder.

  • Can i pay for things like headphones using my itunes cards ?

    hi im wondering if i can use my itunes cards to buy headphones from Apple .

    Greetings,
    Not an iTunes Gift Card I'm afraid:
    "iTunes gift certificates can be used to purchase movies, TV shows, music and music videos, as well as audiobooks from the iTunes Store." http://support.apple.com/kb/HT2737
    For physical items from Apple you would want an "Apple Gift Card" (Which are only for physical items from the Apple Online Store): http://store.apple.com/us/personalize/apple?product=MA210LL/C
    Cheers!

  • Optimum QT file size for web

    I'm new to iMovie 08 and iWeb, publishing to a folder not my iDisk. Is it better to use the Share feature in iMovie, or to export my video files to QT for upload to my site ? If to QT, what's the optimum size for loading and viewing?
    Thanks,
    Bob

    Is it better to use the Share feature in iMovie, or to export my video files to QT for upload to my site ?
    This normally depends on your target file/workflow needs. The "Medium" share option s a good, general purpose setting. It is compatible with QT Pro, iTunes, Front Row, iPhone, iPod, TV, gallery, and iWeb use via high-speed connection. If you want lower data rates, use a phone modem, mono audio, need CD/DVD ROM playback compatibility, or have other special issues, then other "share" pre-sets or export options with user selectable options would be better a better choice.
    If to QT, what's the optimum size for loading and viewing?
    Once again, the is usually a compromise between use requirements, work flow, and the contents itself. As indicated above, a 640 width with appropriate height aspect display is quite common for most uses. I tend to use this for most content that combines action and drama. On the other hand, for things like video tutorials, I would be more likely to use something on the order of a 960x540 at 60-70% of the data rate used for "movie" files. Frankly, ther is an entire range of settings and compromises that can be made between display size, data rates, and content quality which the user normally has to evaluate in order to judge what best for him or her in any particular situation.

  • Using hierarchyial property files definitions for localization

    Hi,
    I am interested in knowing about tools or techniques using which I can establish a hierarchial properties files.
    Eg: I have "Ok" buttons being used all over my application. I want to have a common file that defines the key value pair for OK and not repeat the value in each module specific properties file. Some thing like Java inheritance.
    Appreciate help regarding the same.

    Thanks Gautam for your reply.
    Yes, I have tried. But as I mentioned above ATG DUST provides mechanism for unit testing that does not conform the unit-testing philosophy (yes, it is my IMHO and there probably should holly-war begin :-) ).
    My idea is to create 'pure' unit tests with component properties harcoded in Java class files.
    Edited by: 951305 on 7.8.2012 7.58
    Edited by: 951305 on 7.8.2012 7.59

  • Need File Association for Crystal Reports v.11

    Post Author: pts123
    CA Forum: General
    Policy Accounting is testing a new suspense processing application that relies on Crystal Reports v.11 for report delivery. Currently this report (SUSPENSE_DETAIL_REPORT.rpt) is located in the
    kcsan03\Policy\PortalDocuments\Suspense directory. It is also crawled into the portal in the following location.
    Knowledge Directory : Intranet : Departments : Policy Accounting : Suspense
    However, when a user clicks on the report link, (either in the portal knowledge directory or from the file itself in the
    kcsan03\Policy\PortalDocuments\Suspense directory), Crystal Reports v.7 is launched rather than Crystal Reports v.11.
    Is there a way to get the report to open with Crystal Reports v.11? This appears to be a file association issue and potentially involves all of the users in the SUSProc active directory group.
    The new suspense processing application is currently in test and is scheduled to go live on June 15, 2007. We need to test in the final location (
    kcsan03\Policy\PortalDocuments\Suspense) prior to our go live date. Any assistance in resolving this issue is much appreciated. Becky Clark previously assisted me on other tickets involving the Crystal Reports v.11 application.
    Please let me know if you have any questions or need additional information.

    Hi Mike,
    From CR XI R2 and CR2008 You can export the reports to MS excelt 97-2003 version i.e., 65K records only.
    Using CR2011 and CR2013 You can export the reports to MS Excel 2007 version i.e., Xlsx format.
    Check the below documents for your refernece.
    http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/20c9c239-7b64-2b10-4ab3-b59d52ed35de?QuickLink=index&overridelayout=true&32809255175229
    Tips to Export Crystal Report (.rpt) to Excel
    Limit Export Options in Crystal 2008
    Ludek Excellent Exposer for this:  Export file formats for SAP Crystal Reports for VS 2010, 2012, 2013
    Thanks,
    DJ

  • HT1923 This article contains the only thing that worked for me.  I also had to sign out of iCloud and uninstall it.  Then I had to delete all files and folders from all of those applications that were under Program Files, Program Files x86, and Users.

    This article contains the only thing that worked for me.  I also had to sign out of iCloud and uninstall it.  Then I had to delete all files and folders from all of those applications that were under Program Files, Program Files x86, Program Data and Users.  My iPhone 4 will now sync with iTunes both in its USB-connected  mini dock and over Wi-Fi.  It's unfortunate (negligent programming on the part of Apple?) that the upgrade to iTunes 11 did not remove all of those files as part of the upgrade process. 

    I am having the same issue....Same address for years - same as USPS - I tried 5 times (3 macs and 2 iPhones) and now i have 5 CHARGES for 1.00 each on my credit card. I took the credit card info off so they don't charge me anymore. How can they charge me yet still not allow me to download free updates and say I have an invalid address? I'm sure I will spend weeks or months trying to get a credit out of these incompetent idiots.

  • Constant what has this got to do with readingHow to create some thing like

    Q]     IN  the statement
    SABC_ACT_READ(4)               VALUE 'READ',
    Taken from
    http://help.sap.com/saphelp_46c/helpdata/en/fc/eb3d5c358411d1829f0000e829fbfe/content.htm
    SABC_ACT_READ(4) is a of type C , & has a value “4” –what has this got to do with reading   pls explain.
    Q]     How to create some thing like this (event) of our own like say read all alphabets that have “s”  in their string?

    In order to Use the Function Module 'AUTHORITY_CHECK_DATASET' , you need to Pass the Exporting  Parameter ACTIVITY  with a value like given below.
    ACTIVITY
    Access type, with the following possible values:
    - READ: Read file
    - WRITE: Change file
    - READ_WITH_FILTER: Read file using filter functions
    - WRITE_WITH_FILTER: Change file using filter functions
    - DELETE: Delete file
    These values are defined as constants and one such constant is SABC_ACT_READ with a type char and length 4 with a Value of 'READ' .
    The constant is being used in that Function module to check the READ Authorization of the user for the file specified.
    Hope this helps.
    Vinodh Balakrishnan

Maybe you are looking for

  • Erro no processamento do lote: Código 226.

    Prezados, boa tarde. Estou em ambiente de produção e está dando o seguinte erro no processamento do lote: "Rejeição: Código da UF do Emitente diverge da UF autorizadora" - Código 226. Aparentemente está tudo correto, verifiquei na SPRO do GRC e do EC

  • Revel photos no longer showing in Lightroom 5

    I believe this is the sequence of events, but I may be off unfortunately. I wanted to create a new Revel Library, but I did it incorrectly.  I ended up creating a new collection under one of the Revel libraries.  From LR 5, I tried to delete this col

  • Display SP2010 list items on a non-SP site

    I want to display items from a SharePoint list on an internal non-SP site. This would be read-only access, and the other site doesn't use Windows authentication. For security reasons, I would prefer not to allow anonymous access for anything on the S

  • How can I get my lost iPhone 4 back?

    Hey guys,          MY iPhone 4 has been stolen. Is there any way to get the address of the person having my iPhone via itunes? I had not app 'Find my iPhone'. Please guys, helpme.      Thanks a lot.

  • Problem in finding the link location of a particular address

    hello, i am developing a travelling salesman problem project using oracle 10g utilities and the APRESS book's data. shortly, in the system, the user enters the address info and the application records each address info (when user enters it) to use it