| Index: base/crypto/signature_verifier_unittest.cc
|
| ===================================================================
|
| --- base/crypto/signature_verifier_unittest.cc (revision 13515)
|
| +++ base/crypto/signature_verifier_unittest.cc (working copy)
|
| @@ -19,8 +19,8 @@
|
| // encoding of the ASN.1 structures.
|
|
|
| // The data that is signed is the following ASN.1 structure:
|
| - // TBSCertificate ::= SEQUENCE {
|
| - // ... -- omitted, not important
|
| + // TBSCertificate ::= SEQUENCE {
|
| + // ... -- omitted, not important
|
| // }
|
| const uint8 tbs_certificate[1017] = {
|
| 0x30, 0x82, 0x03, 0xf5, // a SEQUENCE of length 1013 (0x3f5)
|
| @@ -112,8 +112,8 @@
|
| };
|
|
|
| // The signature algorithm is specified as the following ASN.1 structure:
|
| - // AlgorithmIdentifier ::= SEQUENCE {
|
| - // algorithm OBJECT IDENTIFIER,
|
| + // AlgorithmIdentifier ::= SEQUENCE {
|
| + // algorithm OBJECT IDENTIFIER,
|
| // parameters ANY DEFINED BY algorithm OPTIONAL }
|
| //
|
| const uint8 signature_algorithm[15] = {
|
| @@ -151,8 +151,8 @@
|
| };
|
|
|
| // The public key is specified as the following ASN.1 structure:
|
| - // SubjectPublicKeyInfo ::= SEQUENCE {
|
| - // algorithm AlgorithmIdentifier,
|
| + // SubjectPublicKeyInfo ::= SEQUENCE {
|
| + // algorithm AlgorithmIdentifier,
|
| // subjectPublicKey BIT STRING }
|
| const uint8 public_key_info[294] = {
|
| 0x30, 0x82, 0x01, 0x22, // a SEQUENCE of length 290 (0x122)
|
|
|
| Property changes on: base\crypto\signature_verifier_unittest.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|
|
|