<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: RTD RNG in S32K</title>
    <link>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1840162#M33770</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/224860"&gt;@vikmonti7804&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm already checking this with SW team because I'm not familiar with Crypto layer. I'm trying to prioritize this but it may take some time anyway. I will get back to you as soon as possible.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;</description>
    <pubDate>Wed, 03 Apr 2024 10:53:06 GMT</pubDate>
    <dc:creator>lukaszadrapa</dc:creator>
    <dc:date>2024-04-03T10:53:06Z</dc:date>
    <item>
      <title>RTD RNG</title>
      <link>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1835321#M33457</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I am trying to generate the RNG from the RTD crypto mcal&lt;/P&gt;&lt;P&gt;api&amp;nbsp;Std_ReturnType Crypto_ProcessJob&lt;BR /&gt;(&lt;BR /&gt;uint32 objectId,&lt;BR /&gt;Crypto_JobType* job&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;.Crypto_JobType CryptJob =&lt;BR /&gt;{&lt;BR /&gt;CRYPTO_ALGOFAM_RNG, /* jobId&lt;BR /&gt;CRYPTO_JOBSTATE_ACTIVE, /* jobState&lt;BR /&gt;{&lt;BR /&gt;NULL_PTR,&amp;nbsp; &amp;nbsp; &amp;nbsp;//App_au8EncryptedSharedSecret, /* inputPtr&lt;BR /&gt;0, //APP_ENCRYPTED_SHARED_SECRET_SIZE, /* inputLength&lt;BR /&gt;NULL_PTR,&amp;nbsp; &amp;nbsp; &amp;nbsp; /* secondaryInputPtr&lt;BR /&gt;0U,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* secondaryInputLength&lt;BR /&gt;NULL_PTR,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* tertiaryInputPtr&lt;BR /&gt;0U,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* tertiaryInputLength&lt;BR /&gt;0,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//App_au8PlainSharedSecret, /* outputPtr&lt;BR /&gt;0,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//&amp;amp;App_u32PlainSharedSecretSize, /* outputLengthPtr&lt;BR /&gt;NULL_PTR,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* secondaryOutputPtr&lt;BR /&gt;NULL_PTR,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* secondaryOutputLengthPtr&lt;BR /&gt;0U, /* input64&lt;BR /&gt;NULL_PTR,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* verifyPtr&lt;BR /&gt;NULL_PTR,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* output64Ptr&lt;BR /&gt;CRYPTO_OPERATIONMODE_START, //CRYPTO_OPERATIONMODE_SINGLECALL,&lt;BR /&gt;0U,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* cryIfKeyId&lt;BR /&gt;0U,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* targetCryIfKeyId&lt;BR /&gt;},&lt;BR /&gt;&amp;amp;JobPrimitiveInfo, /* jobPrimitiveInfo&lt;BR /&gt;&amp;amp;JobInfoType, /* jobInfo&lt;BR /&gt;NULL_PTR,&lt;BR /&gt;0U&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CryptJob.jobId = CRYPTO_ALGOFAM_RNG;&lt;BR /&gt;CryptJob.jobState = CRYPTO_JOBSTATE_ACTIVE;&lt;BR /&gt;CryptJob.jobPrimitiveInputOutput.outputPtr = rngNum;&lt;BR /&gt;CryptJob.jobPrimitiveInputOutput.outputLengthPtr = (uint32_t *)rngLength;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But not able to get the random number, kindly hep with this.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 09:19:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1835321#M33457</guid>
      <dc:creator>vikmonti7804</dc:creator>
      <dc:date>2024-03-26T09:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: RTD RNG</title>
      <link>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1836996#M33556</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you please provide the help for the above problem.&lt;/P&gt;&lt;P&gt;We have to develop autosar complaint firmware so we are using the RTD package for the development, I see two Api given for use from application layer.&lt;/P&gt;&lt;P&gt;Crypto_Hse_ProcessJob and Crypto_ProcessJob,&lt;/P&gt;&lt;P&gt;1. which one should we use at application layer?&lt;/P&gt;&lt;P&gt;2. Kindly provode the solution of above problem with appropriate API?&lt;/P&gt;&lt;P&gt;we are getting delayed in customer deliver so reply asap.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2024 06:28:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1836996#M33556</guid>
      <dc:creator>vikmonti7804</dc:creator>
      <dc:date>2024-03-28T06:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: RTD RNG</title>
      <link>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1839961#M33759</link>
      <description>&lt;P&gt;I have not got any reply on my question, kindly provide the solution asap.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 07:10:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1839961#M33759</guid>
      <dc:creator>vikmonti7804</dc:creator>
      <dc:date>2024-04-03T07:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: RTD RNG</title>
      <link>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1840162#M33770</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/224860"&gt;@vikmonti7804&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm already checking this with SW team because I'm not familiar with Crypto layer. I'm trying to prioritize this but it may take some time anyway. I will get back to you as soon as possible.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 10:53:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1840162#M33770</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2024-04-03T10:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: RTD RNG</title>
      <link>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1841228#M33855</link>
      <description>&lt;P&gt;Kindly prioritize it as it has been many days passed.&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2024 10:27:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1841228#M33855</guid>
      <dc:creator>vikmonti7804</dc:creator>
      <dc:date>2024-04-05T10:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: RTD RNG</title>
      <link>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1841996#M33899</link>
      <description>&lt;P&gt;Sorry, I'm still waiting even though it's a high priority...&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 05:19:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/RTD-RNG/m-p/1841996#M33899</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2024-04-08T05:19:15Z</dc:date>
    </item>
  </channel>
</rss>

