Ejemplo n.º 1
0
def read_stored_checksum(target, timestamped=True):
    """Read the checksum.

    Returns the checksum (as hex) or None.
    """
    return virtutils.read_stored_info(target,
                                      field='sha1',
                                      timestamped=timestamped)
Ejemplo n.º 2
0
def read_stored_checksum(target):
    """Read the checksum.

    Returns the checksum (as hex) or None.
    """
    return virtutils.read_stored_info(target, field='sha1')
Ejemplo n.º 3
0
def read_stored_checksum(target):
    """Read the checksum.

    Returns the checksum (as hex) or None.
    """
    return virtutils.read_stored_info(target, field='sha1')
Ejemplo n.º 4
0
def read_stored_checksum(target, timestamped=True):
    """Read the checksum.

    Returns the checksum (as hex) or None.
    """
    return virtutils.read_stored_info(target, field="sha1", timestamped=timestamped)