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 1927996
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T06:55:34+00:00 2026-05-17T06:55:34+00:00

I get a FormatException for this Convert.FromBase64String method. I don’t mind about hardcoding the

  • 0

I get a FormatException for this Convert.FromBase64String method. I don’t mind about hardcoding the value. Anyone can explain why I get this exception.

        // Instantiate a new RijndaelManaged object to perform string symmetric encryption
        RijndaelManaged rijndaelCipher = new RijndaelManaged();

        // Set key and IV
        rijndaelCipher.Key = Convert.FromBase64String("TASK");
        rijndaelCipher.IV = Convert.FromBase64String("0123");

Thank you.

  • 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-17T06:55:35+00:00Added an answer on May 17, 2026 at 6:55 am

    Your strings aren’t valid Base64.

    You need to generate two cryptographically secure 256-bit random numbers, convert them to Base64, and embed them in your source.

    For example:

    var alg = new RijndaelManaged();
    alg.BlockSize = alg.KeySize = 256;
    Console.WriteLine("Key: " + Convert.ToBase64String(alg.Key));
    Console.WriteLine("IV:  " + Convert.ToBase64String(alg.IV));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get this FormatException after i upgraded to VS 2010. Not anything really special.
GET is a convenient method to post the form id, post the website id
I get this error while accessing a php script: W/System.err: Error reading from ./org/apache/harmony/awt/www/content/text/html.class
Looking at a Get-WebFile script over on PoshCode, http://poshcode.org/3226 , I noticed this strange-to-me
I have a simple function which tries to get a value from an Obout
I am getting a String.FormatException trying to convert/parse a string when the culture is
This code: public class PhotoDescriptor { public DateTime DateCreatedUtc { get; set; } }
This code: private void comboBoxFontSize_SelectedIndexChanged(object sender, EventArgs e) { rtbResults.Font.Size = Convert.ToInt32(comboBoxFontSize.SelectedItem); } ...generates
I using String.Format this way: String.Format($(function() { $('{0}').menu(); });, blaId); I get an exception:
Get class from div inside an li and add to the same li. The

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.