comparison rsa.h @ 1036:deed0571cacc

DROPBEAR_ prefix for include guards to avoid collisions
author Thorsten Horstmann <thorsten.horstmann@web.de>
date Tue, 24 Feb 2015 20:43:01 +0800
parents f336d232fc63
children 9da3e7b4fe55
comparison
equal deleted inserted replaced
1022:4121ca987e6a 1036:deed0571cacc
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE. */ 23 * SOFTWARE. */
24 24
25 #ifndef _RSA_H_ 25 #ifndef DROPBEAR_RSA_H_
26 #define _RSA_H_ 26 #define DROPBEAR_RSA_H_
27 27
28 #include "includes.h" 28 #include "includes.h"
29 #include "buffer.h" 29 #include "buffer.h"
30 30
31 #ifdef DROPBEAR_RSA 31 #ifdef DROPBEAR_RSA
53 void buf_put_rsa_priv_key(buffer* buf, dropbear_rsa_key *key); 53 void buf_put_rsa_priv_key(buffer* buf, dropbear_rsa_key *key);
54 void rsa_key_free(dropbear_rsa_key *key); 54 void rsa_key_free(dropbear_rsa_key *key);
55 55
56 #endif /* DROPBEAR_RSA */ 56 #endif /* DROPBEAR_RSA */
57 57
58 #endif /* _RSA_H_ */ 58 #endif /* DROPBEAR_RSA_H_ */