2 * RTMP Diffie-Hellmann utilities
3 * Copyright (c) 2012 Samuel Pitoiset
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #ifndef AVFORMAT_RTMPDH_H
23 #define AVFORMAT_RTMPDH_H
28 #if CONFIG_GMP || CONFIG_GCRYPT
32 typedef mpz_ptr FFBigNum;
36 typedef gcry_mpi_t FFBigNum;
39 typedef struct FF_DH {
48 #include <openssl/bn.h>
49 #include <openssl/dh.h>
51 typedef BIGNUM *FFBigNum;
56 * Initialize a Diffie-Hellmann context.
58 * @param key_len length of the key
59 * @return a new Diffie-Hellmann context on success, NULL otherwise
61 FF_DH *ff_dh_init(int key_len);
64 * Free a Diffie-Hellmann context.
66 * @param dh a Diffie-Hellmann context to free
68 void ff_dh_free(FF_DH *dh);
71 * Generate a public key.
73 * @param dh a Diffie-Hellmann context
74 * @return zero on success, negative value otherwise
76 int ff_dh_generate_public_key(FF_DH *dh);
79 * Write the public key into the given buffer.
81 * @param dh a Diffie-Hellmann context, containing the public key to write
82 * @param pub_key the buffer where the public key is written
83 * @param pub_key_len the length of the buffer
84 * @return zero on success, negative value otherwise
86 int ff_dh_write_public_key(FF_DH *dh, uint8_t *pub_key, int pub_key_len);
89 * Compute the shared secret key from the private FF_DH value and the
90 * other party's public value.
92 * @param dh a Diffie-Hellmann context, containing the private key
93 * @param pub_key the buffer containing the public key
94 * @param pub_key_len the length of the public key buffer
95 * @param secret_key the buffer where the secret key is written
96 * @param secret_key_len the length of the secret key buffer
97 * @return length of the shared secret key on success, negative value otherwise
99 int ff_dh_compute_shared_secret_key(FF_DH *dh, const uint8_t *pub_key,
100 int pub_key_len, uint8_t *secret_key,
103 #endif /* AVFORMAT_RTMPDH_H */