Add KRB5_CALLCONV decoration where required
[gssweb.git] / json_gssapi / src / commands / GSSGetMic.h
1 /*
2  * Copyright (c) 2014, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #ifndef GSSGETMIC_H
36 #define GSSGETMIC_H
37
38 #include "GSSCommand.h"
39 #include "datamodel/GSSBuffer.h"
40 #include <gssapi/gssapi.h>
41
42 typedef OM_uint32 (KRB5_CALLCONV *gss_get_mic_type) (
43     OM_uint32 *,        /* minor_status */
44     gss_ctx_id_t,       /* context_handle */
45     gss_qop_t,          /* qop_req */
46     gss_buffer_t,       /* message_buffer */
47     gss_buffer_t);      /* message_token */
48
49 class GSSGetMic : public GSSCommand
50 {
51 public:
52     GSSGetMic( gss_get_mic_type fn = &gss_get_mic ) : function(fn) {};
53     GSSGetMic( JSONObject *params, gss_get_mic_type fn = &gss_get_mic);
54     ~GSSGetMic() {};
55     virtual void execute();
56     virtual JSONObject* toJSON();
57     
58     gss_get_mic_type getGSSFunction() const { return(function); }
59
60     // Setters
61     void setQopReq(gss_qop_t req) { this->qop_req = req; }
62     void setInputMessage ( GSSBuffer* input ) { inputMessage.setValue(input->toString()); };
63     void setContextHandle ( gss_ctx_id_t context_handle) { context = context_handle; }
64     
65     // Getters
66     gss_ctx_id_t getContextHandle() const { return(this->context); }
67     gss_qop_t    getQopReq() const { return(this->qop_req); }
68     GSSBuffer    getInputMessage() const { return(this->inputMessage); }
69     GSSBuffer    getOutputToken() const { return(this->outputToken); }
70   
71 private:
72     OM_uint32        retVal;
73     OM_uint32        minor_status;
74
75     gss_get_mic_type function;
76     gss_ctx_id_t     context;
77     gss_qop_t        qop_req;
78     GSSBuffer        inputMessage;
79     GSSBuffer        outputToken;
80     
81     bool loadParameters( JSONObject *params );
82 };
83
84 #endif // GSSGETMIC_H