Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/bind9/isc
File: aes.h
/*
[0] Fix | Delete
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
[1] Fix | Delete
*
[2] Fix | Delete
* This Source Code Form is subject to the terms of the Mozilla Public
[3] Fix | Delete
* License, v. 2.0. If a copy of the MPL was not distributed with this
[4] Fix | Delete
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
[5] Fix | Delete
*
[6] Fix | Delete
* See the COPYRIGHT file distributed with this work for additional
[7] Fix | Delete
* information regarding copyright ownership.
[8] Fix | Delete
*/
[9] Fix | Delete
[10] Fix | Delete
[11] Fix | Delete
/*! \file isc/aes.h */
[12] Fix | Delete
[13] Fix | Delete
#ifndef ISC_AES_H
[14] Fix | Delete
#define ISC_AES_H 1
[15] Fix | Delete
[16] Fix | Delete
#include <isc/lang.h>
[17] Fix | Delete
#include <isc/platform.h>
[18] Fix | Delete
#include <isc/types.h>
[19] Fix | Delete
[20] Fix | Delete
#define ISC_AES128_KEYLENGTH 16U
[21] Fix | Delete
#define ISC_AES192_KEYLENGTH 24U
[22] Fix | Delete
#define ISC_AES256_KEYLENGTH 32U
[23] Fix | Delete
#define ISC_AES_BLOCK_LENGTH 16U
[24] Fix | Delete
[25] Fix | Delete
#ifdef ISC_PLATFORM_WANTAES
[26] Fix | Delete
[27] Fix | Delete
ISC_LANG_BEGINDECLS
[28] Fix | Delete
[29] Fix | Delete
void
[30] Fix | Delete
isc_aes128_crypt(const unsigned char *key, const unsigned char *in,
[31] Fix | Delete
unsigned char *out);
[32] Fix | Delete
[33] Fix | Delete
void
[34] Fix | Delete
isc_aes192_crypt(const unsigned char *key, const unsigned char *in,
[35] Fix | Delete
unsigned char *out);
[36] Fix | Delete
[37] Fix | Delete
void
[38] Fix | Delete
isc_aes256_crypt(const unsigned char *key, const unsigned char *in,
[39] Fix | Delete
unsigned char *out);
[40] Fix | Delete
[41] Fix | Delete
ISC_LANG_ENDDECLS
[42] Fix | Delete
[43] Fix | Delete
#endif /* ISC_PLATFORM_WANTAES */
[44] Fix | Delete
[45] Fix | Delete
#endif /* ISC_AES_H */
[46] Fix | Delete
[47] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function