mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 08:14:24 +02:00
XMSS-related files get includes.h
This commit is contained in:
parent
612faa34c7
commit
f885474137
@ -393,6 +393,7 @@ AC_CHECK_HEADERS([ \
|
|||||||
sys/bsdtty.h \
|
sys/bsdtty.h \
|
||||||
sys/cdefs.h \
|
sys/cdefs.h \
|
||||||
sys/dir.h \
|
sys/dir.h \
|
||||||
|
sys/file.h \
|
||||||
sys/mman.h \
|
sys/mman.h \
|
||||||
sys/label.h \
|
sys/label.h \
|
||||||
sys/ndir.h \
|
sys/ndir.h \
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
#include "includes.h"
|
||||||
|
|
||||||
#define SSHKEY_INTERNAL
|
#define SSHKEY_INTERNAL
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "includes.h"
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/uio.h>
|
#include <sys/uio.h>
|
||||||
|
|
||||||
@ -31,6 +33,9 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#ifdef HAVE_SYS_FILE_H
|
||||||
|
# include <sys/file.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "ssh2.h"
|
#include "ssh2.h"
|
||||||
#include "ssherr.h"
|
#include "ssherr.h"
|
||||||
|
@ -5,6 +5,8 @@ Joost Rijneveld
|
|||||||
Public domain.
|
Public domain.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "includes.h"
|
||||||
|
|
||||||
#include "xmss_commons.h"
|
#include "xmss_commons.h"
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -24,4 +26,4 @@ void hexdump(const unsigned char *a, size_t len)
|
|||||||
size_t i;
|
size_t i;
|
||||||
for (i = 0; i < len; i++)
|
for (i = 0; i < len; i++)
|
||||||
printf("%02x", a[i]);
|
printf("%02x", a[i]);
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,8 @@ Joost Rijneveld
|
|||||||
Public domain.
|
Public domain.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "includes.h"
|
||||||
|
|
||||||
#include "xmss_fast.h"
|
#include "xmss_fast.h"
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -5,6 +5,8 @@ Joost Rijneveld
|
|||||||
Public domain.
|
Public domain.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "includes.h"
|
||||||
|
|
||||||
#include "xmss_hash_address.h"
|
#include "xmss_hash_address.h"
|
||||||
#include "xmss_commons.h"
|
#include "xmss_commons.h"
|
||||||
#include "xmss_hash.h"
|
#include "xmss_hash.h"
|
||||||
|
@ -4,6 +4,8 @@ Andreas Hülsing
|
|||||||
Joost Rijneveld
|
Joost Rijneveld
|
||||||
Public domain.
|
Public domain.
|
||||||
*/
|
*/
|
||||||
|
#include "includes.h"
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "xmss_hash_address.h" /* prototypes */
|
#include "xmss_hash_address.h" /* prototypes */
|
||||||
|
|
||||||
|
@ -5,6 +5,8 @@ Joost Rijneveld
|
|||||||
Public domain.
|
Public domain.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "includes.h"
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user