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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llblowfishcipher.cpp
  3.  * @brief Wrapper around OpenSSL Blowfish encryption algorithm.
  4.  *
  5.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2007-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 "llblowfishcipher.h"
  34. #include <openssl/evp.h>
  35. LLBlowfishCipher::LLBlowfishCipher(const U8* secret, size_t secret_size)
  36. : LLCipher()
  37. {
  38. llassert(secret);
  39. mSecretSize = secret_size;
  40. mSecret = new U8[mSecretSize];
  41. memcpy(mSecret, secret, mSecretSize);
  42. }
  43. LLBlowfishCipher::~LLBlowfishCipher()
  44. {
  45. delete [] mSecret;
  46. mSecret = NULL;
  47. }
  48. // virtual
  49. U32 LLBlowfishCipher::encrypt(const U8* src, U32 src_len, U8* dst, U32 dst_len)
  50. {
  51. if (!src || !src_len || !dst || !dst_len) return 0;
  52. if (src_len > dst_len) return 0;
  53. // OpenSSL uses "cipher contexts" to hold encryption parameters.
  54.     EVP_CIPHER_CTX context;
  55.     EVP_CIPHER_CTX_init(&context);
  56. // We want a blowfish cyclic block chain cipher, but need to set 
  57. // the key length before we pass in a key, so call EncryptInit 
  58. // first with NULLs.
  59. EVP_EncryptInit_ex(&context, EVP_bf_cbc(), NULL, NULL, NULL);
  60. EVP_CIPHER_CTX_set_key_length(&context, (int)mSecretSize);
  61. // Complete initialization.  Per EVP_EncryptInit man page, the
  62. // cipher pointer must be NULL.  Apparently initial_vector must
  63. // be 8 bytes for blowfish, as this is the block size.
  64.     unsigned char initial_vector[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
  65. EVP_EncryptInit_ex(&context, NULL, NULL, mSecret, initial_vector);
  66.     int blocksize = EVP_CIPHER_CTX_block_size(&context);
  67.     int keylen = EVP_CIPHER_CTX_key_length(&context);
  68.     int iv_length = EVP_CIPHER_CTX_iv_length(&context);
  69.     lldebugs << "LLBlowfishCipher blocksize " << blocksize
  70. << " keylen " << keylen
  71. << " iv_len " << iv_length
  72. << llendl;
  73. int output_len = 0;
  74. int temp_len = 0;
  75. if (!EVP_EncryptUpdate(&context,
  76. dst,
  77. &output_len,
  78. src,
  79. src_len))
  80. {
  81. llwarns << "LLBlowfishCipher::encrypt EVP_EncryptUpdate failure" << llendl;
  82. goto ERROR;
  83. }
  84. // There may be some final data left to encrypt if the input is
  85. // not an exact multiple of the block size.
  86. if (!EVP_EncryptFinal_ex(&context, (unsigned char*)(dst + output_len), &temp_len))
  87. {
  88. llwarns << "LLBlowfishCipher::encrypt EVP_EncryptFinal failure" << llendl;
  89. goto ERROR;
  90. }
  91. output_len += temp_len;
  92. EVP_CIPHER_CTX_cleanup(&context);
  93. return output_len;
  94. ERROR:
  95. EVP_CIPHER_CTX_cleanup(&context);
  96. return 0;
  97. }
  98. // virtual
  99. U32 LLBlowfishCipher::decrypt(const U8* src, U32 src_len, U8* dst, U32 dst_len)
  100. {
  101. llerrs << "LLBlowfishCipher decrypt unsupported" << llendl;
  102. return 0;
  103. }
  104. // virtual
  105. U32 LLBlowfishCipher::requiredEncryptionSpace(U32 len) const
  106. {
  107. // *HACK: We know blowfish uses an 8 byte block size.
  108. // Oddly, sometimes EVP_Encrypt produces an extra block
  109. // if the input is an exact multiple of the block size.
  110. // So round up.
  111. const U32 BLOCK_SIZE = 8;
  112. len += BLOCK_SIZE;
  113. len -= (len % BLOCK_SIZE);
  114. return len;
  115. }