~ubuntu-branches/ubuntu/vivid/freerdp/vivid

« back to all changes in this revision

Viewing changes to libfreerdp/primitives/prim_sign.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2014-11-11 12:20:50 UTC
  • mfrom: (1.2.5)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20141111122050-7z628f4ab38qxad5
Tags: upstream-1.1.0~git20140921.1.440916e+dfsg1
ImportĀ upstreamĀ versionĀ 1.1.0~git20140921.1.440916e+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* FreeRDP: A Remote Desktop Protocol Client
 
2
 * Sign operations.
 
3
 * vi:ts=4 sw=4
 
4
 *
 
5
 * (c) Copyright 2012 Hewlett-Packard Development Company, L.P.
 
6
 * Licensed under the Apache License, Version 2.0 (the "License"); you may
 
7
 * not use this file except in compliance with the License. You may obtain
 
8
 * a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
 
9
 * Unless required by applicable law or agreed to in writing, software
 
10
 * distributed under the License is distributed on an "AS IS" BASIS,
 
11
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 
12
 * or implied. See the License for the specific language governing
 
13
 * permissions and limitations under the License.  Algorithms used by
 
14
 * this code may be covered by patents by HP, Microsoft, or other parties.
 
15
 *
 
16
 */
 
17
 
 
18
#ifdef __GNUC__
 
19
# pragma once
 
20
#endif
 
21
 
 
22
#ifndef __PRIM_SIGN_H_INCLUDED__
 
23
#define __PRIM_SIGN_H_INCLUDED__
 
24
 
 
25
pstatus_t general_sign_16s(const INT16 *pSrc, INT16 *pDst, INT32 len);
 
26
 
 
27
void primitives_init_sign_opt(primitives_t *prims);
 
28
 
 
29
#endif /* !__PRIM_SIGN_H_INCLUDED__ */
 
30