Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder.Build C# (CSharp) Method

Build() public method

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

Usage Example

コード例 #1
0
 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