Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 980653
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T04:25:05+00:00 2026-05-16T04:25:05+00:00

I’ve picked up some old code that I need to work with and I

  • 0

I’ve picked up some old code that I need to work with and I have the following function in C

int pem64_decode_bytes(const char *intext,
                       int nchars,
                       unsigned char *outbytes)
{
  unsigned char *outbcopy = outbytes;
  while (nchars >= 4) {
    char 
      c1 = intext[0], 
      c2 = intext[1],
      c3 = intext[2],
      c4 = intext[3];
    int 
      b1 = pem64_dict_offset(c1), 
      b2 = pem64_dict_offset(c2),
      b3 = pem64_dict_offset(c3),
      b4 = pem64_dict_offset(c4);

    if ((b1 == -1) || (b2 == -1) || (b3 == -1) || (b4 == -1))
      return outbytes - outbcopy;

    *(outbytes++) = (b1 << 2) | (b2 >> 4);

    if (c3 != FILLERCHAR)
      *(outbytes++) = ((b2 & 0xf) << 4) | (b3 >> 2);
    if (c4 != FILLERCHAR)
      *(outbytes++) = ((b3 & 0x3) << 6) | b4;

    nchars -= 4;
    intext += 4;
  }

  return outbytes - outbcopy;
}

It should decode a packet of data that has been encoded. Does anyone know if this is a standard function? I need to convert this to C#, I’m not a C coder does anyone know of any samples that do this?

Edit

=======

public static List<byte> pem64_decode_bytes(string InText, int NumberOfBytes)
    {
        var RetData = new List<byte>();

        while (NumberOfBytes >= 4)
        {
            char c1 = InText[0];
            char c2 = InText[1];
            char c3 = InText[2];
            char c4 = InText[3];

            int b1 = pem64_dict_offset(c1);
            int b2 = pem64_dict_offset(c2);
            int b3 = pem64_dict_offset(c3);
            int b4 = pem64_dict_offset(c4);

            if (b1 == -1 || b2 == -1 || b3 == -1 || b4 == -1)
            {
                return RetData;
            }

            (outbytes)++.Deref = b1 << 2 | b2 >> 4;
            if (c3 != FILLERCHAR)
            {
                (outbytes)++.Deref = (b2 & 0xf) << 4 | b3 >> 2;
            }
            if (c4 != FILLERCHAR)
            {
                (outbytes)++.Deref = (b3 & 0x3) << 6 | b4;
            }

            NumberOfBytes -= 4;
        }

        return RetData;
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T04:25:06+00:00Added an answer on May 16, 2026 at 4:25 am

    Do you have the source for pem64_dict_offset too? I don’t recognise this as a standard function, although it looks rather like Base64 decoding.

    If so, it probably wouldn’t be very hard to convert to C#.

    The *(outbytes++) thing which is probably terrifying to a non-C programmer is just appending a byte to a block of bytes.

    A C# analogy would be:

    List<Byte> outbytes = new List<Byte>()
    outbytes.Add(the new byte)
    

    The ‘return outbytes-outbcopy’ would become ‘return outbytes.Count’ (Although it would be more typical in C# just to return the list, rather than require the caller to allocate it for you.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I need a function that will clean a strings' special characters. I do NOT
I have just tried to save a simple *.rtf file with some websites and
I have this code to decode numeric html entities to the UTF8 equivalent character.
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have an MVC Razor view @{ ViewBag.Title = Index; var c = (char)146;
I have thousands of HTML files to process using Groovy/Java and I need to
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.