def send_inputmsg_VN(tc_gser):
    ''' Send the TC with from input parameter in ASN.1 Value Notation '''
    instance = typeInstance()
    vn.valueNotationToCTypes(gser=tc_gser,
                             dest=instance,
                             sort=ASN1_AST['T-Int32'].type,
                             ASN1Mod=ASN1,
                             ASN1_AST=ASN1_AST)

    sendTC(instance)
Пример #2
0
def send_reject_transaction_VN(tc_gser):
    ''' Send the TC with from input parameter in ASN.1 Value Notation '''
    instance = typeInstance()
    vn.valueNotationToCTypes(gser=tc_gser,
                             dest=instance,
                             sort=ASN1_AST['MyString'].type,
                             ASN1Mod=ASN1,
                             ASN1_AST=ASN1_AST)

    sendTC(instance)