Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(846)

Side by Side Diff: xfa/fxfa/app/xfa_checksum.cpp

Issue 2383593002: Move xfa/fxfa/include to xfa/fxfa (Closed)
Patch Set: Rebase to master Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/app/cxfa_eventparam.cpp ('k') | xfa/fxfa/app/xfa_ffapp.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "xfa/fxfa/include/xfa_checksum.h" 7 #include "xfa/fxfa/xfa_checksum.h"
8 8
9 #include "core/fdrm/crypto/fx_crypt.h" 9 #include "core/fdrm/crypto/fx_crypt.h"
10 10
11 namespace { 11 namespace {
12 12
13 struct FX_BASE64DATA { 13 struct FX_BASE64DATA {
14 uint32_t data1 : 2; 14 uint32_t data1 : 2;
15 uint32_t data2 : 6; 15 uint32_t data2 : 6;
16 uint32_t data3 : 4; 16 uint32_t data3 : 4;
17 uint32_t data4 : 4; 17 uint32_t data4 : 4;
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 263
264 CFX_ByteString CXFA_ChecksumContext::GetChecksum() const { 264 CFX_ByteString CXFA_ChecksumContext::GetChecksum() const {
265 return m_bsChecksum; 265 return m_bsChecksum;
266 } 266 }
267 267
268 void CXFA_ChecksumContext::Update(const CFX_ByteStringC& bsText) { 268 void CXFA_ChecksumContext::Update(const CFX_ByteStringC& bsText) {
269 if (m_pByteContext) { 269 if (m_pByteContext) {
270 CRYPT_SHA1Update(m_pByteContext, bsText.raw_str(), bsText.GetLength()); 270 CRYPT_SHA1Update(m_pByteContext, bsText.raw_str(), bsText.GetLength());
271 } 271 }
272 } 272 }
OLDNEW
« no previous file with comments | « xfa/fxfa/app/cxfa_eventparam.cpp ('k') | xfa/fxfa/app/xfa_ffapp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698