/*---------------------------------------------------------------------------* Copyright (C) 2009-2013 Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. *---------------------------------------------------------------------------*/ #ifndef __CERTSTORE_H_ #define __CERTSTORE_H_ #ifdef __cplusplus extern "C" { #endif /* CA certificate groups (to be used when calling NSSLAddServerPKIGroups) */ #define CERTSTORE_ENTITY_GROUP_NINTENDO_CA_CERTS 0x00000001 #define CERTSTORE_ENTITY_GROUP_COMMERCIAL_CA_CERTS 0x00000002 #define CERTSTORE_ENTITY_GROUP_ANY (CERTSTORE_ENTITY_GROUP_NINTENDO_CA_CERTS | CERTSTORE_ENTITY_GROUP_COMMERCIAL_CA_CERTS) typedef int CertstoreEntityId; typedef u32 CertstoreEntityGroups; typedef CertstoreEntityGroups CertstoreEntityGroupMask; #ifdef __cplusplus } #endif #endif