Git Product home page Git Product logo

dataprotection's People

Contributors

tillig avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

dataprotection's Issues

Changes for ASP.NET Core 2.0

Travis, I wanted to thank you for posting this almost two years ago. I can't believe MS is ok with the problem this addresses -- or that the docs don't at least explain that the cert-object and PFX overrides for ProtectKeysWithCertificate are effectively useless. Only about a month ago they blew off somebody's request for help with vague handwaving about "framework limitations" -- and yet here we are with a simple, working example... from two years ago. Anyway, enough ranting.

I don't have time to convert to VS2017 and do a PR, but I thought I'd post the changes needed to integrate with ASP.NET Core 2.0. They changed how the encryptor is registered, apparently. (Also, for anyone wanting to target netcore instead of netframework, change the four references to RSACryptoServiceProvider in the encryptor and decryptor classes to just RSA -- everything else works after that.)

public static IDataProtectionBuilder ProtectKeysWithProvidedCertificate(this IDataProtectionBuilder builder, X509Certificate2 certificate)
{
    if(certificate == null)
    {
        throw new ArgumentNullException(nameof(certificate));
    }

    // save the certificate to DI
    builder.Services.AddSingleton(new CertificateEncryptionOptions(certificate));

    // set up the encryptor (encrypted nodes reference the decryptor by typename)
    builder.Services.AddSingleton<IConfigureOptions<KeyManagementOptions>>(provider =>
    {
        return new ConfigureOptions<KeyManagementOptions>(opts =>
        {
            opts.XmlEncryptor = ActivatorUtilities.CreateInstance<CertificateXmlEncryptor>(provider);
        });
    });

    return builder;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.