00001 /* 00002 * Copyright (c) 2005-2008 Nominet UK (www.nic.uk) 00003 * All rights reserved. 00004 * Contributors: Ben Laurie, Rachel Willmer. The Contributors have asserted 00005 * their moral rights under the UK Copyright Design and Patents Act 1988 to 00006 * be recorded as the authors of this copyright work. 00007 * 00008 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 00009 * use this file except in compliance with the License. 00010 * 00011 * You may obtain a copy of the License at 00012 * http://www.apache.org/licenses/LICENSE-2.0 00013 * 00014 * Unless required by applicable law or agreed to in writing, software 00015 * distributed under the License is distributed on an "AS IS" BASIS, 00016 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00017 * 00018 * See the License for the specific language governing permissions and 00019 * limitations under the License. 00020 */ 00021 00022 #ifndef __OPS_HASH_H__ 00023 #define __OPS_HASH_H__ 00024 #include "openpgpsdk/packet.h" 00025 00026 void ops_calc_mdc_hash(const unsigned char* preamble, const size_t sz_preamble, const unsigned char* plaintext, const unsigned int sz_plaintext, unsigned char *hashed); 00027 ops_boolean_t ops_is_hash_alg_supported(const ops_hash_algorithm_t *hash_alg); 00028 00029 #endif /*__OPS_HASH_H__*/
1.4.6