This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

what is non-secure callable and when can use it ?

what is NSC and when can use it ?

Parents
  • Hi

    If you have a mulit-project that is made up of  a secure project and a non-secure project. If you need to call the secure code from non-secure code, you need a non-secure callable function. There are built in security features that stop the code from switching from non-secure to secure code arbitrarily. Using a non-secure callable function gives the non-secure code an entry point into the secure code. It ensures only secure functions the programmer wants available to non-secure code are callable.

    I hope this helps.

    Stuart

Reply
  • Hi

    If you have a mulit-project that is made up of  a secure project and a non-secure project. If you need to call the secure code from non-secure code, you need a non-secure callable function. There are built in security features that stop the code from switching from non-secure to secure code arbitrarily. Using a non-secure callable function gives the non-secure code an entry point into the secure code. It ensures only secure functions the programmer wants available to non-secure code are callable.

    I hope this helps.

    Stuart

Children