1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2<!--========================================================================== 3 Copyright 2008 Nintendo. All rights reserved. 4 5 These coded instructions, statements, and computer programs contain 6 proprietary information of Nintendo of America Inc. and/or Nintendo 7 Company Ltd., and are protected by Federal copyright law. They may 8 not be disclosed to third parties or copied or duplicated in any form, 9 in whole or in part, without the prior written consent of Nintendo. 10 ==========================================================================--> 11<HTML> 12<HEAD> 13 <META http-equiv="Content-Type" content="text/html; charset=windows-1252"> 14 <META http-equiv="Content-Style-Type" content="text/css"> 15 <TITLE>CRYPTORSAContext</TITLE> 16 <LINK rel="stylesheet" href="../../css/nitro.css"> 17 <BASE target="main"> 18</HEAD> 19<BODY> 20<H1>CRYPTORSAContext</H1> 21 22<H2>Definition</H2> 23<DL> 24 <DD> 25 <PRE><CODE> 26#include <nitro/crypto.h> 27 28#define CRYPTO_RSA_CONTEXT_SIZE 4 29 30typedef struct CRYPTORSAContext 31{ 32 u8 mem[CRYPTO_RSA_CONTEXT_SIZE]; 33} 34CRYPTORSAContext; 35 </CODE></PRE> 36 </DD> 37</DL> 38 39<H2>Elements</H2> 40<TABLE border="1"> 41 <TBODY> 42 <TR> 43 <TD width="25%"><EM><STRONG><CODE>mem</CODE></STRONG></EM></TD> 44 <TD width="75%">Used internally</TD> 45 </TR> 46 </TBODY> 47</TABLE> 48 49<H2>Description</H2> 50<P> 51 This is the area used internally by the CRYPTO library (RSA).<BR> 52 The application does not have to set a value for the member. 53</P> 54 55<H2>Revision History</H2> 56<P> 57 2008/03/27 Initial version. 58</P> 59 60<hr><p>CONFIDENTIAL</p></body> 61</HTML> 62