~ubuntu-branches/ubuntu/precise/krb5/precise-updates

« back to all changes in this revision

Viewing changes to src/lib/gssapi/krb5/verify.c

  • Committer: Package Import Robot
  • Author(s): Sam Hartman
  • Date: 2011-12-01 19:34:41 UTC
  • mfrom: (28.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20111201193441-9tipg3aru1jsidyv
Tags: 1.10+dfsg~alpha1-6
* Fix segfault with unknown hostnames in krb5_sname_to_principal,
  Closes: #650671
* Indicate that this library breaks libsmbclient versions that depend on
  krb5_locate_kdc, Closes: #650603, #650611

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2
 
/*
3
 
 * Copyright 1993 by OpenVision Technologies, Inc.
4
 
 *
5
 
 * Permission to use, copy, modify, distribute, and sell this software
6
 
 * and its documentation for any purpose is hereby granted without fee,
7
 
 * provided that the above copyright notice appears in all copies and
8
 
 * that both that copyright notice and this permission notice appear in
9
 
 * supporting documentation, and that the name of OpenVision not be used
10
 
 * in advertising or publicity pertaining to distribution of the software
11
 
 * without specific, written prior permission. OpenVision makes no
12
 
 * representations about the suitability of this software for any
13
 
 * purpose.  It is provided "as is" without express or implied warranty.
14
 
 *
15
 
 * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16
 
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17
 
 * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18
 
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
19
 
 * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
20
 
 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
21
 
 * PERFORMANCE OF THIS SOFTWARE.
22
 
 */
23
 
 
24
 
#include "gssapiP_krb5.h"
25
 
 
26
 
/*
27
 
 * $Id: verify.c 23457 2009-12-08 00:04:48Z tlyu $
28
 
 */
29
 
 
30
 
/* V2 interface */
31
 
OM_uint32
32
 
krb5_gss_verify_mic(minor_status, context_handle,
33
 
                    message_buffer, token_buffer,
34
 
                    qop_state)
35
 
    OM_uint32           *minor_status;
36
 
    gss_ctx_id_t        context_handle;
37
 
    gss_buffer_t        message_buffer;
38
 
    gss_buffer_t        token_buffer;
39
 
    gss_qop_t           *qop_state;
40
 
{
41
 
    OM_uint32           rstat;
42
 
 
43
 
    rstat = kg_unseal(minor_status, context_handle,
44
 
                      token_buffer, message_buffer,
45
 
                      NULL, qop_state, KG_TOK_MIC_MSG);
46
 
    return(rstat);
47
 
}
48
 
 
49
 
#if 0
50
 
OM_uint32
51
 
krb5_gss_verify_mic_iov(OM_uint32 *minor_status,
52
 
                        gss_ctx_id_t context_handle,
53
 
                        gss_qop_t *qop_state,
54
 
                        gss_iov_buffer_desc *iov,
55
 
                        int iov_count)
56
 
{
57
 
    OM_uint32 major_status;
58
 
 
59
 
    major_status = kg_unseal_iov(minor_status, context_handle,
60
 
                                 NULL, qop_state,
61
 
                                 iov, iov_count, KG_TOK_WRAP_MSG);
62
 
 
63
 
    return major_status;
64
 
}
65
 
#endif