llblowfishcipher.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:2k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llblowfishcipher.h
  3.  * @brief A symmetric block cipher, designed in 1993 by Bruce Schneier.
  4.  * We use it because it has an 8 byte block size, allowing encryption of
  5.  * two UUIDs and a timestamp (16x2 + 4 = 36 bytes) with only 40 bytes of
  6.  * output.  AES has a block size of 32 bytes, so this would require 64 bytes.
  7.  *
  8.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  9.  * 
  10.  * Copyright (c) 2007-2010, Linden Research, Inc.
  11.  * 
  12.  * Second Life Viewer Source Code
  13.  * The source code in this file ("Source Code") is provided by Linden Lab
  14.  * to you under the terms of the GNU General Public License, version 2.0
  15.  * ("GPL"), unless you have obtained a separate licensing agreement
  16.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  17.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  18.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  19.  * 
  20.  * There are special exceptions to the terms and conditions of the GPL as
  21.  * it is applied to this Source Code. View the full text of the exception
  22.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  23.  * online at
  24.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  25.  * 
  26.  * By copying, modifying or distributing this software, you acknowledge
  27.  * that you have read and understood your obligations described above,
  28.  * and agree to abide by those obligations.
  29.  * 
  30.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  31.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  32.  * COMPLETENESS OR PERFORMANCE.
  33.  * $/LicenseInfo$
  34.  */
  35. #ifndef LLBLOWFISHCIPHER_H
  36. #define LLBLOWFISHCIPHER_H
  37. #include "llcipher.h"
  38. class LLBlowfishCipher : public LLCipher
  39. {
  40. public:
  41. // Secret may be up to 56 bytes in length per Blowfish spec.
  42. LLBlowfishCipher(const U8* secret, size_t secret_size);
  43. virtual ~LLBlowfishCipher();
  44. // See llcipher.h for documentation.
  45. /*virtual*/ U32 encrypt(const U8* src, U32 src_len, U8* dst, U32 dst_len);
  46. /*virtual*/ U32 decrypt(const U8* src, U32 src_len, U8* dst, U32 dst_len);
  47. /*virtual*/ U32 requiredEncryptionSpace(U32 src_len) const;
  48. #ifdef _DEBUG
  49. static BOOL testHarness();
  50. #endif
  51. private:
  52. U8* mSecret;
  53. size_t mSecretSize;
  54. };
  55. #endif // LL_LLCRYPTO_H