18.14. binascii
— Conversion entre binaire et ASCII¶
Le module binascii
contient des méthodes pour convertir entre binaire et diverses représentations binaires encodées en ASCII. Normalement, vous n’allez pas utiliser ces fonctions directement mais vous utiliserez des modules d’encapsulage comme uu
, base64
, or binhex
à la place. Le module binascii
contient des fonctions bas-niveau écrites en C plus rapides qui sont utilisées par des modules haut-niveau.
Le module binascii
définit les fonctions suivantes :
-
binascii.
a2b_uu
(string)¶ Convertit une seule ligne de donnée uuencoded en binaire et renvoie la donnée binaire. Les lignes contiennent normalement 45 octets (binaire), sauf pour la dernière ligne. Il se peut que la ligne de donnée soit suivie d’un espace blanc.
-
binascii.
b2a_uu
(data)¶ Convert binary data to a line of ASCII characters, the return value is the converted line, including a newline char. The length of data should be at most 45.
-
binascii.
a2b_base64
(string)¶ Convertit un bloc de donnée en base64 en binaire et renvoie la donnée binaire. Plus d’une ligne peut être passé à la fois.
-
binascii.
b2a_base64
(data)¶ Convert binary data to a line of ASCII characters in base64 coding. The return value is the converted line, including a newline char. The newline is added because the original use case for this function was to feed it a series of 57 byte input lines to get output lines that conform to the MIME-base64 standard. Otherwise the output conforms to RFC 3548.
-
binascii.
a2b_qp
(string[, header])¶ Convertit un bloc de données quoted-printable en binaire et renvoie les données binaires. Plus d’une ligne peut être passée à la fois. Si l’argument optionnel header est présent et vrai, les traits soulignés seront décodés en espaces.
-
binascii.
b2a_qp
(data[, quotetabs, istext, header])¶ Convert binary data to a line(s) of ASCII characters in quoted-printable encoding. The return value is the converted line(s). If the optional argument quotetabs is present and true, all tabs and spaces will be encoded. If the optional argument istext is present and true, newlines are not encoded but trailing whitespace will be encoded. If the optional argument header is present and true, spaces will be encoded as underscores per RFC1522. If the optional argument header is present and false, newline characters will be encoded as well; otherwise linefeed conversion might corrupt the binary data stream.
-
binascii.
a2b_hqx
(string)¶ Convertit un bloc de donnée ASCII au format binhex4 en binaire, sans faire de décompression RLE. La chaîne de caractères doit contenir un nombre complet d’octet binaires ou (au cas où la dernière portion de donnée est au format binhex4) avoir les bits restants à 0.
-
binascii.
rledecode_hqx
(data)¶ Réalise une décompression RLE sur la donnée, d’après la norme binhex4. L’algorithme utilise
0x90
après un octet comme un indicateur de répétition, suivi d’un décompte. Un décompte de0
définit une valeur d’octet de0x90
. La routine renvoie la donnée décompressée, sauf si la donnée entrante se finit sur un indicateur de répétition orphelin. Dans ce cas l’exceptionIncomplete
est levée.
-
binascii.
rlecode_hqx
(data)¶ Réalise une compression RLE de type binhex4 sur data et renvoie le résultat.
-
binascii.
b2a_hqx
(data)¶ Réalise une traduction hexbin4 de binaire à ASCII et renvoie la chaîne de caractères résultante. L’argument doit être RLE-coded, et avoir une longueur divisible par 3 (sauf, éventuellement, le dernier fragment).
-
binascii.
crc_hqx
(data, crc)¶ Compute a 16-bit CRC value of data, starting with an initial crc and returning the result. This uses the CRC-CCITT polynomial x16 + x12 + x5 + 1, often represented as 0x1021. This CRC is used in the binhex4 format.
-
binascii.
crc32
(data[, crc])¶ Compute CRC-32, the 32-bit checksum of data, starting with an initial crc. This is consistent with the ZIP file checksum. Since the algorithm is designed for use as a checksum algorithm, it is not suitable for use as a general hash algorithm. Use as follows:
print binascii.crc32("hello world") # Or, in two pieces: crc = binascii.crc32("hello") crc = binascii.crc32(" world", crc) & 0xffffffff print 'crc32 = 0x%08x' % crc
Note
To generate the same numeric value across all Python versions and platforms use crc32(data) & 0xffffffff. If you are only using the checksum in packed binary format this is not necessary as the return value is the correct 32bit binary representation regardless of sign.
Modifié dans la version 2.6: The return value is in the range [-2**31, 2**31-1] regardless of platform. In the past the value would be signed on some platforms and unsigned on others. Use & 0xffffffff on the value if you want it to match Python 3 behavior.
Modifié dans la version 3.0: The return value is unsigned and in the range [0, 2**32-1] regardless of platform.
-
binascii.
b2a_hex
(data)¶ -
binascii.
hexlify
(data)¶ Return the hexadecimal representation of the binary data. Every byte of data is converted into the corresponding 2-digit hex representation. The resulting string is therefore twice as long as the length of data.
-
binascii.
a2b_hex
(hexstr)¶ -
binascii.
unhexlify
(hexstr)¶ Return the binary data represented by the hexadecimal string hexstr. This function is the inverse of
b2a_hex()
. hexstr must contain an even number of hexadecimal digits (which can be upper or lower case), otherwise aTypeError
is raised.
-
exception
binascii.
Error
¶ Exception levée en cas d’erreurs. Ce sont typiquement des erreurs de programmation.
-
exception
binascii.
Incomplete
¶ Exception levée par des données incomplète. Il ne s’agit généralement pas d’erreurs de programmation, mais elles peuvent être traitées en lisant un peu plus de données et en réessayant.
Voir aussi