ó
l]›]c           @` s/   d  d l  m Z m Z m Z m Z d „  Z d S(   i    (   t   unicode_literalst   divisiont   absolute_importt   print_functionc         C` s'   x  t  |  ƒ | k  r" d |  }  q W|  S(   u  
    Ensure a byte string representing a positive integer is a specific width
    (in bytes)

    :param bytes_:
        The integer byte string

    :param width:
        The desired width as an integer

    :return:
        A byte string of the width specified
    s    (   t   len(   t   bytes_t   width(    (    s.   lib/python2.7/site-packages/asn1crypto/_int.pyt
   fill_width   s    N(   t
   __future__R    R   R   R   R   (    (    (    s.   lib/python2.7/site-packages/asn1crypto/_int.pyt   <module>   s   "