| * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. |
| * Licensed under the OpenSSL license (the "License"). You may not use |
| * this file except in compliance with the License. You can obtain a copy |
| * in the file LICENSE in the source distribution or at |
| * https://www.openssl.org/source/license.html |
| #include "internal/cryptlib.h" |
| #include <openssl/asn1.h> |
| void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x) |
| b = OPENSSL_malloc(i + 10); |
| ASN1err(ASN1_F_ASN1_DUP, ERR_R_MALLOC_FAILURE); |
| * ASN1_ITEM version of dup: this follows the model above except we don't |
| * need to allocate the buffer. At some point this could be rewritten to |
| * directly dup the underlying structure instead of doing and encode and |
| void *ASN1_item_dup(const ASN1_ITEM *it, void *x) |
| i = ASN1_item_i2d(x, &b, it); |
| ASN1err(ASN1_F_ASN1_ITEM_DUP, ERR_R_MALLOC_FAILURE); |
| ret = ASN1_item_d2i(NULL, &p, i, it); |