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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:44:45+00:00 2026-05-17T20:44:45+00:00

Question: I have some code for pgp encryption from here: http://blogs.microsoft.co.il/blogs/kim/archive/2009/01/23/pgp-zip-encrypted-files-with-c.aspx It has the

  • 0

Question: I have some code for pgp encryption from here:
http://blogs.microsoft.co.il/blogs/kim/archive/2009/01/23/pgp-zip-encrypted-files-with-c.aspx

It has the below method, using some LINQ.
I’m still on .NET 2.0 and can’t switch higher, yet…

How can I replace this expression with ordinary code?
I don’t really understand Linq, I guess it does some sorting ?

 private PgpSecretKey GetFirstSecretKey(PgpSecretKeyRingBundle secretKeyRingBundle)
        {
            foreach (PgpSecretKeyRing kRing in secretKeyRingBundle.GetKeyRings())
            {
                PgpSecretKey key = kRing.GetSecretKeys()
                    .Cast<PgpSecretKey>()
                    .Where(k => k.IsSigningKey)
                    .FirstOrDefault();
                if (key != null)
                    return key;
            }
            return null;
        }
  • 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-17T20:44:46+00:00Added an answer on May 17, 2026 at 8:44 pm

    Something like:

    foreach (PgpSecretKeyRing kRing in secretKeyRingBundle.GetKeyRings())
    {
        foreach (PgpSecretKey key in kRing.GetSecretKeys())
        {
            if (key.IsSigningKey)
            {
                return key;
            }
        }
    }
    return null;
    

    foreach implicitly performs a cast to the target type. Admittedly the original LINQ would have been more pleasantly written as:

    return (from keyring in secretKeyRingBundle.GetKeyRings()
            from PgpSecretKey key in keyring.GetSecretKeys()
            where key.IsSigningKey)
           .FirstOrDefault(); 
    

    (You may need to make the first from clause strongly typed too; it depends on what GetKeyRings() is declared to return.)

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

Sidebar

Related Questions

Here is my code (well, some of it). The question I have is, can
Using some code from this question I have set up some code to detect
I have some code which populates a hashtable with a question as the key
Quick question about include/requre_once . I have some code that is common to a
Edit: original question below, but I revise it now that I have some code
I'm not sure if I asked the question correctly. I have some code I
Question simple and quick: I have started to use Netbeans to write some code
I'm working on some JQuery code and I have a question about caching selectors.
i have what i hope is a quick question about some code i am
hi i have a question i have some code that works good on like

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.