2 * Copyright (C) 2007 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "private_key.h"
21 bool private_key_equals(private_key_t
*this, private_key_t
*other
)
23 key_encoding_type_t type
;
31 for (type
= 0; type
< KEY_ENCODING_MAX
; type
++)
33 if (this->get_fingerprint(this, type
, &a
) &&
34 other
->get_fingerprint(other
, type
, &b
))
36 return chunk_equals(a
, b
);
45 bool private_key_belongs_to(private_key_t
*private, public_key_t
*public)
47 key_encoding_type_t type
;
50 for (type
= 0; type
< KEY_ENCODING_MAX
; type
++)
52 if (private->get_fingerprint(private, type
, &a
) &&
53 public->get_fingerprint(public, type
, &b
))
55 return chunk_equals(a
, b
);
64 bool private_key_has_fingerprint(private_key_t
*private, chunk_t fingerprint
)
66 key_encoding_type_t type
;
69 for (type
= 0; type
< KEY_ID_MAX
; type
++)
71 if (private->get_fingerprint(private, type
, ¤t
) &&
72 chunk_equals(current
, fingerprint
))