Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 2 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 5 | * Macros for storing and retrieving data in msb first and lsb first order. |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 6 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 7 | * As far as I am concerned, the code I have written for this software |
| 8 | * can be used freely for any purpose. Any derived versions of this |
| 9 | * software must be clearly marked as such, and if the derived work is |
| 10 | * incompatible with the protocol description in the RFC file, it must be |
| 11 | * called by a name other than "ssh" or "Secure Shell". |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 12 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 13 | |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 14 | /* RCSID("$OpenBSD: getput.h,v 1.5 2000/09/07 20:27:51 deraadt Exp $"); */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 15 | |
| 16 | #ifndef GETPUT_H |
| 17 | #define GETPUT_H |
| 18 | |
| 19 | /*------------ macros for storing/extracting msb first words -------------*/ |
| 20 | |
| 21 | #define GET_32BIT(cp) (((unsigned long)(unsigned char)(cp)[0] << 24) | \ |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 22 | ((unsigned long)(unsigned char)(cp)[1] << 16) | \ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 23 | ((unsigned long)(unsigned char)(cp)[2] << 8) | \ |
| 24 | ((unsigned long)(unsigned char)(cp)[3])) |
| 25 | |
| 26 | #define GET_16BIT(cp) (((unsigned long)(unsigned char)(cp)[0] << 8) | \ |
| 27 | ((unsigned long)(unsigned char)(cp)[1])) |
| 28 | |
| 29 | #define PUT_32BIT(cp, value) do { \ |
| 30 | (cp)[0] = (value) >> 24; \ |
| 31 | (cp)[1] = (value) >> 16; \ |
| 32 | (cp)[2] = (value) >> 8; \ |
| 33 | (cp)[3] = (value); } while (0) |
| 34 | |
| 35 | #define PUT_16BIT(cp, value) do { \ |
| 36 | (cp)[0] = (value) >> 8; \ |
| 37 | (cp)[1] = (value); } while (0) |
| 38 | |
| 39 | /*------------ macros for storing/extracting lsb first words -------------*/ |
| 40 | |
| 41 | #define GET_32BIT_LSB_FIRST(cp) \ |
| 42 | (((unsigned long)(unsigned char)(cp)[0]) | \ |
| 43 | ((unsigned long)(unsigned char)(cp)[1] << 8) | \ |
| 44 | ((unsigned long)(unsigned char)(cp)[2] << 16) | \ |
| 45 | ((unsigned long)(unsigned char)(cp)[3] << 24)) |
| 46 | |
| 47 | #define GET_16BIT_LSB_FIRST(cp) \ |
| 48 | (((unsigned long)(unsigned char)(cp)[0]) | \ |
| 49 | ((unsigned long)(unsigned char)(cp)[1] << 8)) |
| 50 | |
| 51 | #define PUT_32BIT_LSB_FIRST(cp, value) do { \ |
| 52 | (cp)[0] = (value); \ |
| 53 | (cp)[1] = (value) >> 8; \ |
| 54 | (cp)[2] = (value) >> 16; \ |
| 55 | (cp)[3] = (value) >> 24; } while (0) |
| 56 | |
| 57 | #define PUT_16BIT_LSB_FIRST(cp, value) do { \ |
| 58 | (cp)[0] = (value); \ |
| 59 | (cp)[1] = (value) >> 8; } while (0) |
| 60 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 61 | #endif /* GETPUT_H */ |