There are a number of variables to consider for a CRC:

    Polynomial
    No of bits (16 or 32)
    Normal (LSB first) or Reverse (MSB first)
    Initial value
    How the final value is manipulated (e.g. subtracted from 0xffff), or is a constant value

Typical CRCs:

    LRC:    Polynomial=0x81; 8 bits; Normal; Initial=0; Final=as calculated
    CRC16:  Polynomial=0xa001; 16 bits; Normal; Initial=0; Final=as calculated
    CCITT:  Polynomial=0x1021; 16 bits; reverse; Initial=0xffff; Final=0x1d0f
    Xmodem: Polynomial=0x1021; 16 bits; reverse; Initial=0; Final=0x1d0f
    CRC32:  Polynomial=0xebd88320; 32 bits; Normal; Initial=0xffffffff; Final=inverted value
    ZIP32:  Polynomial=0x04c11db7; 32 bits; Normal; Initial=0xffffffff; Final=as calculated

The first thing to do is to get some samples by changing  say the last byte.  This will assist you to figure out the number of bytes in the CRC.  

Is this a "homemade" algorithm.  In this case it may take some time.  Otherwise try the standard algorithms.

Try changing either the msb or the lsb of the last byte, and see how this changes the CRC.  This will give an indication of the direction.

To make it more difficult, there are implementations manipulate the CRC so that it will not affect the communications medium (protocol).

From your comment about RFID, it implies that the CRC is communications related.  Usually CRC16 is used for communicated, though CCITT is also used on some systems.

On the other hand, if this is UHF RFID tagging, then there are a few CRC schemes - a 5 bit one and some 16 bit ones.  These are documented in the ISO standards and the IPX data sheets.

    IPX:  Polynomial=0x8005; 16 bits; Reverse; Initial=0xffff; Final=as calculated
    ISO 18000-6B: Polynomial=0x1021; 16 bits; Reverse; Initial=0xffff; Final=as calculated
    ISO 18000-6C: Polynomial=0x1021; 16 bits; Reverse; Initial=0xffff; Final=as calculated
        Data must be padded with zeroes to make a multiple of 8 bits
    ISO CRC5: Polynomial=custom; 5 bits; Reverse; Initial=0x9; Final=shifted left by 3 bits
        Data must be padded with zeroes to make a multiple of 8 bits
    EPC class 1: Polynomial=custom 0x1021; 16 bits; Reverse; Initial=0xffff; Final=post processing of 16 zero bits