This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/MSP430FR5994: Include File

Part Number: MSP430FR5994


Tool/software: Code Composer Studio

Hi,

I want to read one of the include files(#include <openssl/aes.h>)  in one of the code extracted from GIT hub. Is there way I could look at the include file from any where. Let me know the earliest.

Thanks

  • Are you asking how to open an include file in CCS? Or are you asking how to use GitHub to get a particular file?

    In CCS you can go to File -> Open File and specify the file you want to open. If this code is part of a CCS project you can just click on the #include line and hit F3 to open it.

    John
  • I actually got a CCS file from github and it contains #include <openssl/aes.h> file which is is what I couldn't access from anywhere. Pressing F3 doesn't give me anything for this file. Can you help me where I could get this one from.

  • Kinnera Chintamaneni said:
    I actually got a CCS file from github and it contains #include <openssl/aes.h> file which is is what I couldn't access from anywhere.

    Cryptography for TI Devices contains a link to an openssl download on the TI servers.

    However, as noted by the thread MSP432P401R: Calculating an SHA256 & HMACSHA256:

    However, be aware that OpenSSL is targeted at non-embedded devices and they are using a custom malloc() implementation for security reasons. So getting it to run might be a bit hard.

    I am not sure if the openssl download from the TI servers has been modified to support TI microcontrollers, or is only intended to run on the TI processors which support Linux (e.g. as documented in Build OpenSSL for Sitara).

    Kinnera Chintamaneni said:
    I want to read one of the include files(#include <openssl/aes.h>)  in one of the code extracted from GIT hub.

    Can you give a link to the code in question which included <openssl/aes.h> ?