?lang_form? ?lang_select? ?lang_submit? ?lang_endform?
{HEADER END}
{BLAME START}

library

?curdirlinks? -

Blame information for rev 32

Line No. Rev Author Line
1 32 kaklik /*********************************************************************
2 *
3 * RSA Algorithm Public Key Decryption Library
4 * Library for Microchip TCP/IP Stack
5 * - Provides RSA private key decryption capabilities
6 * - Reference: PKCS #1
7 *
8 *********************************************************************
9 * FileName: RSA.c
10 * Dependencies: BigInt.c, CustomSSLCert.c
11 * Processor: PIC18, PIC24F, PIC24H, dsPIC30F, dsPIC33F, PIC32
12 * Compiler: Microchip C32 v1.05 or higher
13 * Microchip C30 v3.12 or higher
14 * Microchip C18 v3.30 or higher
15 * Company: Microchip Technology, Inc.
16 *
17 * Software License Agreement
18 *
19 * Copyright (C) 2002-2009 Microchip Technology Inc. All rights
20 * reserved.
21 *
22 * Microchip licenses to you the right to use, modify, copy, and
23 * distribute:
24 * (i) the Software when embedded on a Microchip microcontroller or
25 * digital signal controller product ("Device") which is
26 * integrated into Licensee's product; or
27 * (ii) ONLY the Software driver source files ENC28J60.c, ENC28J60.h,
28 * ENCX24J600.c and ENCX24J600.h ported to a non-Microchip device
29 * used in conjunction with a Microchip ethernet controller for
30 * the sole purpose of interfacing with the ethernet controller.
31 *
32 * You should refer to the license agreement accompanying this
33 * Software for additional information regarding your rights and
34 * obligations.
35 *
36 * THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT
37 * WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT
38 * LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A
39 * PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
40 * MICROCHIP BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR
41 * CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF
42 * PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS
43 * BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE
44 * THEREOF), ANY CLAIMS FOR INDEMNITY OR CONTRIBUTION, OR OTHER
45 * SIMILAR COSTS, WHETHER ASSERTED ON THE BASIS OF CONTRACT, TORT
46 * (INCLUDING NEGLIGENCE), BREACH OF WARRANTY, OR OTHERWISE.
47 *
48 * IMPORTANT: The implementation and use of third party algorithms,
49 * specifications and/or other technology may require a license from
50 * various third parties. It is your responsibility to obtain
51 * information regarding any applicable licensing obligations.
52 *
53 *
54 * Author Date Comment
55 *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
56 * Elliott Wood 6/20/07 Original
57 * Elliott Wood 10/15/07 Modified API to support both ops
58 ********************************************************************/
59 #define __RSA_C
60  
61 #include "TCPIPConfig.h"
62 #include "HardwareProfile.h"
63  
64 #if (defined(STACK_USE_SSL_SERVER) || defined(STACK_USE_SSL_CLIENT)) && !defined(ENC100_INTERFACE_MODE)
65  
66 // To comply with US Export Control restrictions, the encryption
67 // portion of the SSL module must be obtained separately from
68 // Microchip. The library of Data Encryption Routines (SW300052) is
69 // available for a nominal fee from www.microchipdirect.com.
70 #error RSA encryption module requires SW300052 from www.microchipdirect.com
71  
72 #endif// #if (defined(STACK_USE_SSL_SERVER) || defined(STACK_USE_SSL_CLIENT)) && !defined(ENC100_INTERFACE_MODE)
{BLAME END}
{FOOTER START}

Powered by WebSVN v2.8.3