Merge "Fix accessing freed memory in X509CertificateStore::Update()" into tizen
[platform/framework/native/appfw.git] / src / security / crypto / FSecCrypto_SkipJackModes.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file        FSecCrypto_SkipJackModes.h
19  * @brief       This header file contains declarations of various block cipher modes of SkipJack encryption and decryption operation (like CBC and ECB modes).
20  */
21 #ifndef _FSEC_CRYPTO_INTERNAL_SKIPJACKMODES_H_
22 #define _FSEC_CRYPTO_INTERNAL_SKIPJACKMODES_H_
23
24 struct evp_cipher_ctx_st;
25
26 namespace Tizen { namespace Security { namespace Crypto
27 {
28
29 class _SkipJackModes
30 {
31
32 public:
33         static int InitCbcKey80(evp_cipher_ctx_st* pCtx, const byte* pKey, const byte* pIv, bool encFlag);
34         static int DoCipherCbc80(evp_cipher_ctx_st* pCtx, byte* pOut, const byte* pIn, int inl);
35         static int InitEcbKey80(evp_cipher_ctx_st* pCtx, const byte* pKey, const byte* pIv, bool encFlag);
36         static int DoCipherEcb80(evp_cipher_ctx_st* pCtx, byte* pOut, const byte* pIn, int inl);
37
38 private:
39         _SkipJackModes(void);
40         _SkipJackModes(const _SkipJackModes& rhs);
41         _SkipJackModes& operator =(const _SkipJackModes& rhs);
42         ~_SkipJackModes(void);
43
44 }; //_SkipJackModes
45
46 } } } //Tizen::Security::Crypto
47
48 #endif //_FSEC_CRYPTO_INTERNAL_SKIPJACKMODES_H_