1 // Copyright 2014 The BoringSSL Authors 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // https://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 #ifndef OPENSSL_HEADER_CRYPTO_BYTESTRING_INTERNAL_H 16 #define OPENSSL_HEADER_CRYPTO_BYTESTRING_INTERNAL_H 17 18 #include <openssl/base.h> 19 20 #if defined(__cplusplus) 21 extern "C" { 22 #endif 23 24 25 // CBS_asn1_ber_to_der reads a BER element from |in|. If it finds 26 // indefinite-length elements or constructed strings then it converts the BER 27 // data to DER, sets |out| to the converted contents and |*out_storage| to a 28 // buffer which the caller must release with |OPENSSL_free|. Otherwise, it sets 29 // |out| to the original BER element in |in| and |*out_storage| to NULL. 30 // Additionally, |*in| will be advanced over the BER element. 31 // 32 // This function should successfully process any valid BER input, however it 33 // will not convert all of BER's deviations from DER. BER is ambiguous between 34 // implicitly-tagged SEQUENCEs of strings and implicitly-tagged constructed 35 // strings. Implicitly-tagged strings must be parsed with 36 // |CBS_get_ber_implicitly_tagged_string| instead of |CBS_get_asn1|. The caller 37 // must also account for BER variations in the contents of a primitive. 38 // 39 // It returns one on success and zero otherwise. 40 OPENSSL_EXPORT int CBS_asn1_ber_to_der(CBS *in, CBS *out, 41 uint8_t **out_storage); 42 43 // CBS_get_asn1_implicit_string parses a BER string of primitive type 44 // |inner_tag| implicitly-tagged with |outer_tag|. It sets |out| to the 45 // contents. If concatenation was needed, it sets |*out_storage| to a buffer 46 // which the caller must release with |OPENSSL_free|. Otherwise, it sets 47 // |*out_storage| to NULL. 48 // 49 // This function does not parse all of BER. It requires the string be 50 // definite-length. Constructed strings are allowed, but all children of the 51 // outermost element must be primitive. The caller should use 52 // |CBS_asn1_ber_to_der| before running this function. 53 // 54 // It returns one on success and zero otherwise. 55 OPENSSL_EXPORT int CBS_get_asn1_implicit_string(CBS *in, CBS *out, 56 uint8_t **out_storage, 57 CBS_ASN1_TAG outer_tag, 58 CBS_ASN1_TAG inner_tag); 59 60 // CBB_finish_i2d calls |CBB_finish| on |cbb| which must have been initialized 61 // with |CBB_init|. If |outp| is not NULL then the result is written to |*outp| 62 // and |*outp| is advanced just past the output. It returns the number of bytes 63 // in the result, whether written or not, or a negative value on error. On 64 // error, it calls |CBB_cleanup| on |cbb|. 65 // 66 // This function may be used to help implement legacy i2d ASN.1 functions. 67 int CBB_finish_i2d(CBB *cbb, uint8_t **outp); 68 69 70 #if defined(__cplusplus) 71 } // extern C 72 #endif 73 74 #endif // OPENSSL_HEADER_CRYPTO_BYTESTRING_INTERNAL_H 75