Changeset 2b5d966 in mainline for uspace/lib/crypto


Ignore:
Timestamp:
2015-04-30T21:44:54Z (10 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
df2bce32
Parents:
bf1733d3
Message:

libext4, crypto: add the CRC16-IBM implementation to the crypto library.

Location:
uspace/lib/crypto
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/crypto/Makefile

    rbf1733d3 r2b5d966  
    3333        crypto.c \
    3434        aes.c \
    35         rc4.c
     35        rc4.c \
     36        crc16_ibm.c
    3637
    3738include $(USPACE_PREFIX)/Makefile.common
  • uspace/lib/crypto/crypto.h

    rbf1733d3 r2b5d966  
    5656extern int pbkdf2(uint8_t *, size_t, uint8_t *, size_t, uint8_t *);
    5757
     58extern uint16_t crc16_ibm(uint16_t crc, uint8_t *buf, size_t len);
     59
    5860#endif
Note: See TracChangeset for help on using the changeset viewer.