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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llxorcipher.cpp
  3.  * @brief Implementation of LLXORCipher
  4.  *
  5.  * $LicenseInfo:firstyear=2003&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2003-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "linden_common.h"
  33. #include "llxorcipher.h"
  34. #include "llerror.h"
  35. ///----------------------------------------------------------------------------
  36. /// Class LLXORCipher
  37. ///----------------------------------------------------------------------------
  38. LLXORCipher::LLXORCipher(const U8* pad, U32 pad_len) :
  39. mPad(NULL),
  40. mHead(NULL),
  41. mPadLen(0)
  42. {
  43. init(pad, pad_len);
  44. }
  45. // Destroys the object
  46. LLXORCipher::~LLXORCipher()
  47. {
  48. init(NULL, 0);
  49. }
  50. LLXORCipher::LLXORCipher(const LLXORCipher& cipher) :
  51. mPad(NULL),
  52. mHead(NULL),
  53. mPadLen(0)
  54. {
  55. init(cipher.mPad, cipher.mPadLen);
  56. }
  57. LLXORCipher& LLXORCipher::operator=(const LLXORCipher& cipher)
  58. {
  59. if(this == &cipher) return *this;
  60. init(cipher.mPad, cipher.mPadLen);
  61. return *this;
  62. }
  63. U32 LLXORCipher::encrypt(const U8* src, U32 src_len, U8* dst, U32 dst_len)
  64. {
  65. if(!src || !src_len || !dst || !dst_len || !mPad) return 0;
  66. U8* pad_end = mPad + mPadLen;
  67. U32 count = src_len;
  68. while(count--)
  69. {
  70. *dst++ = *src++ ^ *mHead++;
  71. if(mHead >= pad_end) mHead = mPad;
  72. }
  73. return src_len;
  74. }
  75. U32 LLXORCipher::decrypt(const U8* src, U32 src_len, U8* dst, U32 dst_len)
  76. {
  77. // xor is a symetric cipher, thus, just call the other function.
  78. return encrypt(src, src_len, dst, dst_len);
  79. }
  80. U32 LLXORCipher::requiredEncryptionSpace(U32 len) const
  81. {
  82. return len;
  83. }
  84. void LLXORCipher::init(const U8* pad, U32 pad_len)
  85. {
  86. if(mPad)
  87. {
  88. delete [] mPad;
  89. mPad = NULL;
  90. mPadLen = 0;
  91. }
  92. if(pad && pad_len)
  93. {
  94. mPadLen = pad_len;
  95. mPad = new U8[mPadLen];
  96. if (mPad != NULL)
  97. {
  98. memcpy(mPad, pad, mPadLen); /* Flawfinder : ignore */
  99. }
  100. }
  101. mHead = mPad;
  102. }
  103. #ifdef _DEBUG
  104. // static
  105. BOOL LLXORCipher::testHarness()
  106. {
  107. const U32 PAD_LEN = 3;
  108. const U8 PAD[] = "abc";
  109. const S32 MSG_LENGTH = 12;
  110. const char MESSAGE[MSG_LENGTH+1] = "gesundheight"; /* Flawfinder : ignore */
  111. U8 encrypted[MSG_LENGTH];
  112. U8 decrypted[MSG_LENGTH];
  113. LLXORCipher cipher(PAD, PAD_LEN);
  114. cipher.encrypt((U8*)MESSAGE, MSG_LENGTH, encrypted, MSG_LENGTH);
  115. cipher.decrypt(encrypted, MSG_LENGTH, decrypted, MSG_LENGTH);
  116. if(0 != memcmp((void*)MESSAGE, decrypted, MSG_LENGTH)) return FALSE;
  117. return TRUE;
  118. }
  119. #endif