Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder.Build C# (CSharp) Méthode

Build() public méthode

public Build ( ) : Pkcs12Store
Résultat Pkcs12Store
		public Pkcs12Store Build()
		{
			return new Pkcs12Store(keyAlgorithm, certAlgorithm, useDerEncoding);
		}

Usage Example

 public KeyStoreViewModel(SystemX509.StoreName storeName, SystemX509.StoreLocation storeLocation)
 {
     var storeBuilder = new Pkcs12StoreBuilder();
     _store = storeBuilder.Build();
     Name = String.Format("System KeyStore: [{0} : {1}]", storeLocation.ToString(), storeName.ToString());
     Load(storeName, storeLocation);
 }
All Usage Examples Of Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::Build