Ignore:
Timestamp:
Jun 19, 2013 6:47:43 AM (11 years ago)
Author:
riza
Message:

Re #1680: Add initial support for Win64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/src/pjlib-util-test/encryption.c

    r3553 r4537  
    469469        pj_crc32_context ctx; 
    470470        pj_uint32_t crc0, crc1; 
    471         unsigned len; 
     471        pj_size_t len; 
    472472 
    473473        len = pj_ansi_strlen(crc32_test_data[i].input); 
     
    592592            out_len = sizeof(output); 
    593593            rc = pj_base64_encode((pj_uint8_t*)base64_test_vec[i].base256, 
    594                                   strlen(base64_test_vec[i].base256), 
     594                                  (int)strlen(base64_test_vec[i].base256), 
    595595                                  output, &out_len); 
    596596            if (rc != PJ_SUCCESS) 
     
    713713 
    714714    input_len = 2048; 
    715     total_len = input_len * LOOP; 
     715    total_len = (unsigned)input_len * LOOP; 
    716716    pool = pj_pool_create(mem, "enc", input_len+256, 0, NULL); 
    717717    if (!pool) 
     
    727727    for (i=0; i<PJ_ARRAY_SIZE(algorithms); ++i) { 
    728728        algorithms[i].init_context(&context); 
    729         algorithms[i].update(&context, input, input_len); 
     729        algorithms[i].update(&context, input, (unsigned)input_len); 
    730730        algorithms[i].final(&context, digest); 
    731731    } 
     
    739739        algorithms[i].init_context(&context); 
    740740        for (j=0; j<LOOP; ++j) { 
    741             algorithms[i].update(&context, input, input_len); 
     741            algorithms[i].update(&context, input, (unsigned)input_len); 
    742742        } 
    743743        algorithms[i].final(&context, digest); 
Note: See TracChangeset for help on using the changeset viewer.