Home
last modified time | relevance | path

Searched refs:X509Store (Results 1 – 25 of 264) sorted by relevance

1234567891011

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Security.Cryptography.X509Certificates/
H A DX509StoreTest.cs52 X509Store xs = new X509Store (s); in CleanUpStore()
76 X509Store xs = new X509Store (); in ConstructorEmpty()
114 X509Store xs = new X509Store (null); in ConstructorStoreString_Null()
123 X509Store xs = new X509Store (String.Empty); in ConstructorStoreString_Empty()
142 X509Store xs = new X509Store ("AuthRoot"); in ConstructorStoreStringAuthRoot()
152 X509Store xs = new X509Store ("CA"); in ConstructorStoreStringCertificateAuthority()
162 X509Store xs = new X509Store ("Disallowed"); in ConstructorStoreStringDisallowed()
172 X509Store xs = new X509Store ("My"); in ConstructorStoreStringMy()
182 X509Store xs = new X509Store ("Root"); in ConstructorStoreStringRoot()
213 X509Store xs = new X509Store ("Mono"); in ConstructorStoreStringMono()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.X509Certificates/tests/
H A DX509StoreTests.cs14 using (X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in OpenMyStore()
23 using (X509Store store = new X509Store(StoreLocation.CurrentUser)) in Constructor_DefaultStoreName()
32 using (X509Store store = new X509Store(StoreLocation.CurrentUser)) in Constructor_IsNotOpen()
41 using (X509Store store = new X509Store(StoreName.My)) in Constructor_DefaultStoreLocation()
46 using (X509Store store = new X509Store("My")) in Constructor_DefaultStoreLocation()
56 using (X509Store store1 = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in Constructor_StoreHandle()
68 using (X509Store store2 = new X509Store(store1.StoreHandle)) in Constructor_StoreHandle()
91 using (X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in Constructor_StoreHandle_Unix()
140 X509Store store; in TestDispose()
190 X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser); in Dispose_IsOpenFalse()
[all …]
H A DX509StoreMutableTests.OSX.cs40 using (var store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in PersistKeySet_OSX()
67 using (var store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in AddToStore_NonExportable_OSX()
87 using (var store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in AddToStore_Exportable()
108 using (var store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in AddToStoreTwice()
132 using (var store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in AddPrivateAfterPublic()
158 using (var store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in AddPublicAfterPrivate()
185 using (var store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in VerifyRemove()
205 using (var store = new X509Store(StoreName.My, StoreLocation.CurrentUser)) in RemovePublicDeletesPrivateKey()
232 private static bool StoreHasPrivateKey(X509Store store, X509Certificate2 forCert) in StoreHasPrivateKey()
249 private static bool IsCertInStore(X509Certificate2 cert, X509Store store) in IsCertInStore()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Security/Mono.Security.X509/
H A DX509Stores.cs48 private X509Store _personal;
49 private X509Store _other;
50 private X509Store _intermediate;
51 private X509Store _trusted;
52 private X509Store _untrusted;
62 public X509Store Personal {
72 public X509Store OtherPeople {
82 public X509Store IntermediateCA {
92 public X509Store TrustedRoot {
102 public X509Store Untrusted {
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.X509Certificates/src/System/Security/Cryptography/X509Certificates/
H A DX509Store.cs11 public sealed class X509Store : IDisposable class
19 public X509Store() in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
24 public X509Store(string storeName) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
29 public X509Store(StoreName storeName) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
34 public X509Store(StoreLocation storeLocation) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
39 public X509Store(StoreName storeName, StoreLocation storeLocation) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
77 public X509Store(StoreName storeName, StoreLocation storeLocation, OpenFlags flags) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
83 public X509Store(string storeName, StoreLocation storeLocation) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
92 …public X509Store(string storeName, System.Security.Cryptography.X509Certificates.StoreLocation sto… in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
99 public X509Store(IntPtr storeHandle) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
/dports/java/bouncycastle15/crypto-169/prov/src/main/java/org/bouncycastle/x509/
H A DX509Store.java14 public class X509Store class
17 public static X509Store getInstance(String type, X509StoreParameters parameters) in getInstance()
32 … public static X509Store getInstance(String type, X509StoreParameters parameters, String provider) in getInstance()
38 …public static X509Store getInstance(String type, X509StoreParameters parameters, Provider provider) in getInstance()
53 … private static X509Store createStore(X509Util.Implementation impl, X509StoreParameters parameters) in createStore()
59 return new X509Store(impl.getProvider(), spi); in createStore()
65 private X509Store( in X509Store() method in X509Store
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/CryptoPkg/Library/TlsLib/
H A DTlsInit.c165 X509_STORE *X509Store; in TlsNew() local
243 X509Store = SSL_CTX_get_cert_store (SslCtx); in TlsNew()
244 if (X509Store == NULL) { in TlsNew()
245 X509Store = X509_STORE_new (); in TlsNew()
246 if (X509Store == NULL) { in TlsNew()
250 SSL_CTX_set1_verify_cert_store (SslCtx, X509Store); in TlsNew()
251 X509_STORE_free (X509Store); in TlsNew()
258 X509Store, in TlsNew()
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/CryptoPkg/Library/TlsLib/
H A DTlsInit.c165 X509_STORE *X509Store; in TlsNew() local
243 X509Store = SSL_CTX_get_cert_store (SslCtx); in TlsNew()
244 if (X509Store == NULL) { in TlsNew()
245 X509Store = X509_STORE_new (); in TlsNew()
246 if (X509Store == NULL) { in TlsNew()
250 SSL_CTX_set1_verify_cert_store (SslCtx, X509Store); in TlsNew()
251 X509_STORE_free (X509Store); in TlsNew()
258 X509Store, in TlsNew()
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/CryptoPkg/Library/TlsLib/
H A DTlsInit.c165 X509_STORE *X509Store; in TlsNew() local
243 X509Store = SSL_CTX_get_cert_store (SslCtx); in TlsNew()
244 if (X509Store == NULL) { in TlsNew()
245 X509Store = X509_STORE_new (); in TlsNew()
246 if (X509Store == NULL) { in TlsNew()
250 SSL_CTX_set1_verify_cert_store (SslCtx, X509Store); in TlsNew()
251 X509_STORE_free (X509Store); in TlsNew()
258 X509Store, in TlsNew()
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/CryptoPkg/Library/TlsLib/
H A DTlsInit.c165 X509_STORE *X509Store; in TlsNew() local
243 X509Store = SSL_CTX_get_cert_store (SslCtx); in TlsNew()
244 if (X509Store == NULL) { in TlsNew()
245 X509Store = X509_STORE_new (); in TlsNew()
246 if (X509Store == NULL) { in TlsNew()
250 SSL_CTX_set1_verify_cert_store (SslCtx, X509Store); in TlsNew()
251 X509_STORE_free (X509Store); in TlsNew()
258 X509Store, in TlsNew()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/CryptoPkg/Library/TlsLib/
H A DTlsInit.c165 X509_STORE *X509Store; in TlsNew() local
243 X509Store = SSL_CTX_get_cert_store (SslCtx); in TlsNew()
244 if (X509Store == NULL) { in TlsNew()
245 X509Store = X509_STORE_new (); in TlsNew()
246 if (X509Store == NULL) { in TlsNew()
250 SSL_CTX_set1_verify_cert_store (SslCtx, X509Store); in TlsNew()
251 X509_STORE_free (X509Store); in TlsNew()
258 X509Store, in TlsNew()
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/CryptoPkg/Library/TlsLib/
H A DTlsInit.c165 X509_STORE *X509Store; in TlsNew() local
243 X509Store = SSL_CTX_get_cert_store (SslCtx); in TlsNew()
244 if (X509Store == NULL) { in TlsNew()
245 X509Store = X509_STORE_new (); in TlsNew()
246 if (X509Store == NULL) { in TlsNew()
250 SSL_CTX_set1_verify_cert_store (SslCtx, X509Store); in TlsNew()
251 X509_STORE_free (X509Store); in TlsNew()
258 X509Store, in TlsNew()
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/CryptoPkg/Library/TlsLib/
H A DTlsInit.c165 X509_STORE *X509Store; in TlsNew() local
243 X509Store = SSL_CTX_get_cert_store (SslCtx); in TlsNew()
244 if (X509Store == NULL) { in TlsNew()
245 X509Store = X509_STORE_new (); in TlsNew()
246 if (X509Store == NULL) { in TlsNew()
250 SSL_CTX_set1_verify_cert_store (SslCtx, X509Store); in TlsNew()
251 X509_STORE_free (X509Store); in TlsNew()
258 X509Store, in TlsNew()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/edk2/CryptoPkg/Library/TlsLib/
H A DTlsInit.c165 X509_STORE *X509Store; in TlsNew() local
243 X509Store = SSL_CTX_get_cert_store (SslCtx); in TlsNew()
244 if (X509Store == NULL) { in TlsNew()
245 X509Store = X509_STORE_new (); in TlsNew()
246 if (X509Store == NULL) { in TlsNew()
250 SSL_CTX_set1_verify_cert_store (SslCtx, X509Store); in TlsNew()
251 X509_STORE_free (X509Store); in TlsNew()
258 X509Store, in TlsNew()
/dports/sysutils/edk2/edk2-edk2-stable202102/CryptoPkg/Library/TlsLib/
H A DTlsInit.c165 X509_STORE *X509Store; in TlsNew() local
243 X509Store = SSL_CTX_get_cert_store (SslCtx); in TlsNew()
244 if (X509Store == NULL) { in TlsNew()
245 X509Store = X509_STORE_new (); in TlsNew()
246 if (X509Store == NULL) { in TlsNew()
250 SSL_CTX_set1_verify_cert_store (SslCtx, X509Store); in TlsNew()
251 X509_STORE_free (X509Store); in TlsNew()
258 X509Store, in TlsNew()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Security.Cryptography.X509Certificates/
H A DX509Store.cs43 public sealed class X509Store : IDisposable { class
49 private MX.X509Store store;
54 public X509Store () in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
59 public X509Store (string storeName) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
64 public X509Store (StoreName storeName) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
69 public X509Store (StoreLocation storeLocation) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
74 public X509Store (StoreName storeName, StoreLocation storeLocation) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
94 public X509Store (IntPtr storeHandle) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
101 public X509Store (string storeName, StoreLocation storeLocation) in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
148 internal MX.X509Store Store {
H A DX509ChainImplMono.cs244 private X509Store root_store;
245 private X509Store ca_store;
246 private X509Store user_root_store;
247 private X509Store user_ca_store;
253 X509Store store = LMRootStore;
267 X509Store store = LMCAStore;
277 private X509Store LMRootStore {
280 root_store = new X509Store (StoreName.Root, StoreLocation.LocalMachine);
290 private X509Store UserRootStore {
303 private X509Store LMCAStore {
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/src/System/Net/
H A DCertificateValidationPal.cs15 private static volatile X509Store s_myCertStoreEx;
16 private static volatile X509Store s_myMachineCertStoreEx;
20 internal static X509Store EnsureStoreOpened(bool isMachineStore) in EnsureStoreOpened()
22 X509Store store = isMachineStore ? s_myMachineCertStoreEx : s_myCertStoreEx; in EnsureStoreOpened()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/security/system/security/cryptography/x509/
H A Dx509store.cs44 public sealed class X509Store : IDisposable{ class
52 public X509Store () : this("MY", StoreLocation.CurrentUser) {} in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
54 public X509Store (string storeName) : this (storeName, StoreLocation.CurrentUser) {} in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
56 public X509Store (StoreName storeName) : this(storeName, StoreLocation.CurrentUser) {} in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
58 public X509Store (StoreLocation storeLocation) : this ("MY", storeLocation) {} in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
63 public X509Store (StoreName storeName, StoreLocation storeLocation) { in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
102 public X509Store (string storeName, StoreLocation storeLocation) { in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
113 public X509Store (IntPtr storeHandle) { in X509Store() method in System.Security.Cryptography.X509Certificates.X509Store
/dports/devel/msbuild/msbuild-0.06/src/Tasks/
H A DResolveKeySource.cs238 X509Store personalStore = new X509Store(StoreName.My, StoreLocation.CurrentUser); in ResolveManifestKey()
280X509Store personalStore = new X509Store(StoreName.My, StoreLocation.CurrentUser); in ResolveManifestKey()
309X509Store personalStore = new X509Store(StoreName.My, StoreLocation.CurrentUser); in ResolveManifestKey()
/dports/sysutils/rsfetch/rsfetch-2.0.0/cargo-crates/openssl-0.10.28/src/x509/
H A Dstore.rs74 pub fn build(self) -> X509Store { in build() argument
75 let store = X509Store(self.0); in build()
103 pub struct X509Store;
/dports/sysutils/flowgger/flowgger-0.2.10/cargo-crates/openssl-0.10.28/src/x509/
H A Dstore.rs74 pub fn build(self) -> X509Store {
75 let store = X509Store(self.0);
103 pub struct X509Store;
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/openssl-0.10.26/src/x509/
H A Dstore.rs74 pub fn build(self) -> X509Store { in build() argument
75 let store = X509Store(self.0); in build()
103 pub struct X509Store;
/dports/www/castor/castor-0.8.16/cargo-crates/openssl-0.10.30/src/x509/
H A Dstore.rs75 pub fn build(self) -> X509Store { in build() argument
76 let store = X509Store(self.0); in build()
104 pub struct X509Store;
/dports/dns/dog/dog-0.1.0/cargo-crates/openssl-0.10.30/src/x509/
H A Dstore.rs75 pub fn build(self) -> X509Store { in build() argument
76 let store = X509Store(self.0); in build()
104 pub struct X509Store;

1234567891011