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

Side by Side Diff: net/der/parse_values.h

Issue 1248043002: Add functions for DER parsing a BIT STRING. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address David's comment Created 5 years, 4 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 | « no previous file | net/der/parse_values.cc » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 NET_DER_PARSE_VALUES_H_ 5 #ifndef NET_DER_PARSE_VALUES_H_
6 #define NET_DER_PARSE_VALUES_H_ 6 #define NET_DER_PARSE_VALUES_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "net/base/net_export.h" 9 #include "net/base/net_export.h"
10 #include "net/der/input.h" 10 #include "net/der/input.h"
(...skipping 12 matching lines...) Expand all
23 NET_EXPORT bool ParseBoolRelaxed(const Input& in, bool* out) WARN_UNUSED_RESULT; 23 NET_EXPORT bool ParseBoolRelaxed(const Input& in, bool* out) WARN_UNUSED_RESULT;
24 24
25 // Reads a DER-encoded ASN.1 INTEGER value from |in| and puts the resulting 25 // Reads a DER-encoded ASN.1 INTEGER value from |in| and puts the resulting
26 // value in |out|. ASN.1 INTEGERs are arbitrary precision; this function is 26 // value in |out|. ASN.1 INTEGERs are arbitrary precision; this function is
27 // provided as a convenience when the caller knows that the value is unsigned 27 // provided as a convenience when the caller knows that the value is unsigned
28 // and is between 0 and 2^63-1. This function does not support the full range of 28 // and is between 0 and 2^63-1. This function does not support the full range of
29 // uint64_t. This function returns false if the value is too big to fit in a 29 // uint64_t. This function returns false if the value is too big to fit in a
30 // uint64_t, is negative, or if there is an error reading the integer. 30 // uint64_t, is negative, or if there is an error reading the integer.
31 NET_EXPORT bool ParseUint64(const Input& in, uint64_t* out) WARN_UNUSED_RESULT; 31 NET_EXPORT bool ParseUint64(const Input& in, uint64_t* out) WARN_UNUSED_RESULT;
32 32
33 // Reads a DER-encoded ASN.1 BIT STRING value from |in| and puts the resulting
34 // octet string into |bytes|, and the number of unused bits into |unused_bits|.
35 //
36 // The bits are ordered within each octet of |bytes| from most to
37 // least significant, as in the DER encoding.
38 //
39 // Returns true on success, otherwise returns false and does not modify the
40 // out-parameters.
41 //
42 // On success it can be assumed that:
43 // * |*unused_bits| < 8
44 // * The final byte of |bytes| has its |*unused_bits| least significant bits
45 // set to 0.
46 NET_EXPORT bool ParseBitString(const Input& in,
47 Input* bytes,
48 uint8_t* unused_bits) WARN_UNUSED_RESULT;
49
33 struct GeneralizedTime { 50 struct GeneralizedTime {
34 uint16_t year; 51 uint16_t year;
35 uint8_t month; 52 uint8_t month;
36 uint8_t day; 53 uint8_t day;
37 uint8_t hours; 54 uint8_t hours;
38 uint8_t minutes; 55 uint8_t minutes;
39 uint8_t seconds; 56 uint8_t seconds;
40 }; 57 };
41 58
42 NET_EXPORT_PRIVATE bool operator<(const GeneralizedTime& lhs, 59 NET_EXPORT_PRIVATE bool operator<(const GeneralizedTime& lhs,
(...skipping 17 matching lines...) Expand all
60 // DER rules - it follows the rules from RFC5280, which does not allow for 77 // DER rules - it follows the rules from RFC5280, which does not allow for
61 // fractional seconds. 78 // fractional seconds.
62 NET_EXPORT bool ParseGeneralizedTime(const Input& in, 79 NET_EXPORT bool ParseGeneralizedTime(const Input& in,
63 GeneralizedTime* out) WARN_UNUSED_RESULT; 80 GeneralizedTime* out) WARN_UNUSED_RESULT;
64 81
65 } // namespace der 82 } // namespace der
66 83
67 } // namespace net 84 } // namespace net
68 85
69 #endif // NET_DER_PARSE_VALUES_H_ 86 #endif // NET_DER_PARSE_VALUES_H_
OLDNEW
« no previous file with comments | « no previous file | net/der/parse_values.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698