Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include/openssl
File: mdc2.h
/*
[0] Fix | Delete
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
[1] Fix | Delete
*
[2] Fix | Delete
* Licensed under the OpenSSL license (the "License"). You may not use
[3] Fix | Delete
* this file except in compliance with the License. You can obtain a copy
[4] Fix | Delete
* in the file LICENSE in the source distribution or at
[5] Fix | Delete
* https://www.openssl.org/source/license.html
[6] Fix | Delete
*/
[7] Fix | Delete
[8] Fix | Delete
#ifndef HEADER_MDC2_H
[9] Fix | Delete
# define HEADER_MDC2_H
[10] Fix | Delete
[11] Fix | Delete
# include <openssl/opensslconf.h>
[12] Fix | Delete
[13] Fix | Delete
#ifndef OPENSSL_NO_MDC2
[14] Fix | Delete
# include <stdlib.h>
[15] Fix | Delete
# include <openssl/des.h>
[16] Fix | Delete
# ifdef __cplusplus
[17] Fix | Delete
extern "C" {
[18] Fix | Delete
# endif
[19] Fix | Delete
[20] Fix | Delete
# define MDC2_BLOCK 8
[21] Fix | Delete
# define MDC2_DIGEST_LENGTH 16
[22] Fix | Delete
[23] Fix | Delete
typedef struct mdc2_ctx_st {
[24] Fix | Delete
unsigned int num;
[25] Fix | Delete
unsigned char data[MDC2_BLOCK];
[26] Fix | Delete
DES_cblock h, hh;
[27] Fix | Delete
int pad_type; /* either 1 or 2, default 1 */
[28] Fix | Delete
} MDC2_CTX;
[29] Fix | Delete
[30] Fix | Delete
int MDC2_Init(MDC2_CTX *c);
[31] Fix | Delete
int MDC2_Update(MDC2_CTX *c, const unsigned char *data, size_t len);
[32] Fix | Delete
int MDC2_Final(unsigned char *md, MDC2_CTX *c);
[33] Fix | Delete
unsigned char *MDC2(const unsigned char *d, size_t n, unsigned char *md);
[34] Fix | Delete
[35] Fix | Delete
# ifdef __cplusplus
[36] Fix | Delete
}
[37] Fix | Delete
# endif
[38] Fix | Delete
# endif
[39] Fix | Delete
[40] Fix | Delete
#endif
[41] Fix | Delete
[42] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function