OpenSC API Reference sc_put_data 3 opensc sc_put_data Store a primitive data object on a card Synopsis #include <opensc.h> int sc_put_data(sc_card_t *card, unsigned int tag, const unsigned char *buf, size_t len); Description This function is used to store a primitive data object on card. It corresponds to the PUT DATA command in the ISO 7816 standard. The data to be sent to the card is stored in buf, which is buflen bytes long. The tag parameter specifies the object to be stored. Refer to the standard for the correct values to use. Return value Returns 0 if successful, or a negative value in case of error.