Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 1 | /* |
| 2 | ** Routines to represent binary data in ASCII and vice-versa |
| 3 | ** |
| 4 | ** This module currently supports the following encodings: |
| 5 | ** uuencode: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 6 | ** each line encodes 45 bytes (except possibly the last) |
| 7 | ** First char encodes (binary) length, rest data |
| 8 | ** each char encodes 6 bits, as follows: |
| 9 | ** binary: 01234567 abcdefgh ijklmnop |
| 10 | ** ascii: 012345 67abcd efghij klmnop |
| 11 | ** ASCII encoding method is "excess-space": 000000 is encoded as ' ', etc. |
| 12 | ** short binary data is zero-extended (so the bits are always in the |
| 13 | ** right place), this does *not* reflect in the length. |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 14 | ** base64: |
| 15 | ** Line breaks are insignificant, but lines are at most 76 chars |
| 16 | ** each char encodes 6 bits, in similar order as uucode/hqx. Encoding |
| 17 | ** is done via a table. |
| 18 | ** Short binary data is filled (in ASCII) with '='. |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 19 | ** hqx: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 20 | ** File starts with introductory text, real data starts and ends |
| 21 | ** with colons. |
| 22 | ** Data consists of three similar parts: info, datafork, resourcefork. |
| 23 | ** Each part is protected (at the end) with a 16-bit crc |
| 24 | ** The binary data is run-length encoded, and then ascii-fied: |
| 25 | ** binary: 01234567 abcdefgh ijklmnop |
| 26 | ** ascii: 012345 67abcd efghij klmnop |
| 27 | ** ASCII encoding is table-driven, see the code. |
| 28 | ** Short binary data results in the runt ascii-byte being output with |
| 29 | ** the bits in the right place. |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 30 | ** |
| 31 | ** While I was reading dozens of programs that encode or decode the formats |
| 32 | ** here (documentation? hihi:-) I have formulated Jansen's Observation: |
| 33 | ** |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 34 | ** Programs that encode binary data in ASCII are written in |
| 35 | ** such a style that they are as unreadable as possible. Devices used |
| 36 | ** include unnecessary global variables, burying important tables |
| 37 | ** in unrelated sourcefiles, putting functions in include files, |
| 38 | ** using seemingly-descriptive variable names for different purposes, |
| 39 | ** calls to empty subroutines and a host of others. |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 40 | ** |
| 41 | ** I have attempted to break with this tradition, but I guess that that |
| 42 | ** does make the performance sub-optimal. Oh well, too bad... |
| 43 | ** |
| 44 | ** Jack Jansen, CWI, July 1995. |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 45 | ** |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 46 | ** Added support for quoted-printable encoding, based on rfc 1521 et al |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 47 | ** quoted-printable encoding specifies that non printable characters (anything |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 48 | ** below 32 and above 126) be encoded as =XX where XX is the hexadecimal value |
| 49 | ** of the character. It also specifies some other behavior to enable 8bit data |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 50 | ** in a mail message with little difficulty (maximum line sizes, protecting |
| 51 | ** some cases of whitespace, etc). |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 52 | ** |
| 53 | ** Brandon Long, September 2001. |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 54 | */ |
| 55 | |
Thomas Wouters | 9c54448 | 2006-03-01 21:59:44 +0000 | [diff] [blame] | 56 | #define PY_SSIZE_T_CLEAN |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 57 | |
| 58 | #include "Python.h" |
Gregory P. Smith | 9c6b916 | 2015-04-26 00:42:13 +0000 | [diff] [blame] | 59 | #include "pystrhex.h" |
Christian Heimes | 1dc5400 | 2008-03-24 02:19:29 +0000 | [diff] [blame] | 60 | #ifdef USE_ZLIB_CRC32 |
| 61 | #include "zlib.h" |
| 62 | #endif |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 63 | |
| 64 | static PyObject *Error; |
| 65 | static PyObject *Incomplete; |
| 66 | |
| 67 | /* |
| 68 | ** hqx lookup table, ascii->binary. |
| 69 | */ |
| 70 | |
| 71 | #define RUNCHAR 0x90 |
| 72 | |
| 73 | #define DONE 0x7F |
| 74 | #define SKIP 0x7E |
| 75 | #define FAIL 0x7D |
| 76 | |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 77 | static const unsigned char table_a2b_hqx[256] = { |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 78 | /* ^@ ^A ^B ^C ^D ^E ^F ^G */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 79 | /* 0*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 80 | /* \b \t \n ^K ^L \r ^N ^O */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 81 | /* 1*/ FAIL, FAIL, SKIP, FAIL, FAIL, SKIP, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 82 | /* ^P ^Q ^R ^S ^T ^U ^V ^W */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 83 | /* 2*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 84 | /* ^X ^Y ^Z ^[ ^\ ^] ^^ ^_ */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 85 | /* 3*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 86 | /* ! " # $ % & ' */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 87 | /* 4*/ FAIL, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 88 | /* ( ) * + , - . / */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 89 | /* 5*/ 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 90 | /* 0 1 2 3 4 5 6 7 */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 91 | /* 6*/ 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 92 | /* 8 9 : ; < = > ? */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 93 | /* 7*/ 0x14, 0x15, DONE, FAIL, FAIL, FAIL, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 94 | /* @ A B C D E F G */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 95 | /* 8*/ 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 96 | /* H I J K L M N O */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 97 | /* 9*/ 0x1E, 0x1F, 0x20, 0x21, 0x22, 0x23, 0x24, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 98 | /* P Q R S T U V W */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 99 | /*10*/ 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 100 | /* X Y Z [ \ ] ^ _ */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 101 | /*11*/ 0x2C, 0x2D, 0x2E, 0x2F, FAIL, FAIL, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 102 | /* ` a b c d e f g */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 103 | /*12*/ 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 104 | /* h i j k l m n o */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 105 | /*13*/ 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 106 | /* p q r s t u v w */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 107 | /*14*/ 0x3D, 0x3E, 0x3F, FAIL, FAIL, FAIL, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 108 | /* x y z { | } ~ ^? */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 109 | /*15*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 110 | /*16*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 111 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 112 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 113 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 114 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 115 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 116 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 117 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 118 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 119 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 120 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 121 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 122 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 123 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 124 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
| 125 | FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 126 | }; |
| 127 | |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 128 | static const unsigned char table_b2a_hqx[] = |
Roger E. Masse | 5f4ce18 | 1997-01-16 17:10:22 +0000 | [diff] [blame] | 129 | "!\"#$%&'()*+,-012345689@ABCDEFGHIJKLMNPQRSTUVXYZ[`abcdefhijklmpqr"; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 130 | |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 131 | static const char table_a2b_base64[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 132 | -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, |
| 133 | -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, |
| 134 | -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63, |
| 135 | 52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1, 0,-1,-1, /* Note PAD->0 */ |
| 136 | -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14, |
| 137 | 15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1, |
| 138 | -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40, |
| 139 | 41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1 |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | #define BASE64_PAD '=' |
Guido van Rossum | 355bc0c | 2001-10-30 03:00:52 +0000 | [diff] [blame] | 143 | |
| 144 | /* Max binary chunk size; limited only by available memory */ |
Guido van Rossum | 0e225aa | 2007-05-22 20:24:57 +0000 | [diff] [blame] | 145 | #define BASE64_MAXBIN ((PY_SSIZE_T_MAX - 3) / 2) |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 146 | |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 147 | static const unsigned char table_b2a_base64[] = |
Roger E. Masse | 5f4ce18 | 1997-01-16 17:10:22 +0000 | [diff] [blame] | 148 | "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 149 | |
| 150 | |
| 151 | |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 152 | static const unsigned short crctab_hqx[256] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 153 | 0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7, |
| 154 | 0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef, |
| 155 | 0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6, |
| 156 | 0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de, |
| 157 | 0x2462, 0x3443, 0x0420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485, |
| 158 | 0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d, |
| 159 | 0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4, |
| 160 | 0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc, |
| 161 | 0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823, |
| 162 | 0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b, |
| 163 | 0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0x0a50, 0x3a33, 0x2a12, |
| 164 | 0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a, |
| 165 | 0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41, |
| 166 | 0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49, |
| 167 | 0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70, |
| 168 | 0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78, |
| 169 | 0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f, |
| 170 | 0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067, |
| 171 | 0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e, |
| 172 | 0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256, |
| 173 | 0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d, |
| 174 | 0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405, |
| 175 | 0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c, |
| 176 | 0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634, |
| 177 | 0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab, |
| 178 | 0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3, |
| 179 | 0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a, |
| 180 | 0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92, |
| 181 | 0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9, |
| 182 | 0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1, |
| 183 | 0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8, |
| 184 | 0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0, |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 185 | }; |
| 186 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 187 | /*[clinic input] |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 188 | module binascii |
| 189 | [clinic start generated code]*/ |
Serhiy Storchaka | 1009bf1 | 2015-04-03 23:53:51 +0300 | [diff] [blame] | 190 | /*[clinic end generated code: output=da39a3ee5e6b4b0d input=de89fb46bcaf3fec]*/ |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 191 | |
| 192 | /*[python input] |
| 193 | |
| 194 | class ascii_buffer_converter(CConverter): |
| 195 | type = 'Py_buffer' |
| 196 | converter = 'ascii_buffer_converter' |
| 197 | impl_by_reference = True |
Benjamin Peterson | b62deac | 2014-01-26 10:41:58 -0500 | [diff] [blame] | 198 | c_default = "{NULL, NULL}" |
| 199 | |
| 200 | def cleanup(self): |
| 201 | name = self.name |
| 202 | return "".join(["if (", name, ".obj)\n PyBuffer_Release(&", name, ");\n"]) |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 203 | |
| 204 | [python start generated code]*/ |
Larry Hastings | 581ee36 | 2014-01-28 05:00:08 -0800 | [diff] [blame] | 205 | /*[python end generated code: output=da39a3ee5e6b4b0d input=3eb7b63610da92cd]*/ |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 206 | |
Antoine Pitrou | 0831676 | 2011-12-20 13:58:41 +0100 | [diff] [blame] | 207 | static int |
| 208 | ascii_buffer_converter(PyObject *arg, Py_buffer *buf) |
| 209 | { |
| 210 | if (arg == NULL) { |
| 211 | PyBuffer_Release(buf); |
| 212 | return 1; |
| 213 | } |
| 214 | if (PyUnicode_Check(arg)) { |
| 215 | if (PyUnicode_READY(arg) < 0) |
| 216 | return 0; |
| 217 | if (!PyUnicode_IS_ASCII(arg)) { |
| 218 | PyErr_SetString(PyExc_ValueError, |
| 219 | "string argument should contain only ASCII characters"); |
| 220 | return 0; |
| 221 | } |
| 222 | assert(PyUnicode_KIND(arg) == PyUnicode_1BYTE_KIND); |
| 223 | buf->buf = (void *) PyUnicode_1BYTE_DATA(arg); |
| 224 | buf->len = PyUnicode_GET_LENGTH(arg); |
| 225 | buf->obj = NULL; |
| 226 | return 1; |
| 227 | } |
| 228 | if (PyObject_GetBuffer(arg, buf, PyBUF_SIMPLE) != 0) { |
| 229 | PyErr_Format(PyExc_TypeError, |
| 230 | "argument should be bytes, buffer or ASCII string, " |
Berker Peksag | 3cd30c2 | 2015-02-15 00:31:00 +0200 | [diff] [blame] | 231 | "not '%.100s'", Py_TYPE(arg)->tp_name); |
Antoine Pitrou | 0831676 | 2011-12-20 13:58:41 +0100 | [diff] [blame] | 232 | return 0; |
| 233 | } |
| 234 | if (!PyBuffer_IsContiguous(buf, 'C')) { |
| 235 | PyErr_Format(PyExc_TypeError, |
| 236 | "argument should be a contiguous buffer, " |
Berker Peksag | 3cd30c2 | 2015-02-15 00:31:00 +0200 | [diff] [blame] | 237 | "not '%.100s'", Py_TYPE(arg)->tp_name); |
Antoine Pitrou | 0831676 | 2011-12-20 13:58:41 +0100 | [diff] [blame] | 238 | PyBuffer_Release(buf); |
| 239 | return 0; |
| 240 | } |
| 241 | return Py_CLEANUP_SUPPORTED; |
| 242 | } |
| 243 | |
Larry Hastings | f256c22 | 2014-01-25 21:30:37 -0800 | [diff] [blame] | 244 | #include "clinic/binascii.c.h" |
Antoine Pitrou | 0831676 | 2011-12-20 13:58:41 +0100 | [diff] [blame] | 245 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 246 | /*[clinic input] |
| 247 | binascii.a2b_uu |
| 248 | |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 249 | data: ascii_buffer |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 250 | / |
| 251 | |
| 252 | Decode a line of uuencoded data. |
| 253 | [clinic start generated code]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 254 | |
| 255 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 256 | binascii_a2b_uu_impl(PyObject *module, Py_buffer *data) |
| 257 | /*[clinic end generated code: output=e027f8e0b0598742 input=7cafeaf73df63d1c]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 258 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 259 | const unsigned char *ascii_data; |
| 260 | unsigned char *bin_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 261 | int leftbits = 0; |
| 262 | unsigned char this_ch; |
| 263 | unsigned int leftchar = 0; |
| 264 | PyObject *rv; |
| 265 | Py_ssize_t ascii_len, bin_len; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 266 | |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 267 | ascii_data = data->buf; |
| 268 | ascii_len = data->len; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 269 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 270 | assert(ascii_len >= 0); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 271 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 272 | /* First byte: binary data length (in bytes) */ |
| 273 | bin_len = (*ascii_data++ - ' ') & 077; |
| 274 | ascii_len--; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 275 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 276 | /* Allocate the buffer */ |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 277 | if ( (rv=PyBytes_FromStringAndSize(NULL, bin_len)) == NULL ) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 278 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 279 | bin_data = (unsigned char *)PyBytes_AS_STRING(rv); |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 280 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 281 | for( ; bin_len > 0 ; ascii_len--, ascii_data++ ) { |
| 282 | /* XXX is it really best to add NULs if there's no more data */ |
| 283 | this_ch = (ascii_len > 0) ? *ascii_data : 0; |
| 284 | if ( this_ch == '\n' || this_ch == '\r' || ascii_len <= 0) { |
| 285 | /* |
| 286 | ** Whitespace. Assume some spaces got eaten at |
| 287 | ** end-of-line. (We check this later) |
| 288 | */ |
| 289 | this_ch = 0; |
| 290 | } else { |
| 291 | /* Check the character for legality |
| 292 | ** The 64 in stead of the expected 63 is because |
| 293 | ** there are a few uuencodes out there that use |
| 294 | ** '`' as zero instead of space. |
| 295 | */ |
| 296 | if ( this_ch < ' ' || this_ch > (' ' + 64)) { |
| 297 | PyErr_SetString(Error, "Illegal char"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 298 | Py_DECREF(rv); |
| 299 | return NULL; |
| 300 | } |
| 301 | this_ch = (this_ch - ' ') & 077; |
| 302 | } |
| 303 | /* |
| 304 | ** Shift it in on the low end, and see if there's |
| 305 | ** a byte ready for output. |
| 306 | */ |
| 307 | leftchar = (leftchar << 6) | (this_ch); |
| 308 | leftbits += 6; |
| 309 | if ( leftbits >= 8 ) { |
| 310 | leftbits -= 8; |
| 311 | *bin_data++ = (leftchar >> leftbits) & 0xff; |
| 312 | leftchar &= ((1 << leftbits) - 1); |
| 313 | bin_len--; |
| 314 | } |
| 315 | } |
| 316 | /* |
| 317 | ** Finally, check that if there's anything left on the line |
| 318 | ** that it's whitespace only. |
| 319 | */ |
| 320 | while( ascii_len-- > 0 ) { |
| 321 | this_ch = *ascii_data++; |
| 322 | /* Extra '`' may be written as padding in some cases */ |
| 323 | if ( this_ch != ' ' && this_ch != ' '+64 && |
| 324 | this_ch != '\n' && this_ch != '\r' ) { |
| 325 | PyErr_SetString(Error, "Trailing garbage"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 326 | Py_DECREF(rv); |
| 327 | return NULL; |
| 328 | } |
| 329 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 330 | return rv; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 333 | /*[clinic input] |
| 334 | binascii.b2a_uu |
| 335 | |
| 336 | data: Py_buffer |
| 337 | / |
| 338 | |
| 339 | Uuencode line of data. |
| 340 | [clinic start generated code]*/ |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 341 | |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 342 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 343 | binascii_b2a_uu_impl(PyObject *module, Py_buffer *data) |
| 344 | /*[clinic end generated code: output=0070670e52e4aa6b input=00fdf458ce8b465b]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 345 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 346 | unsigned char *ascii_data; |
| 347 | const unsigned char *bin_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 348 | int leftbits = 0; |
| 349 | unsigned char this_ch; |
| 350 | unsigned int leftchar = 0; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 351 | Py_ssize_t bin_len, out_len; |
| 352 | _PyBytesWriter writer; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 353 | |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 354 | _PyBytesWriter_Init(&writer); |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 355 | bin_data = data->buf; |
| 356 | bin_len = data->len; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 357 | if ( bin_len > 45 ) { |
| 358 | /* The 45 is a limit that appears in all uuencode's */ |
| 359 | PyErr_SetString(Error, "At most 45 bytes at once"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 360 | return NULL; |
| 361 | } |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 362 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 363 | /* We're lazy and allocate to much (fixed up later) */ |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 364 | out_len = 2 + (bin_len + 2) / 3 * 4; |
| 365 | ascii_data = _PyBytesWriter_Alloc(&writer, out_len); |
| 366 | if (ascii_data == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 367 | return NULL; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 368 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 369 | /* Store the length */ |
| 370 | *ascii_data++ = ' ' + (bin_len & 077); |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 371 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 372 | for( ; bin_len > 0 || leftbits != 0 ; bin_len--, bin_data++ ) { |
| 373 | /* Shift the data (or padding) into our buffer */ |
| 374 | if ( bin_len > 0 ) /* Data */ |
| 375 | leftchar = (leftchar << 8) | *bin_data; |
| 376 | else /* Padding */ |
| 377 | leftchar <<= 8; |
| 378 | leftbits += 8; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 379 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 380 | /* See if there are 6-bit groups ready */ |
| 381 | while ( leftbits >= 6 ) { |
| 382 | this_ch = (leftchar >> (leftbits-6)) & 0x3f; |
| 383 | leftbits -= 6; |
| 384 | *ascii_data++ = this_ch + ' '; |
| 385 | } |
| 386 | } |
| 387 | *ascii_data++ = '\n'; /* Append a courtesy newline */ |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 388 | |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 389 | return _PyBytesWriter_Finish(&writer, ascii_data); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 392 | |
| 393 | static int |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 394 | binascii_find_valid(const unsigned char *s, Py_ssize_t slen, int num) |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 395 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 396 | /* Finds & returns the (num+1)th |
| 397 | ** valid character for base64, or -1 if none. |
| 398 | */ |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 399 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 400 | int ret = -1; |
| 401 | unsigned char c, b64val; |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 402 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 403 | while ((slen > 0) && (ret == -1)) { |
| 404 | c = *s; |
| 405 | b64val = table_a2b_base64[c & 0x7f]; |
| 406 | if ( ((c <= 0x7f) && (b64val != (unsigned char)-1)) ) { |
| 407 | if (num == 0) |
| 408 | ret = *s; |
| 409 | num--; |
| 410 | } |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 411 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 412 | s++; |
| 413 | slen--; |
| 414 | } |
| 415 | return ret; |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 416 | } |
| 417 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 418 | /*[clinic input] |
| 419 | binascii.a2b_base64 |
| 420 | |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 421 | data: ascii_buffer |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 422 | / |
| 423 | |
| 424 | Decode a line of base64 data. |
| 425 | [clinic start generated code]*/ |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 426 | |
| 427 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 428 | binascii_a2b_base64_impl(PyObject *module, Py_buffer *data) |
| 429 | /*[clinic end generated code: output=0628223f19fd3f9b input=5872acf6e1cac243]*/ |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 430 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 431 | const unsigned char *ascii_data; |
| 432 | unsigned char *bin_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 433 | int leftbits = 0; |
| 434 | unsigned char this_ch; |
| 435 | unsigned int leftchar = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 436 | Py_ssize_t ascii_len, bin_len; |
| 437 | int quad_pos = 0; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 438 | _PyBytesWriter writer; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 439 | |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 440 | ascii_data = data->buf; |
| 441 | ascii_len = data->len; |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 442 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 443 | assert(ascii_len >= 0); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 444 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 445 | if (ascii_len > PY_SSIZE_T_MAX - 3) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 446 | return PyErr_NoMemory(); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 447 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 448 | bin_len = ((ascii_len+3)/4)*3; /* Upper bound, corrected later */ |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 449 | |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 450 | _PyBytesWriter_Init(&writer); |
| 451 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 452 | /* Allocate the buffer */ |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 453 | bin_data = _PyBytesWriter_Alloc(&writer, bin_len); |
| 454 | if (bin_data == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 455 | return NULL; |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 456 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 457 | for( ; ascii_len > 0; ascii_len--, ascii_data++) { |
| 458 | this_ch = *ascii_data; |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 459 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 460 | if (this_ch > 0x7f || |
| 461 | this_ch == '\r' || this_ch == '\n' || this_ch == ' ') |
| 462 | continue; |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 463 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 464 | /* Check for pad sequences and ignore |
| 465 | ** the invalid ones. |
| 466 | */ |
| 467 | if (this_ch == BASE64_PAD) { |
| 468 | if ( (quad_pos < 2) || |
| 469 | ((quad_pos == 2) && |
| 470 | (binascii_find_valid(ascii_data, ascii_len, 1) |
| 471 | != BASE64_PAD)) ) |
| 472 | { |
| 473 | continue; |
| 474 | } |
| 475 | else { |
| 476 | /* A pad sequence means no more input. |
| 477 | ** We've already interpreted the data |
| 478 | ** from the quad at this point. |
| 479 | */ |
| 480 | leftbits = 0; |
| 481 | break; |
| 482 | } |
| 483 | } |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 484 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 485 | this_ch = table_a2b_base64[*ascii_data]; |
| 486 | if ( this_ch == (unsigned char) -1 ) |
| 487 | continue; |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 488 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 489 | /* |
| 490 | ** Shift it in on the low end, and see if there's |
| 491 | ** a byte ready for output. |
| 492 | */ |
| 493 | quad_pos = (quad_pos + 1) & 0x03; |
| 494 | leftchar = (leftchar << 6) | (this_ch); |
| 495 | leftbits += 6; |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 496 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 497 | if ( leftbits >= 8 ) { |
| 498 | leftbits -= 8; |
| 499 | *bin_data++ = (leftchar >> leftbits) & 0xff; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 500 | leftchar &= ((1 << leftbits) - 1); |
| 501 | } |
| 502 | } |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 503 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 504 | if (leftbits != 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 505 | PyErr_SetString(Error, "Incorrect padding"); |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 506 | _PyBytesWriter_Dealloc(&writer); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 507 | return NULL; |
| 508 | } |
Guido van Rossum | 2db4f47 | 1999-10-19 19:05:14 +0000 | [diff] [blame] | 509 | |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 510 | return _PyBytesWriter_Finish(&writer, bin_data); |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 511 | } |
| 512 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 513 | |
| 514 | /*[clinic input] |
| 515 | binascii.b2a_base64 |
| 516 | |
| 517 | data: Py_buffer |
Victor Stinner | e84c976 | 2015-10-11 11:01:02 +0200 | [diff] [blame] | 518 | * |
| 519 | newline: int(c_default="1") = True |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 520 | |
| 521 | Base64-code line of data. |
| 522 | [clinic start generated code]*/ |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 523 | |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 524 | static PyObject * |
Serhiy Storchaka | 2954f83 | 2016-07-07 18:20:03 +0300 | [diff] [blame] | 525 | binascii_b2a_base64_impl(PyObject *module, Py_buffer *data, int newline) |
| 526 | /*[clinic end generated code: output=4ad62c8e8485d3b3 input=7b2ea6fa38d8924c]*/ |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 527 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 528 | unsigned char *ascii_data; |
| 529 | const unsigned char *bin_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 530 | int leftbits = 0; |
| 531 | unsigned char this_ch; |
| 532 | unsigned int leftchar = 0; |
Victor Stinner | e84c976 | 2015-10-11 11:01:02 +0200 | [diff] [blame] | 533 | Py_ssize_t bin_len, out_len; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 534 | _PyBytesWriter writer; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 535 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 536 | bin_data = data->buf; |
| 537 | bin_len = data->len; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 538 | _PyBytesWriter_Init(&writer); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 539 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 540 | assert(bin_len >= 0); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 541 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 542 | if ( bin_len > BASE64_MAXBIN ) { |
| 543 | PyErr_SetString(Error, "Too much data for base64 line"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 544 | return NULL; |
| 545 | } |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 546 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 547 | /* We're lazy and allocate too much (fixed up later). |
Victor Stinner | e84c976 | 2015-10-11 11:01:02 +0200 | [diff] [blame] | 548 | "+2" leaves room for up to two pad characters. |
| 549 | Note that 'b' gets encoded as 'Yg==\n' (1 in, 5 out). */ |
| 550 | out_len = bin_len*2 + 2; |
| 551 | if (newline) |
| 552 | out_len++; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 553 | ascii_data = _PyBytesWriter_Alloc(&writer, out_len); |
| 554 | if (ascii_data == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 555 | return NULL; |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 556 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 557 | for( ; bin_len > 0 ; bin_len--, bin_data++ ) { |
| 558 | /* Shift the data into our buffer */ |
| 559 | leftchar = (leftchar << 8) | *bin_data; |
| 560 | leftbits += 8; |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 561 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 562 | /* See if there are 6-bit groups ready */ |
| 563 | while ( leftbits >= 6 ) { |
| 564 | this_ch = (leftchar >> (leftbits-6)) & 0x3f; |
| 565 | leftbits -= 6; |
| 566 | *ascii_data++ = table_b2a_base64[this_ch]; |
| 567 | } |
| 568 | } |
| 569 | if ( leftbits == 2 ) { |
| 570 | *ascii_data++ = table_b2a_base64[(leftchar&3) << 4]; |
| 571 | *ascii_data++ = BASE64_PAD; |
| 572 | *ascii_data++ = BASE64_PAD; |
| 573 | } else if ( leftbits == 4 ) { |
| 574 | *ascii_data++ = table_b2a_base64[(leftchar&0xf) << 2]; |
| 575 | *ascii_data++ = BASE64_PAD; |
| 576 | } |
Victor Stinner | e84c976 | 2015-10-11 11:01:02 +0200 | [diff] [blame] | 577 | if (newline) |
| 578 | *ascii_data++ = '\n'; /* Append a courtesy newline */ |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 579 | |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 580 | return _PyBytesWriter_Finish(&writer, ascii_data); |
Jack Jansen | 84bbc2e | 1995-10-04 16:38:44 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 583 | /*[clinic input] |
| 584 | binascii.a2b_hqx |
| 585 | |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 586 | data: ascii_buffer |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 587 | / |
| 588 | |
| 589 | Decode .hqx coding. |
| 590 | [clinic start generated code]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 591 | |
| 592 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 593 | binascii_a2b_hqx_impl(PyObject *module, Py_buffer *data) |
| 594 | /*[clinic end generated code: output=4d6d8c54d54ea1c1 input=0d914c680e0eed55]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 595 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 596 | const unsigned char *ascii_data; |
| 597 | unsigned char *bin_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 598 | int leftbits = 0; |
| 599 | unsigned char this_ch; |
| 600 | unsigned int leftchar = 0; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 601 | PyObject *res; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 602 | Py_ssize_t len; |
| 603 | int done = 0; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 604 | _PyBytesWriter writer; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 605 | |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 606 | ascii_data = data->buf; |
| 607 | len = data->len; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 608 | _PyBytesWriter_Init(&writer); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 609 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 610 | assert(len >= 0); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 611 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 612 | if (len > PY_SSIZE_T_MAX - 2) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 613 | return PyErr_NoMemory(); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 614 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 615 | /* Allocate a string that is too big (fixed later) |
| 616 | Add two to the initial length to prevent interning which |
| 617 | would preclude subsequent resizing. */ |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 618 | bin_data = _PyBytesWriter_Alloc(&writer, len + 2); |
| 619 | if (bin_data == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 620 | return NULL; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 621 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 622 | for( ; len > 0 ; len--, ascii_data++ ) { |
| 623 | /* Get the byte and look it up */ |
| 624 | this_ch = table_a2b_hqx[*ascii_data]; |
| 625 | if ( this_ch == SKIP ) |
| 626 | continue; |
| 627 | if ( this_ch == FAIL ) { |
| 628 | PyErr_SetString(Error, "Illegal char"); |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 629 | _PyBytesWriter_Dealloc(&writer); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 630 | return NULL; |
| 631 | } |
| 632 | if ( this_ch == DONE ) { |
| 633 | /* The terminating colon */ |
| 634 | done = 1; |
| 635 | break; |
| 636 | } |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 637 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 638 | /* Shift it into the buffer and see if any bytes are ready */ |
| 639 | leftchar = (leftchar << 6) | (this_ch); |
| 640 | leftbits += 6; |
| 641 | if ( leftbits >= 8 ) { |
| 642 | leftbits -= 8; |
| 643 | *bin_data++ = (leftchar >> leftbits) & 0xff; |
| 644 | leftchar &= ((1 << leftbits) - 1); |
| 645 | } |
| 646 | } |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 647 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 648 | if ( leftbits && !done ) { |
| 649 | PyErr_SetString(Incomplete, |
| 650 | "String has incomplete number of bytes"); |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 651 | _PyBytesWriter_Dealloc(&writer); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 652 | return NULL; |
| 653 | } |
Roger E. Masse | 5f4ce18 | 1997-01-16 17:10:22 +0000 | [diff] [blame] | 654 | |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 655 | res = _PyBytesWriter_Finish(&writer, bin_data); |
| 656 | if (res == NULL) |
| 657 | return NULL; |
| 658 | return Py_BuildValue("Ni", res, done); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 659 | } |
| 660 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 661 | |
| 662 | /*[clinic input] |
| 663 | binascii.rlecode_hqx |
| 664 | |
| 665 | data: Py_buffer |
| 666 | / |
| 667 | |
| 668 | Binhex RLE-code binary data. |
| 669 | [clinic start generated code]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 670 | |
| 671 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 672 | binascii_rlecode_hqx_impl(PyObject *module, Py_buffer *data) |
| 673 | /*[clinic end generated code: output=393d79338f5f5629 input=e1f1712447a82b09]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 674 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 675 | const unsigned char *in_data; |
| 676 | unsigned char *out_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 677 | unsigned char ch; |
| 678 | Py_ssize_t in, inend, len; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 679 | _PyBytesWriter writer; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 680 | |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 681 | _PyBytesWriter_Init(&writer); |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 682 | in_data = data->buf; |
| 683 | len = data->len; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 684 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 685 | assert(len >= 0); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 686 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 687 | if (len > PY_SSIZE_T_MAX / 2 - 2) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 688 | return PyErr_NoMemory(); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 689 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 690 | /* Worst case: output is twice as big as input (fixed later) */ |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 691 | out_data = _PyBytesWriter_Alloc(&writer, len * 2 + 2); |
| 692 | if (out_data == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 693 | return NULL; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 694 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 695 | for( in=0; in<len; in++) { |
| 696 | ch = in_data[in]; |
| 697 | if ( ch == RUNCHAR ) { |
| 698 | /* RUNCHAR. Escape it. */ |
| 699 | *out_data++ = RUNCHAR; |
| 700 | *out_data++ = 0; |
| 701 | } else { |
| 702 | /* Check how many following are the same */ |
| 703 | for(inend=in+1; |
| 704 | inend<len && in_data[inend] == ch && |
| 705 | inend < in+255; |
| 706 | inend++) ; |
| 707 | if ( inend - in > 3 ) { |
| 708 | /* More than 3 in a row. Output RLE. */ |
| 709 | *out_data++ = ch; |
| 710 | *out_data++ = RUNCHAR; |
Antoine Pitrou | 4045575 | 2010-08-15 18:51:10 +0000 | [diff] [blame] | 711 | *out_data++ = (unsigned char) (inend-in); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 712 | in = inend-1; |
| 713 | } else { |
| 714 | /* Less than 3. Output the byte itself */ |
| 715 | *out_data++ = ch; |
| 716 | } |
| 717 | } |
| 718 | } |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 719 | |
| 720 | return _PyBytesWriter_Finish(&writer, out_data); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 721 | } |
| 722 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 723 | |
| 724 | /*[clinic input] |
| 725 | binascii.b2a_hqx |
| 726 | |
| 727 | data: Py_buffer |
| 728 | / |
| 729 | |
| 730 | Encode .hqx data. |
| 731 | [clinic start generated code]*/ |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 732 | |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 733 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 734 | binascii_b2a_hqx_impl(PyObject *module, Py_buffer *data) |
| 735 | /*[clinic end generated code: output=d0aa5a704bc9f7de input=9596ebe019fe12ba]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 736 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 737 | unsigned char *ascii_data; |
| 738 | const unsigned char *bin_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 739 | int leftbits = 0; |
| 740 | unsigned char this_ch; |
| 741 | unsigned int leftchar = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 742 | Py_ssize_t len; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 743 | _PyBytesWriter writer; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 744 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 745 | bin_data = data->buf; |
| 746 | len = data->len; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 747 | _PyBytesWriter_Init(&writer); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 748 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 749 | assert(len >= 0); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 750 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 751 | if (len > PY_SSIZE_T_MAX / 2 - 2) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 752 | return PyErr_NoMemory(); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 753 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 754 | /* Allocate a buffer that is at least large enough */ |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 755 | ascii_data = _PyBytesWriter_Alloc(&writer, len * 2 + 2); |
| 756 | if (ascii_data == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 757 | return NULL; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 758 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 759 | for( ; len > 0 ; len--, bin_data++ ) { |
| 760 | /* Shift into our buffer, and output any 6bits ready */ |
| 761 | leftchar = (leftchar << 8) | *bin_data; |
| 762 | leftbits += 8; |
| 763 | while ( leftbits >= 6 ) { |
| 764 | this_ch = (leftchar >> (leftbits-6)) & 0x3f; |
| 765 | leftbits -= 6; |
| 766 | *ascii_data++ = table_b2a_hqx[this_ch]; |
| 767 | } |
| 768 | } |
| 769 | /* Output a possible runt byte */ |
| 770 | if ( leftbits ) { |
| 771 | leftchar <<= (6-leftbits); |
| 772 | *ascii_data++ = table_b2a_hqx[leftchar & 0x3f]; |
| 773 | } |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 774 | |
| 775 | return _PyBytesWriter_Finish(&writer, ascii_data); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 776 | } |
| 777 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 778 | |
| 779 | /*[clinic input] |
| 780 | binascii.rledecode_hqx |
| 781 | |
| 782 | data: Py_buffer |
| 783 | / |
| 784 | |
| 785 | Decode hexbin RLE-coded string. |
| 786 | [clinic start generated code]*/ |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 787 | |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 788 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 789 | binascii_rledecode_hqx_impl(PyObject *module, Py_buffer *data) |
| 790 | /*[clinic end generated code: output=9826619565de1c6c input=54cdd49fc014402c]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 791 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 792 | const unsigned char *in_data; |
| 793 | unsigned char *out_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 794 | unsigned char in_byte, in_repeat; |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 795 | Py_ssize_t in_len; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 796 | _PyBytesWriter writer; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 797 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 798 | in_data = data->buf; |
| 799 | in_len = data->len; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 800 | _PyBytesWriter_Init(&writer); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 801 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 802 | assert(in_len >= 0); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 803 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 804 | /* Empty string is a special case */ |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 805 | if ( in_len == 0 ) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 806 | return PyBytes_FromStringAndSize("", 0); |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 807 | else if (in_len > PY_SSIZE_T_MAX / 2) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 808 | return PyErr_NoMemory(); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 809 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 810 | /* Allocate a buffer of reasonable size. Resized when needed */ |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 811 | out_data = _PyBytesWriter_Alloc(&writer, in_len); |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 812 | if (out_data == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 813 | return NULL; |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 814 | |
| 815 | /* Use overallocation */ |
| 816 | writer.overallocate = 1; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 817 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 818 | /* |
| 819 | ** We need two macros here to get/put bytes and handle |
| 820 | ** end-of-buffer for input and output strings. |
| 821 | */ |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 822 | #define INBYTE(b) \ |
| 823 | do { \ |
| 824 | if ( --in_len < 0 ) { \ |
| 825 | PyErr_SetString(Incomplete, ""); \ |
| 826 | goto error; \ |
| 827 | } \ |
| 828 | b = *in_data++; \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 829 | } while(0) |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 830 | |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 831 | /* |
| 832 | ** Handle first byte separately (since we have to get angry |
| 833 | ** in case of an orphaned RLE code). |
| 834 | */ |
| 835 | INBYTE(in_byte); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 836 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 837 | if (in_byte == RUNCHAR) { |
| 838 | INBYTE(in_repeat); |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 839 | /* only 1 byte will be written, but 2 bytes were preallocated: |
Raymond Hettinger | 15f44ab | 2016-08-30 10:47:49 -0700 | [diff] [blame] | 840 | subtract 1 byte to prevent overallocation */ |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 841 | writer.min_size--; |
| 842 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 843 | if (in_repeat != 0) { |
| 844 | /* Note Error, not Incomplete (which is at the end |
| 845 | ** of the string only). This is a programmer error. |
| 846 | */ |
| 847 | PyErr_SetString(Error, "Orphaned RLE code at start"); |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 848 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 849 | } |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 850 | *out_data++ = RUNCHAR; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 851 | } else { |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 852 | *out_data++ = in_byte; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 853 | } |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 854 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 855 | while( in_len > 0 ) { |
| 856 | INBYTE(in_byte); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 857 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 858 | if (in_byte == RUNCHAR) { |
| 859 | INBYTE(in_repeat); |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 860 | /* only 1 byte will be written, but 2 bytes were preallocated: |
Raymond Hettinger | 15f44ab | 2016-08-30 10:47:49 -0700 | [diff] [blame] | 861 | subtract 1 byte to prevent overallocation */ |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 862 | writer.min_size--; |
| 863 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 864 | if ( in_repeat == 0 ) { |
| 865 | /* Just an escaped RUNCHAR value */ |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 866 | *out_data++ = RUNCHAR; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 867 | } else { |
| 868 | /* Pick up value and output a sequence of it */ |
| 869 | in_byte = out_data[-1]; |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 870 | |
| 871 | /* enlarge the buffer if needed */ |
| 872 | if (in_repeat > 1) { |
| 873 | /* -1 because we already preallocated 1 byte */ |
| 874 | out_data = _PyBytesWriter_Prepare(&writer, out_data, |
| 875 | in_repeat - 1); |
| 876 | if (out_data == NULL) |
| 877 | goto error; |
| 878 | } |
| 879 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 880 | while ( --in_repeat > 0 ) |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 881 | *out_data++ = in_byte; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 882 | } |
| 883 | } else { |
| 884 | /* Normal byte */ |
Victor Stinner | f9c9a3f | 2015-10-14 15:20:07 +0200 | [diff] [blame] | 885 | *out_data++ = in_byte; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 886 | } |
| 887 | } |
Victor Stinner | eaaaf13 | 2015-10-13 10:51:47 +0200 | [diff] [blame] | 888 | return _PyBytesWriter_Finish(&writer, out_data); |
| 889 | |
| 890 | error: |
| 891 | _PyBytesWriter_Dealloc(&writer); |
| 892 | return NULL; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 893 | } |
| 894 | |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 895 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 896 | /*[clinic input] |
Serhiy Storchaka | 2ef7c47 | 2015-04-20 09:26:49 +0300 | [diff] [blame] | 897 | binascii.crc_hqx -> unsigned_int |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 898 | |
| 899 | data: Py_buffer |
Serhiy Storchaka | 2ef7c47 | 2015-04-20 09:26:49 +0300 | [diff] [blame] | 900 | crc: unsigned_int(bitwise=True) |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 901 | / |
| 902 | |
| 903 | Compute hqx CRC incrementally. |
| 904 | [clinic start generated code]*/ |
| 905 | |
Serhiy Storchaka | 2ef7c47 | 2015-04-20 09:26:49 +0300 | [diff] [blame] | 906 | static unsigned int |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 907 | binascii_crc_hqx_impl(PyObject *module, Py_buffer *data, unsigned int crc) |
| 908 | /*[clinic end generated code: output=8ec2a78590d19170 input=add8c53712ccceda]*/ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 909 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 910 | const unsigned char *bin_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 911 | Py_ssize_t len; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 912 | |
Serhiy Storchaka | 2ef7c47 | 2015-04-20 09:26:49 +0300 | [diff] [blame] | 913 | crc &= 0xffff; |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 914 | bin_data = data->buf; |
| 915 | len = data->len; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 916 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 917 | while(len-- > 0) { |
Serhiy Storchaka | 2ef7c47 | 2015-04-20 09:26:49 +0300 | [diff] [blame] | 918 | crc = ((crc<<8)&0xff00) ^ crctab_hqx[(crc>>8)^*bin_data++]; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 919 | } |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 920 | |
Serhiy Storchaka | 2ef7c47 | 2015-04-20 09:26:49 +0300 | [diff] [blame] | 921 | return crc; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 922 | } |
| 923 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 924 | #ifndef USE_ZLIB_CRC32 |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 925 | /* Crc - 32 BIT ANSI X3.66 CRC checksum files |
| 926 | Also known as: ISO 3307 |
| 927 | **********************************************************************| |
| 928 | * *| |
| 929 | * Demonstration program to compute the 32-bit CRC used as the frame *| |
| 930 | * check sequence in ADCCP (ANSI X3.66, also known as FIPS PUB 71 *| |
| 931 | * and FED-STD-1003, the U.S. versions of CCITT's X.25 link-level *| |
| 932 | * protocol). The 32-bit FCS was added via the Federal Register, *| |
| 933 | * 1 June 1982, p.23798. I presume but don't know for certain that *| |
| 934 | * this polynomial is or will be included in CCITT V.41, which *| |
| 935 | * defines the 16-bit CRC (often called CRC-CCITT) polynomial. FIPS *| |
| 936 | * PUB 78 says that the 32-bit FCS reduces otherwise undetected *| |
| 937 | * errors by a factor of 10^-5 over 16-bit FCS. *| |
| 938 | * *| |
| 939 | **********************************************************************| |
| 940 | |
| 941 | Copyright (C) 1986 Gary S. Brown. You may use this program, or |
| 942 | code or tables extracted from it, as desired without restriction. |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 943 | |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 944 | First, the polynomial itself and its table of feedback terms. The |
| 945 | polynomial is |
| 946 | X^32+X^26+X^23+X^22+X^16+X^12+X^11+X^10+X^8+X^7+X^5+X^4+X^2+X^1+X^0 |
| 947 | Note that we take it "backwards" and put the highest-order term in |
| 948 | the lowest-order bit. The X^32 term is "implied"; the LSB is the |
| 949 | X^31 term, etc. The X^0 term (usually shown as "+1") results in |
| 950 | the MSB being 1. |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 951 | |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 952 | Note that the usual hardware shift register implementation, which |
| 953 | is what we're using (we're merely optimizing it by doing eight-bit |
| 954 | chunks at a time) shifts bits into the lowest-order term. In our |
| 955 | implementation, that means shifting towards the right. Why do we |
| 956 | do it this way? Because the calculated CRC must be transmitted in |
| 957 | order from highest-order term to lowest-order term. UARTs transmit |
| 958 | characters in order from LSB to MSB. By storing the CRC this way, |
| 959 | we hand it to the UART in the order low-byte to high-byte; the UART |
| 960 | sends each low-bit to hight-bit; and the result is transmission bit |
| 961 | by bit from highest- to lowest-order term without requiring any bit |
| 962 | shuffling on our part. Reception works similarly. |
| 963 | |
| 964 | The feedback terms table consists of 256, 32-bit entries. Notes: |
| 965 | |
| 966 | 1. The table can be generated at runtime if desired; code to do so |
| 967 | is shown later. It might not be obvious, but the feedback |
| 968 | terms simply represent the results of eight shift/xor opera- |
| 969 | tions for all combinations of data and CRC register values. |
| 970 | |
| 971 | 2. The CRC accumulation logic is the same for all CRC polynomials, |
| 972 | be they sixteen or thirty-two bits wide. You simply choose the |
| 973 | appropriate table. Alternatively, because the table can be |
| 974 | generated at runtime, you can start by generating the table for |
| 975 | the polynomial in question and use exactly the same "updcrc", |
| 976 | if your application needn't simultaneously handle two CRC |
| 977 | polynomials. (Note, however, that XMODEM is strange.) |
| 978 | |
| 979 | 3. For 16-bit CRCs, the table entries need be only 16 bits wide; |
| 980 | of course, 32-bit entries work OK if the high 16 bits are zero. |
| 981 | |
| 982 | 4. The values must be right-shifted by eight bits by the "updcrc" |
| 983 | logic; the shift must be unsigned (bring in zeroes). On some |
| 984 | hardware you could probably optimize the shift in assembler by |
| 985 | using byte-swap instructions. |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 986 | ********************************************************************/ |
| 987 | |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 988 | static const unsigned int crc_32_tab[256] = { |
Gregory P. Smith | 3c0e4d2 | 2008-03-25 07:51:12 +0000 | [diff] [blame] | 989 | 0x00000000U, 0x77073096U, 0xee0e612cU, 0x990951baU, 0x076dc419U, |
| 990 | 0x706af48fU, 0xe963a535U, 0x9e6495a3U, 0x0edb8832U, 0x79dcb8a4U, |
| 991 | 0xe0d5e91eU, 0x97d2d988U, 0x09b64c2bU, 0x7eb17cbdU, 0xe7b82d07U, |
| 992 | 0x90bf1d91U, 0x1db71064U, 0x6ab020f2U, 0xf3b97148U, 0x84be41deU, |
| 993 | 0x1adad47dU, 0x6ddde4ebU, 0xf4d4b551U, 0x83d385c7U, 0x136c9856U, |
| 994 | 0x646ba8c0U, 0xfd62f97aU, 0x8a65c9ecU, 0x14015c4fU, 0x63066cd9U, |
| 995 | 0xfa0f3d63U, 0x8d080df5U, 0x3b6e20c8U, 0x4c69105eU, 0xd56041e4U, |
| 996 | 0xa2677172U, 0x3c03e4d1U, 0x4b04d447U, 0xd20d85fdU, 0xa50ab56bU, |
| 997 | 0x35b5a8faU, 0x42b2986cU, 0xdbbbc9d6U, 0xacbcf940U, 0x32d86ce3U, |
| 998 | 0x45df5c75U, 0xdcd60dcfU, 0xabd13d59U, 0x26d930acU, 0x51de003aU, |
| 999 | 0xc8d75180U, 0xbfd06116U, 0x21b4f4b5U, 0x56b3c423U, 0xcfba9599U, |
| 1000 | 0xb8bda50fU, 0x2802b89eU, 0x5f058808U, 0xc60cd9b2U, 0xb10be924U, |
| 1001 | 0x2f6f7c87U, 0x58684c11U, 0xc1611dabU, 0xb6662d3dU, 0x76dc4190U, |
| 1002 | 0x01db7106U, 0x98d220bcU, 0xefd5102aU, 0x71b18589U, 0x06b6b51fU, |
| 1003 | 0x9fbfe4a5U, 0xe8b8d433U, 0x7807c9a2U, 0x0f00f934U, 0x9609a88eU, |
| 1004 | 0xe10e9818U, 0x7f6a0dbbU, 0x086d3d2dU, 0x91646c97U, 0xe6635c01U, |
| 1005 | 0x6b6b51f4U, 0x1c6c6162U, 0x856530d8U, 0xf262004eU, 0x6c0695edU, |
| 1006 | 0x1b01a57bU, 0x8208f4c1U, 0xf50fc457U, 0x65b0d9c6U, 0x12b7e950U, |
| 1007 | 0x8bbeb8eaU, 0xfcb9887cU, 0x62dd1ddfU, 0x15da2d49U, 0x8cd37cf3U, |
| 1008 | 0xfbd44c65U, 0x4db26158U, 0x3ab551ceU, 0xa3bc0074U, 0xd4bb30e2U, |
| 1009 | 0x4adfa541U, 0x3dd895d7U, 0xa4d1c46dU, 0xd3d6f4fbU, 0x4369e96aU, |
| 1010 | 0x346ed9fcU, 0xad678846U, 0xda60b8d0U, 0x44042d73U, 0x33031de5U, |
| 1011 | 0xaa0a4c5fU, 0xdd0d7cc9U, 0x5005713cU, 0x270241aaU, 0xbe0b1010U, |
| 1012 | 0xc90c2086U, 0x5768b525U, 0x206f85b3U, 0xb966d409U, 0xce61e49fU, |
| 1013 | 0x5edef90eU, 0x29d9c998U, 0xb0d09822U, 0xc7d7a8b4U, 0x59b33d17U, |
| 1014 | 0x2eb40d81U, 0xb7bd5c3bU, 0xc0ba6cadU, 0xedb88320U, 0x9abfb3b6U, |
| 1015 | 0x03b6e20cU, 0x74b1d29aU, 0xead54739U, 0x9dd277afU, 0x04db2615U, |
| 1016 | 0x73dc1683U, 0xe3630b12U, 0x94643b84U, 0x0d6d6a3eU, 0x7a6a5aa8U, |
| 1017 | 0xe40ecf0bU, 0x9309ff9dU, 0x0a00ae27U, 0x7d079eb1U, 0xf00f9344U, |
| 1018 | 0x8708a3d2U, 0x1e01f268U, 0x6906c2feU, 0xf762575dU, 0x806567cbU, |
| 1019 | 0x196c3671U, 0x6e6b06e7U, 0xfed41b76U, 0x89d32be0U, 0x10da7a5aU, |
| 1020 | 0x67dd4accU, 0xf9b9df6fU, 0x8ebeeff9U, 0x17b7be43U, 0x60b08ed5U, |
| 1021 | 0xd6d6a3e8U, 0xa1d1937eU, 0x38d8c2c4U, 0x4fdff252U, 0xd1bb67f1U, |
| 1022 | 0xa6bc5767U, 0x3fb506ddU, 0x48b2364bU, 0xd80d2bdaU, 0xaf0a1b4cU, |
| 1023 | 0x36034af6U, 0x41047a60U, 0xdf60efc3U, 0xa867df55U, 0x316e8eefU, |
| 1024 | 0x4669be79U, 0xcb61b38cU, 0xbc66831aU, 0x256fd2a0U, 0x5268e236U, |
| 1025 | 0xcc0c7795U, 0xbb0b4703U, 0x220216b9U, 0x5505262fU, 0xc5ba3bbeU, |
| 1026 | 0xb2bd0b28U, 0x2bb45a92U, 0x5cb36a04U, 0xc2d7ffa7U, 0xb5d0cf31U, |
| 1027 | 0x2cd99e8bU, 0x5bdeae1dU, 0x9b64c2b0U, 0xec63f226U, 0x756aa39cU, |
| 1028 | 0x026d930aU, 0x9c0906a9U, 0xeb0e363fU, 0x72076785U, 0x05005713U, |
| 1029 | 0x95bf4a82U, 0xe2b87a14U, 0x7bb12baeU, 0x0cb61b38U, 0x92d28e9bU, |
| 1030 | 0xe5d5be0dU, 0x7cdcefb7U, 0x0bdbdf21U, 0x86d3d2d4U, 0xf1d4e242U, |
| 1031 | 0x68ddb3f8U, 0x1fda836eU, 0x81be16cdU, 0xf6b9265bU, 0x6fb077e1U, |
| 1032 | 0x18b74777U, 0x88085ae6U, 0xff0f6a70U, 0x66063bcaU, 0x11010b5cU, |
| 1033 | 0x8f659effU, 0xf862ae69U, 0x616bffd3U, 0x166ccf45U, 0xa00ae278U, |
| 1034 | 0xd70dd2eeU, 0x4e048354U, 0x3903b3c2U, 0xa7672661U, 0xd06016f7U, |
| 1035 | 0x4969474dU, 0x3e6e77dbU, 0xaed16a4aU, 0xd9d65adcU, 0x40df0b66U, |
| 1036 | 0x37d83bf0U, 0xa9bcae53U, 0xdebb9ec5U, 0x47b2cf7fU, 0x30b5ffe9U, |
| 1037 | 0xbdbdf21cU, 0xcabac28aU, 0x53b39330U, 0x24b4a3a6U, 0xbad03605U, |
| 1038 | 0xcdd70693U, 0x54de5729U, 0x23d967bfU, 0xb3667a2eU, 0xc4614ab8U, |
| 1039 | 0x5d681b02U, 0x2a6f2b94U, 0xb40bbe37U, 0xc30c8ea1U, 0x5a05df1bU, |
| 1040 | 0x2d02ef8dU |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 1041 | }; |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1042 | #endif /* USE_ZLIB_CRC32 */ |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 1043 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1044 | /*[clinic input] |
| 1045 | binascii.crc32 -> unsigned_int |
| 1046 | |
| 1047 | data: Py_buffer |
| 1048 | crc: unsigned_int(bitwise=True) = 0 |
| 1049 | / |
| 1050 | |
| 1051 | Compute CRC-32 incrementally. |
| 1052 | [clinic start generated code]*/ |
| 1053 | |
| 1054 | static unsigned int |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 1055 | binascii_crc32_impl(PyObject *module, Py_buffer *data, unsigned int crc) |
| 1056 | /*[clinic end generated code: output=52cf59056a78593b input=bbe340bc99d25aa8]*/ |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1057 | |
| 1058 | #ifdef USE_ZLIB_CRC32 |
| 1059 | /* This was taken from zlibmodule.c PyZlib_crc32 (but is PY_SSIZE_T_CLEAN) */ |
| 1060 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 1061 | const Byte *buf; |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1062 | Py_ssize_t len; |
| 1063 | int signed_val; |
| 1064 | |
| 1065 | buf = (Byte*)data->buf; |
| 1066 | len = data->len; |
| 1067 | signed_val = crc32(crc, buf, len); |
| 1068 | return (unsigned int)signed_val & 0xffffffffU; |
| 1069 | } |
| 1070 | #else /* USE_ZLIB_CRC32 */ |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 1071 | { /* By Jim Ahlstrom; All rights transferred to CNRI */ |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 1072 | const unsigned char *bin_data; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1073 | Py_ssize_t len; |
| 1074 | unsigned int result; |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 1075 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1076 | bin_data = data->buf; |
| 1077 | len = data->len; |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 1078 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1079 | crc = ~ crc; |
| 1080 | while (len-- > 0) { |
| 1081 | crc = crc_32_tab[(crc ^ *bin_data++) & 0xff] ^ (crc >> 8); |
| 1082 | /* Note: (crc >> 8) MUST zero fill on left */ |
| 1083 | } |
Tim Peters | a98011c | 2002-07-02 20:20:08 +0000 | [diff] [blame] | 1084 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1085 | result = (crc ^ 0xFFFFFFFF); |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1086 | return result & 0xffffffff; |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 1087 | } |
Christian Heimes | 1dc5400 | 2008-03-24 02:19:29 +0000 | [diff] [blame] | 1088 | #endif /* USE_ZLIB_CRC32 */ |
Guido van Rossum | 7d47c9e | 2000-02-16 21:11:52 +0000 | [diff] [blame] | 1089 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1090 | /*[clinic input] |
| 1091 | binascii.b2a_hex |
| 1092 | |
| 1093 | data: Py_buffer |
| 1094 | / |
| 1095 | |
| 1096 | Hexadecimal representation of binary data. |
| 1097 | |
| 1098 | The return value is a bytes object. This function is also |
| 1099 | available as "hexlify()". |
| 1100 | [clinic start generated code]*/ |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1101 | |
| 1102 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 1103 | binascii_b2a_hex_impl(PyObject *module, Py_buffer *data) |
| 1104 | /*[clinic end generated code: output=92fec1a95c9897a0 input=96423cfa299ff3b1]*/ |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1105 | { |
Gregory P. Smith | 9c6b916 | 2015-04-26 00:42:13 +0000 | [diff] [blame] | 1106 | return _Py_strhex_bytes((const char *)data->buf, data->len); |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1107 | } |
| 1108 | |
Zachary Ware | b176d40 | 2015-01-20 13:59:46 -0600 | [diff] [blame] | 1109 | /*[clinic input] |
| 1110 | binascii.hexlify = binascii.b2a_hex |
| 1111 | |
| 1112 | Hexadecimal representation of binary data. |
| 1113 | |
| 1114 | The return value is a bytes object. |
| 1115 | [clinic start generated code]*/ |
| 1116 | |
| 1117 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 1118 | binascii_hexlify_impl(PyObject *module, Py_buffer *data) |
| 1119 | /*[clinic end generated code: output=749e95e53c14880c input=2e3afae7f083f061]*/ |
Zachary Ware | b176d40 | 2015-01-20 13:59:46 -0600 | [diff] [blame] | 1120 | { |
Gregory P. Smith | 9c6b916 | 2015-04-26 00:42:13 +0000 | [diff] [blame] | 1121 | return _Py_strhex_bytes((const char *)data->buf, data->len); |
Zachary Ware | b176d40 | 2015-01-20 13:59:46 -0600 | [diff] [blame] | 1122 | } |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1123 | |
| 1124 | static int |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 1125 | to_int(int c) |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1126 | { |
Antoine Pitrou | 4de7457 | 2013-02-09 23:11:27 +0100 | [diff] [blame] | 1127 | if (Py_ISDIGIT(c)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1128 | return c - '0'; |
| 1129 | else { |
Antoine Pitrou | ed8ba14 | 2011-10-04 13:50:21 +0200 | [diff] [blame] | 1130 | if (Py_ISUPPER(c)) |
| 1131 | c = Py_TOLOWER(c); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1132 | if (c >= 'a' && c <= 'f') |
| 1133 | return c - 'a' + 10; |
| 1134 | } |
| 1135 | return -1; |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1139 | /*[clinic input] |
| 1140 | binascii.a2b_hex |
| 1141 | |
| 1142 | hexstr: ascii_buffer |
| 1143 | / |
| 1144 | |
| 1145 | Binary data of hexadecimal representation. |
| 1146 | |
| 1147 | hexstr must contain an even number of hex digits (upper or lower case). |
| 1148 | This function is also available as "unhexlify()". |
| 1149 | [clinic start generated code]*/ |
| 1150 | |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1151 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 1152 | binascii_a2b_hex_impl(PyObject *module, Py_buffer *hexstr) |
| 1153 | /*[clinic end generated code: output=0cc1a139af0eeecb input=9e1e7f2f94db24fd]*/ |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1154 | { |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 1155 | const char* argbuf; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1156 | Py_ssize_t arglen; |
| 1157 | PyObject *retval; |
| 1158 | char* retbuf; |
| 1159 | Py_ssize_t i, j; |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1160 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1161 | argbuf = hexstr->buf; |
| 1162 | arglen = hexstr->len; |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1163 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1164 | assert(arglen >= 0); |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 1165 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1166 | /* XXX What should we do about strings with an odd length? Should |
| 1167 | * we add an implicit leading zero, or a trailing zero? For now, |
| 1168 | * raise an exception. |
| 1169 | */ |
| 1170 | if (arglen % 2) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1171 | PyErr_SetString(Error, "Odd-length string"); |
| 1172 | return NULL; |
| 1173 | } |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1174 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1175 | retval = PyBytes_FromStringAndSize(NULL, (arglen/2)); |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1176 | if (!retval) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1177 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1178 | retbuf = PyBytes_AS_STRING(retval); |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1179 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1180 | for (i=j=0; i < arglen; i += 2) { |
| 1181 | int top = to_int(Py_CHARMASK(argbuf[i])); |
| 1182 | int bot = to_int(Py_CHARMASK(argbuf[i+1])); |
| 1183 | if (top == -1 || bot == -1) { |
| 1184 | PyErr_SetString(Error, |
| 1185 | "Non-hexadecimal digit found"); |
| 1186 | goto finally; |
| 1187 | } |
| 1188 | retbuf[j++] = (top << 4) + bot; |
| 1189 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1190 | return retval; |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1191 | |
| 1192 | finally: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1193 | Py_DECREF(retval); |
| 1194 | return NULL; |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1195 | } |
| 1196 | |
Zachary Ware | b176d40 | 2015-01-20 13:59:46 -0600 | [diff] [blame] | 1197 | /*[clinic input] |
| 1198 | binascii.unhexlify = binascii.a2b_hex |
| 1199 | |
| 1200 | Binary data of hexadecimal representation. |
| 1201 | |
| 1202 | hexstr must contain an even number of hex digits (upper or lower case). |
| 1203 | [clinic start generated code]*/ |
| 1204 | |
| 1205 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 1206 | binascii_unhexlify_impl(PyObject *module, Py_buffer *hexstr) |
| 1207 | /*[clinic end generated code: output=51a64c06c79629e3 input=dd8c012725f462da]*/ |
Zachary Ware | b176d40 | 2015-01-20 13:59:46 -0600 | [diff] [blame] | 1208 | { |
| 1209 | return binascii_a2b_hex_impl(module, hexstr); |
| 1210 | } |
| 1211 | |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 1212 | static const int table_hex[128] = { |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1213 | -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, |
| 1214 | -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, |
| 1215 | -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, |
| 1216 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,-1,-1, -1,-1,-1,-1, |
| 1217 | -1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1, |
| 1218 | -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, |
| 1219 | -1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1, |
| 1220 | -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1 |
| 1221 | }; |
| 1222 | |
| 1223 | #define hexval(c) table_hex[(unsigned int)(c)] |
| 1224 | |
| 1225 | #define MAXLINESIZE 76 |
| 1226 | |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1227 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1228 | /*[clinic input] |
| 1229 | binascii.a2b_qp |
| 1230 | |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1231 | data: ascii_buffer |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1232 | header: int(c_default="0") = False |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1233 | |
| 1234 | Decode a string of qp-encoded data. |
| 1235 | [clinic start generated code]*/ |
| 1236 | |
| 1237 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 1238 | binascii_a2b_qp_impl(PyObject *module, Py_buffer *data, int header) |
| 1239 | /*[clinic end generated code: output=e99f7846cfb9bc53 input=5187a0d3d8e54f3b]*/ |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1240 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1241 | Py_ssize_t in, out; |
| 1242 | char ch; |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 1243 | const unsigned char *ascii_data; |
| 1244 | unsigned char *odata; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1245 | Py_ssize_t datalen = 0; |
| 1246 | PyObject *rv; |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1247 | |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1248 | ascii_data = data->buf; |
| 1249 | datalen = data->len; |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1250 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1251 | /* We allocate the output same size as input, this is overkill. |
| 1252 | * The previous implementation used calloc() so we'll zero out the |
| 1253 | * memory here too, since PyMem_Malloc() does not guarantee that. |
| 1254 | */ |
| 1255 | odata = (unsigned char *) PyMem_Malloc(datalen); |
| 1256 | if (odata == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1257 | PyErr_NoMemory(); |
| 1258 | return NULL; |
| 1259 | } |
| 1260 | memset(odata, 0, datalen); |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1261 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1262 | in = out = 0; |
| 1263 | while (in < datalen) { |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1264 | if (ascii_data[in] == '=') { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1265 | in++; |
| 1266 | if (in >= datalen) break; |
| 1267 | /* Soft line breaks */ |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1268 | if ((ascii_data[in] == '\n') || (ascii_data[in] == '\r')) { |
| 1269 | if (ascii_data[in] != '\n') { |
| 1270 | while (in < datalen && ascii_data[in] != '\n') in++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1271 | } |
| 1272 | if (in < datalen) in++; |
| 1273 | } |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1274 | else if (ascii_data[in] == '=') { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1275 | /* broken case from broken python qp */ |
| 1276 | odata[out++] = '='; |
| 1277 | in++; |
| 1278 | } |
Serhiy Storchaka | e6265e9 | 2016-09-14 16:34:37 +0300 | [diff] [blame] | 1279 | else if ((in + 1 < datalen) && |
| 1280 | ((ascii_data[in] >= 'A' && ascii_data[in] <= 'F') || |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1281 | (ascii_data[in] >= 'a' && ascii_data[in] <= 'f') || |
| 1282 | (ascii_data[in] >= '0' && ascii_data[in] <= '9')) && |
| 1283 | ((ascii_data[in+1] >= 'A' && ascii_data[in+1] <= 'F') || |
| 1284 | (ascii_data[in+1] >= 'a' && ascii_data[in+1] <= 'f') || |
| 1285 | (ascii_data[in+1] >= '0' && ascii_data[in+1] <= '9'))) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1286 | /* hexval */ |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1287 | ch = hexval(ascii_data[in]) << 4; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1288 | in++; |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1289 | ch |= hexval(ascii_data[in]); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1290 | in++; |
| 1291 | odata[out++] = ch; |
| 1292 | } |
| 1293 | else { |
| 1294 | odata[out++] = '='; |
| 1295 | } |
| 1296 | } |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1297 | else if (header && ascii_data[in] == '_') { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1298 | odata[out++] = ' '; |
| 1299 | in++; |
| 1300 | } |
| 1301 | else { |
Serhiy Storchaka | 1278561 | 2014-01-25 11:49:49 +0200 | [diff] [blame] | 1302 | odata[out] = ascii_data[in]; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1303 | in++; |
| 1304 | out++; |
| 1305 | } |
| 1306 | } |
| 1307 | if ((rv = PyBytes_FromStringAndSize((char *)odata, out)) == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1308 | PyMem_Free(odata); |
| 1309 | return NULL; |
| 1310 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1311 | PyMem_Free(odata); |
| 1312 | return rv; |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1313 | } |
| 1314 | |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 1315 | static int |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1316 | to_hex (unsigned char ch, unsigned char *s) |
| 1317 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1318 | unsigned int uvalue = ch; |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1319 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1320 | s[1] = "0123456789ABCDEF"[uvalue % 16]; |
| 1321 | uvalue = (uvalue / 16); |
| 1322 | s[0] = "0123456789ABCDEF"[uvalue % 16]; |
| 1323 | return 0; |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1326 | /* XXX: This is ridiculously complicated to be backward compatible |
| 1327 | * (mostly) with the quopri module. It doesn't re-create the quopri |
| 1328 | * module bug where text ending in CRLF has the CR encoded */ |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1329 | |
| 1330 | /*[clinic input] |
| 1331 | binascii.b2a_qp |
| 1332 | |
| 1333 | data: Py_buffer |
| 1334 | quotetabs: int(c_default="0") = False |
| 1335 | istext: int(c_default="1") = True |
| 1336 | header: int(c_default="0") = False |
| 1337 | |
| 1338 | Encode a string using quoted-printable encoding. |
| 1339 | |
| 1340 | On encoding, when istext is set, newlines are not encoded, and white |
| 1341 | space at end of lines is. When istext is not set, \r and \n (CR/LF) |
| 1342 | are both encoded. When quotetabs is set, space and tabs are encoded. |
| 1343 | [clinic start generated code]*/ |
| 1344 | |
| 1345 | static PyObject * |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 1346 | binascii_b2a_qp_impl(PyObject *module, Py_buffer *data, int quotetabs, |
Larry Hastings | 89964c4 | 2015-04-14 18:07:59 -0400 | [diff] [blame] | 1347 | int istext, int header) |
Serhiy Storchaka | 1a2b24f | 2016-07-07 17:35:15 +0300 | [diff] [blame] | 1348 | /*[clinic end generated code: output=e9884472ebb1a94c input=7f2a9aaa008e92b2]*/ |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1349 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1350 | Py_ssize_t in, out; |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 1351 | const unsigned char *databuf; |
| 1352 | unsigned char *odata; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1353 | Py_ssize_t datalen = 0, odatalen = 0; |
| 1354 | PyObject *rv; |
| 1355 | unsigned int linelen = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1356 | unsigned char ch; |
| 1357 | int crlf = 0; |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 1358 | const unsigned char *p; |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1359 | |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1360 | databuf = data->buf; |
| 1361 | datalen = data->len; |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1362 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1363 | /* See if this string is using CRLF line ends */ |
| 1364 | /* XXX: this function has the side effect of converting all of |
| 1365 | * the end of lines to be the same depending on this detection |
| 1366 | * here */ |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 1367 | p = (const unsigned char *) memchr(databuf, '\n', datalen); |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1368 | if ((p != NULL) && (p > databuf) && (*(p-1) == '\r')) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1369 | crlf = 1; |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1370 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1371 | /* First, scan to see how many characters need to be encoded */ |
| 1372 | in = 0; |
| 1373 | while (in < datalen) { |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1374 | Py_ssize_t delta = 0; |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1375 | if ((databuf[in] > 126) || |
| 1376 | (databuf[in] == '=') || |
| 1377 | (header && databuf[in] == '_') || |
| 1378 | ((databuf[in] == '.') && (linelen == 0) && |
Serhiy Storchaka | e6265e9 | 2016-09-14 16:34:37 +0300 | [diff] [blame] | 1379 | (in + 1 == datalen || databuf[in+1] == '\n' || |
| 1380 | databuf[in+1] == '\r' || databuf[in+1] == 0)) || |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1381 | (!istext && ((databuf[in] == '\r') || (databuf[in] == '\n'))) || |
| 1382 | ((databuf[in] == '\t' || databuf[in] == ' ') && (in + 1 == datalen)) || |
| 1383 | ((databuf[in] < 33) && |
| 1384 | (databuf[in] != '\r') && (databuf[in] != '\n') && |
| 1385 | (quotetabs || ((databuf[in] != '\t') && (databuf[in] != ' '))))) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1386 | { |
| 1387 | if ((linelen + 3) >= MAXLINESIZE) { |
| 1388 | linelen = 0; |
| 1389 | if (crlf) |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1390 | delta += 3; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1391 | else |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1392 | delta += 2; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1393 | } |
| 1394 | linelen += 3; |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1395 | delta += 3; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1396 | in++; |
| 1397 | } |
| 1398 | else { |
| 1399 | if (istext && |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1400 | ((databuf[in] == '\n') || |
| 1401 | ((in+1 < datalen) && (databuf[in] == '\r') && |
| 1402 | (databuf[in+1] == '\n')))) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1403 | { |
| 1404 | linelen = 0; |
| 1405 | /* Protect against whitespace on end of line */ |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1406 | if (in && ((databuf[in-1] == ' ') || (databuf[in-1] == '\t'))) |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1407 | delta += 2; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1408 | if (crlf) |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1409 | delta += 2; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1410 | else |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1411 | delta += 1; |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1412 | if (databuf[in] == '\r') |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1413 | in += 2; |
| 1414 | else |
| 1415 | in++; |
| 1416 | } |
| 1417 | else { |
| 1418 | if ((in + 1 != datalen) && |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1419 | (databuf[in+1] != '\n') && |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1420 | (linelen + 1) >= MAXLINESIZE) { |
| 1421 | linelen = 0; |
| 1422 | if (crlf) |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1423 | delta += 3; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1424 | else |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1425 | delta += 2; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1426 | } |
| 1427 | linelen++; |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1428 | delta++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1429 | in++; |
| 1430 | } |
| 1431 | } |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1432 | if (PY_SSIZE_T_MAX - delta < odatalen) { |
Benjamin Peterson | 4f97651 | 2016-08-13 18:33:33 -0700 | [diff] [blame] | 1433 | PyErr_NoMemory(); |
| 1434 | return NULL; |
| 1435 | } |
| 1436 | odatalen += delta; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1437 | } |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1438 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1439 | /* We allocate the output same size as input, this is overkill. |
| 1440 | * The previous implementation used calloc() so we'll zero out the |
| 1441 | * memory here too, since PyMem_Malloc() does not guarantee that. |
| 1442 | */ |
| 1443 | odata = (unsigned char *) PyMem_Malloc(odatalen); |
| 1444 | if (odata == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1445 | PyErr_NoMemory(); |
| 1446 | return NULL; |
| 1447 | } |
| 1448 | memset(odata, 0, odatalen); |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1449 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1450 | in = out = linelen = 0; |
| 1451 | while (in < datalen) { |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1452 | if ((databuf[in] > 126) || |
| 1453 | (databuf[in] == '=') || |
| 1454 | (header && databuf[in] == '_') || |
| 1455 | ((databuf[in] == '.') && (linelen == 0) && |
Serhiy Storchaka | e6265e9 | 2016-09-14 16:34:37 +0300 | [diff] [blame] | 1456 | (in + 1 == datalen || databuf[in+1] == '\n' || |
| 1457 | databuf[in+1] == '\r' || databuf[in+1] == 0)) || |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1458 | (!istext && ((databuf[in] == '\r') || (databuf[in] == '\n'))) || |
| 1459 | ((databuf[in] == '\t' || databuf[in] == ' ') && (in + 1 == datalen)) || |
| 1460 | ((databuf[in] < 33) && |
| 1461 | (databuf[in] != '\r') && (databuf[in] != '\n') && |
Serhiy Storchaka | e6265e9 | 2016-09-14 16:34:37 +0300 | [diff] [blame] | 1462 | (quotetabs || ((databuf[in] != '\t') && (databuf[in] != ' '))))) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1463 | { |
| 1464 | if ((linelen + 3 )>= MAXLINESIZE) { |
| 1465 | odata[out++] = '='; |
| 1466 | if (crlf) odata[out++] = '\r'; |
| 1467 | odata[out++] = '\n'; |
| 1468 | linelen = 0; |
| 1469 | } |
| 1470 | odata[out++] = '='; |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1471 | to_hex(databuf[in], &odata[out]); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1472 | out += 2; |
| 1473 | in++; |
| 1474 | linelen += 3; |
| 1475 | } |
| 1476 | else { |
| 1477 | if (istext && |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1478 | ((databuf[in] == '\n') || |
| 1479 | ((in+1 < datalen) && (databuf[in] == '\r') && |
| 1480 | (databuf[in+1] == '\n')))) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1481 | { |
| 1482 | linelen = 0; |
| 1483 | /* Protect against whitespace on end of line */ |
| 1484 | if (out && ((odata[out-1] == ' ') || (odata[out-1] == '\t'))) { |
| 1485 | ch = odata[out-1]; |
| 1486 | odata[out-1] = '='; |
| 1487 | to_hex(ch, &odata[out]); |
| 1488 | out += 2; |
| 1489 | } |
Tim Peters | 934c1a1 | 2002-07-02 22:24:50 +0000 | [diff] [blame] | 1490 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1491 | if (crlf) odata[out++] = '\r'; |
| 1492 | odata[out++] = '\n'; |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1493 | if (databuf[in] == '\r') |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1494 | in += 2; |
| 1495 | else |
| 1496 | in++; |
| 1497 | } |
| 1498 | else { |
| 1499 | if ((in + 1 != datalen) && |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1500 | (databuf[in+1] != '\n') && |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1501 | (linelen + 1) >= MAXLINESIZE) { |
| 1502 | odata[out++] = '='; |
| 1503 | if (crlf) odata[out++] = '\r'; |
| 1504 | odata[out++] = '\n'; |
| 1505 | linelen = 0; |
| 1506 | } |
| 1507 | linelen++; |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1508 | if (header && databuf[in] == ' ') { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1509 | odata[out++] = '_'; |
| 1510 | in++; |
| 1511 | } |
| 1512 | else { |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1513 | odata[out++] = databuf[in++]; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1514 | } |
| 1515 | } |
| 1516 | } |
| 1517 | } |
| 1518 | if ((rv = PyBytes_FromStringAndSize((char *)odata, out)) == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1519 | PyMem_Free(odata); |
| 1520 | return NULL; |
| 1521 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1522 | PyMem_Free(odata); |
| 1523 | return rv; |
Martin v. Löwis | 16dc7f4 | 2001-09-30 20:32:11 +0000 | [diff] [blame] | 1524 | } |
Barry Warsaw | e977c21 | 2000-08-15 06:07:13 +0000 | [diff] [blame] | 1525 | |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 1526 | /* List of functions defined in the module */ |
| 1527 | |
| 1528 | static struct PyMethodDef binascii_module_methods[] = { |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1529 | BINASCII_A2B_UU_METHODDEF |
| 1530 | BINASCII_B2A_UU_METHODDEF |
| 1531 | BINASCII_A2B_BASE64_METHODDEF |
| 1532 | BINASCII_B2A_BASE64_METHODDEF |
| 1533 | BINASCII_A2B_HQX_METHODDEF |
| 1534 | BINASCII_B2A_HQX_METHODDEF |
| 1535 | BINASCII_A2B_HEX_METHODDEF |
| 1536 | BINASCII_B2A_HEX_METHODDEF |
Zachary Ware | b176d40 | 2015-01-20 13:59:46 -0600 | [diff] [blame] | 1537 | BINASCII_HEXLIFY_METHODDEF |
| 1538 | BINASCII_UNHEXLIFY_METHODDEF |
Serhiy Storchaka | 3ffd913 | 2014-01-25 11:21:23 +0200 | [diff] [blame] | 1539 | BINASCII_RLECODE_HQX_METHODDEF |
| 1540 | BINASCII_RLEDECODE_HQX_METHODDEF |
| 1541 | BINASCII_CRC_HQX_METHODDEF |
| 1542 | BINASCII_CRC32_METHODDEF |
| 1543 | BINASCII_A2B_QP_METHODDEF |
| 1544 | BINASCII_B2A_QP_METHODDEF |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1545 | {NULL, NULL} /* sentinel */ |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 1546 | }; |
| 1547 | |
| 1548 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1549 | /* Initialization function for the module (*must* be called PyInit_binascii) */ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1550 | PyDoc_STRVAR(doc_binascii, "Conversion between binary data and ASCII"); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 1551 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1552 | |
| 1553 | static struct PyModuleDef binasciimodule = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1554 | PyModuleDef_HEAD_INIT, |
| 1555 | "binascii", |
| 1556 | doc_binascii, |
| 1557 | -1, |
| 1558 | binascii_module_methods, |
| 1559 | NULL, |
| 1560 | NULL, |
| 1561 | NULL, |
| 1562 | NULL |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1563 | }; |
| 1564 | |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 1565 | PyMODINIT_FUNC |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1566 | PyInit_binascii(void) |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 1567 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1568 | PyObject *m, *d; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 1569 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1570 | /* Create the module and add the functions */ |
| 1571 | m = PyModule_Create(&binasciimodule); |
| 1572 | if (m == NULL) |
| 1573 | return NULL; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 1574 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1575 | d = PyModule_GetDict(m); |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 1576 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1577 | Error = PyErr_NewException("binascii.Error", PyExc_ValueError, NULL); |
| 1578 | PyDict_SetItemString(d, "Error", Error); |
| 1579 | Incomplete = PyErr_NewException("binascii.Incomplete", NULL, NULL); |
| 1580 | PyDict_SetItemString(d, "Incomplete", Incomplete); |
| 1581 | if (PyErr_Occurred()) { |
| 1582 | Py_DECREF(m); |
| 1583 | m = NULL; |
| 1584 | } |
| 1585 | return m; |
Jack Jansen | 7278119 | 1995-08-07 14:34:15 +0000 | [diff] [blame] | 1586 | } |