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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T02:04:51+00:00 2026-05-13T02:04:51+00:00

There are 2 buttons which will generate 2 piece of data. What I need

  • 0

There are 2 buttons which will generate 2 piece of data. What I need to achieve is encrypt them separately and export to same file. Then I need be able to decrypt it later.

Is it possible to use CBC mode? Using the same stream to encrypt the 1st block of the 2nd piece of data by the last block of the 1st piece of data? (To avoid IV)

Or

I can do this in ECB mode? Would be good if someone can elaborate on this.

  • 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-13T02:04:51+00:00Added an answer on May 13, 2026 at 2:04 am

    You could always store the two values as separate properties of the file.

    [Serializable]
    public class EncryptedValues
    {
        public string Value1 { get; set; }
        public string Value2 { get; set; }
    
        public static EncryptedValues FromXml(string xmlString)
        {
            if (!string.IsNullOrEmpty(xmlString))
            {
                XmlSerializer xmlSerializer = new XmlSerializer(typeof(EncryptedValues));
                using (MemoryStream memoryStream = new MemoryStream())
                {
                    using (StreamWriter streamWriter = new StreamWriter(memoryStream))
                    {
                        streamWriter.Write(xmlString);
                        streamWriter.Flush();
                        memoryStream.Flush();
                        memoryStream.Position = 0;
    
                        return (xmlSerializer.Deserialize(memoryStream) as EncryptedValues);
                    }
                }
            }
    
            return null;
        }
    
        public string ToXml()
        {
            XmlSerializer xmlSerializer = new XmlSerializer(typeof(EncryptedValues));
    
            using (MemoryStream memoryStream = new MemoryStream())
            {
                using (StreamWriter streamWriter = new StreamWriter(memoryStream))
                {
                    xmlSerializer.Serialize(streamWriter, o);
                    streamWriter.Flush();
                    memoryStream.Flush();
                    memoryStream.Position = 0;
    
                    using (StreamReader streamReader = new StreamReader(memoryStream))
                    {
                        return streamReader.ReadToEnd();
                    }
                }
            }
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an app in which i have two buttons. Each will generate a
I am trying to create a UIAlertView with three buttons (which will be stacked).
So I have a div which will contain 3 buttons and I want these
I have a form which will generate a report for mailing. The form opens
In below link there is add button which allows you to ADD multiple textbox
I have div which has three buttons as, <div id=buttons> <input id=preview class=ButtonStyle type=submit
in MXML, there is a Button class which you can instantiate like so: <mx:Button
In my application one frame is there on which one button is there. If
I have a group of three radio buttons. Depending on which radio button is
I am having three images or buttons in a linear layout which fits fine

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.