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

Side by Side Diff: crypto/p224.h

Issue 14272007: Update the remaining include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « crypto/openssl_util.cc ('k') | crypto/p224_spake.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium 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 #ifndef CRYPTO_P224_H_ 5 #ifndef CRYPTO_P224_H_
6 #define CRYPTO_P224_H_ 6 #define CRYPTO_P224_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/string_piece.h" 11 #include "base/strings/string_piece.h"
12 #include "crypto/crypto_export.h" 12 #include "crypto/crypto_export.h"
13 13
14 namespace crypto { 14 namespace crypto {
15 15
16 // P224 implements an elliptic curve group, commonly known as P224 and defined 16 // P224 implements an elliptic curve group, commonly known as P224 and defined
17 // in FIPS 186-3, section D.2.2. 17 // in FIPS 186-3, section D.2.2.
18 namespace p224 { 18 namespace p224 {
19 19
20 // An element of the field (ℤ/pℤ) is represented with 8, 28-bit limbs in 20 // An element of the field (ℤ/pℤ) is represented with 8, 28-bit limbs in
21 // little endian order. 21 // little endian order.
(...skipping 29 matching lines...) Expand all
51 void CRYPTO_EXPORT Add(const Point& a, const Point& b, Point* out); 51 void CRYPTO_EXPORT Add(const Point& a, const Point& b, Point* out);
52 52
53 // Negate calculates out = -a; 53 // Negate calculates out = -a;
54 void CRYPTO_EXPORT Negate(const Point& a, Point* out); 54 void CRYPTO_EXPORT Negate(const Point& a, Point* out);
55 55
56 } // namespace p224 56 } // namespace p224
57 57
58 } // namespace crypto 58 } // namespace crypto
59 59
60 #endif // CRYPTO_P224_H_ 60 #endif // CRYPTO_P224_H_
OLDNEW
« no previous file with comments | « crypto/openssl_util.cc ('k') | crypto/p224_spake.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698