/*---------------------------------------------------------------------------* Project: Horizon File: crypto_AesCtrContextBase.h Copyright 2009 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. $Date:: 2010-06-29 #$ $Rev: 19400 $ $Author: takiguchi_shinichi $ *---------------------------------------------------------------------------*/ #ifndef NN_CRYPTO_CRYPTO_AESCTRCONTEXTBASE_H_ #define NN_CRYPTO_CRYPTO_AESCTRCONTEXTBASE_H_ #include #include #include #ifdef __cplusplus namespace nn{ namespace crypto{ /*! @brief AES-CTR コンテキストオブジェクトの基底クラスです。 このクラスを直接インスタンス化することはできません。 継承先のクラスを使用してください。 */ class AesCtrContextBase : public AesContextBase { public: virtual const bit32* GetIv() const = 0; protected: // 単独インスタンス化の禁止 AesCtrContextBase() {} ~AesCtrContextBase() {} }; }} // namespace nn::crypto #endif // __cplusplus #endif /* NN_CRYPTO_CRYPTO_AESCTRCONTEXTBASE_H_ */