Lines Matching defs:out
918 int i2d_ECPKParameters(const EC_GROUP *a, unsigned char **out)
926 if ((ret = i2d_ECPKPARAMETERS(tmp, out)) == 0) {
1021 int i2d_ECPrivateKey(const EC_KEY *a, unsigned char **out)
1081 if ((ret = i2d_EC_PRIVATEKEY(priv_key, out)) == 0) {
1093 int i2d_ECParameters(const EC_KEY *a, unsigned char **out)
1099 return i2d_ECPKParameters(a->group, out);
1159 int i2o_ECPublicKey(const EC_KEY *a, unsigned char **out)
1172 if (out == NULL || buf_len == 0)
1173 /* out == NULL => just return the length of the octet string */
1176 if (*out == NULL) {
1177 if ((*out = OPENSSL_malloc(buf_len)) == NULL) {
1184 *out, buf_len, NULL)) {
1187 OPENSSL_free(*out);
1188 *out = NULL;
1193 *out += buf_len;