Fork of CyaSSL for my specific settings

Dependents:   CyaSSL_Example

Fork of CyaSSL by wolf SSL

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers misc.h Source File

misc.h

00001 /* misc.h
00002  *
00003  * Copyright (C) 2006-2014 wolfSSL Inc.
00004  *
00005  * This file is part of CyaSSL.
00006  *
00007  * CyaSSL is free software; you can redistribute it and/or modify
00008  * it under the terms of the GNU General Public License as published by
00009  * the Free Software Foundation; either version 2 of the License, or
00010  * (at your option) any later version.
00011  *
00012  * CyaSSL is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU General Public License
00018  * along with this program; if not, write to the Free Software
00019  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
00020  */
00021 
00022 
00023 #ifndef CTAO_CRYPT_MISC_H
00024 #define CTAO_CRYPT_MISC_H
00025 
00026 
00027 #include <cyassl/ctaocrypt/types.h>
00028 
00029 
00030 #ifdef __cplusplus
00031     extern "C" {
00032 #endif
00033 
00034 
00035 #ifdef NO_INLINE
00036 CYASSL_LOCAL
00037 word32 rotlFixed(word32, word32);
00038 CYASSL_LOCAL
00039 word32 rotrFixed(word32, word32);
00040 
00041 CYASSL_LOCAL
00042 word32 ByteReverseWord32(word32);
00043 CYASSL_LOCAL
00044 void   ByteReverseWords(word32*, const word32*, word32);
00045 
00046 CYASSL_LOCAL
00047 void XorWords(word*, const word*, word32);
00048 CYASSL_LOCAL
00049 void xorbuf(void*, const void*, word32);
00050 
00051 #ifdef WORD64_AVAILABLE
00052 CYASSL_LOCAL
00053 word64 rotlFixed64(word64, word64);
00054 CYASSL_LOCAL
00055 word64 rotrFixed64(word64, word64);
00056 
00057 CYASSL_LOCAL
00058 word64 ByteReverseWord64(word64);
00059 CYASSL_LOCAL
00060 void   ByteReverseWords64(word64*, const word64*, word32);
00061 #endif /* WORD64_AVAILABLE */
00062 
00063 #endif /* NO_INLINE */
00064 
00065 
00066 #ifdef __cplusplus
00067     }   /* extern "C" */
00068 #endif
00069 
00070 
00071 #endif /* CTAO_CRYPT_MISC_H */
00072 
00073