Ignore:
Timestamp:
Feb 7, 2019, 8:36:33 AM (5 years ago)
Author:
coas-nagasima
Message:

wolfsslを3.15.7にバージョンアップ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_rx/trunk/wolfssl-3.12.2/wolfcrypt/src/camellia.c

    r337 r372  
    15991599int wc_CamelliaCbcEncrypt(Camellia* cam, byte* out, const byte* in, word32 sz)
    16001600{
     1601    word32 blocks;
    16011602    if (cam == NULL || out == NULL || in == NULL) {
    16021603        return BAD_FUNC_ARG;
    16031604    }
    1604     word32 blocks = sz / CAMELLIA_BLOCK_SIZE;
     1605    blocks = sz / CAMELLIA_BLOCK_SIZE;
    16051606
    16061607    while (blocks--) {
     
    16201621int wc_CamelliaCbcDecrypt(Camellia* cam, byte* out, const byte* in, word32 sz)
    16211622{
     1623    word32 blocks;
    16221624    if (cam == NULL || out == NULL || in == NULL) {
    16231625        return BAD_FUNC_ARG;
    16241626    }
    1625     word32 blocks = sz / CAMELLIA_BLOCK_SIZE;
     1627    blocks = sz / CAMELLIA_BLOCK_SIZE;
    16261628
    16271629    while (blocks--) {
Note: See TracChangeset for help on using the changeset viewer.