Quali sono alcune buone pratiche di progettazione per l'archiviazione dei certificati multipiattaforma?

1

Domanda dalla lista di sviluppo di Bouncy Castle:

At present we use the Windows certificate store as:

var store = new X509Store(StoreName.My, StoreLocation.LocalMachine);
store.Open(OpenFlags.OpenExistingOnly | OpenFlags.ReadOnly);
var certs = store.Certificates.Find(X509FindType.FindBySubjectName, subjectName,
true);

We’d like to switch to something that’s more cross platform (esp Linux compatible). What are some good design patterns for a secure, cross platform certificate storage? We need to store RSA and EC certificates as well as their respective private keys (if they exist in the password protected PFX).

    
posta random65537 12.11.2013 - 19:53
fonte

0 risposte

Leggi altre domande sui tag