<?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>ColdFire/68K Microcontrollers and ProcessorsのトピックRe: Building Libraries - GMP (Coldfire+ V1 MCF51GM)</title>
    <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279939#M11904</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.di-mgt.com.au/bigdigits.html"&gt;http://www.di-mgt.com.au/bigdigits.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jul 2013 11:58:35 GMT</pubDate>
    <dc:creator>scifi</dc:creator>
    <dc:date>2013-07-18T11:58:35Z</dc:date>
    <item>
      <title>Building Libraries - GMP (Coldfire+ V1 MCF51GM)</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279938#M11903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need some math functions to work with big integers (256 Bit) for ecdsa signature verifying&lt;/P&gt;&lt;P&gt;Can I build Libraries like GNU GMP also for the Coldfire MCU? Or maybe there`s another math library probably suiting better for this architecture?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 09:55:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279938#M11903</guid>
      <dc:creator>chbecker</dc:creator>
      <dc:date>2013-07-18T09:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Building Libraries - GMP (Coldfire+ V1 MCF51GM)</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279939#M11904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.di-mgt.com.au/bigdigits.html"&gt;http://www.di-mgt.com.au/bigdigits.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 11:58:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279939#M11904</guid>
      <dc:creator>scifi</dc:creator>
      <dc:date>2013-07-18T11:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Building Libraries - GMP (Coldfire+ V1 MCF51GM)</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279940#M11905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Christian, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;was that suggestion helpful? Please keep us posted, we'd like to know :smileywink:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Monica.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 18:02:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279940#M11905</guid>
      <dc:creator>Monica</dc:creator>
      <dc:date>2013-07-24T18:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Building Libraries - GMP (Coldfire+ V1 MCF51GM)</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279941#M11906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Monica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes the suggestion was helpful. I've implemented the ECDSA signature verifying algorithm successfully with the BigDigits Library for multiprecision math. The performance is slower than the GMP functions (implemented in mini-gmp.c subset). Therefor I have to optimize the math functions which are written in standard c with assembly functions. Unfortunately the calling convention between C-Compiler (CW 10.2) and assembly functions I have found for this problem (using emac Hardware) is different, so if anyone has this problem too, alsp take a look at &lt;A href="https://community.nxp.com/thread/308703"&gt;Problems with MAC and EMAC macros in ColdFire V1+&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 09:42:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279941#M11906</guid>
      <dc:creator>chbecker</dc:creator>
      <dc:date>2013-07-26T09:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Building Libraries - GMP (Coldfire+ V1 MCF51GM)</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279942#M11907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Christian,&lt;/P&gt;&lt;P&gt;great to know that issue was resolved, thanks for sharing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'll be keeping an eye on the other post :smileywink:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Monica.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 17:29:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Building-Libraries-GMP-Coldfire-V1-MCF51GM/m-p/279942#M11907</guid>
      <dc:creator>Monica</dc:creator>
      <dc:date>2013-07-26T17:29:22Z</dc:date>
    </item>
  </channel>
</rss>

