You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2023. It is now read-only.
This is the Microsoft Azure Key Vault client library which allows for the consumption of Key Vault services. Azure Key Vault helps safeguard cryptographic keys and secrets used by cloud applications and services. By using Key Vault, you can encrypt keys and secrets (such as authentication keys, storage account keys, data encryption keys, .PFX files, and passwords) using keys protected by hardware security modules (HSMs). For added assurance, you can import or generate keys in HSMs. If you choose to do this, Microsoft processes your keys in FIPS 140-2 Level 2 validated HSMs (hardware and firmware).
4
6
Key Vault streamlines the key management process and enables you to maintain control of keys that access and encrypt your data. Developers can create keys for development and testing in minutes, and then seamlessly migrate them to production keys. Security administrators can grant (and revoke) permission to keys, as needed.
5
7
For more information refer to [What is Key Vault?](https://docs.microsoft.com/en-us/azure/key-vault/key-vault-whatis) or [Getting Started](https://docs.microsoft.com/en-us/azure/key-vault/key-vault-get-started).
6
8
9
+
Documentation for this SDK can be found at [Azure Key Vault Java Documentation](https://docs.microsoft.com/en-us/java/api/overview/azure/keyvault)
10
+
7
11
## Sample code
8
12
You can find sample code that illustrates key vault usage scenarios [here](https://azure.microsoft.com/en-us/resources/samples/?sort=0&service=key-vault&platform=java).
9
13
14
+
<table>
15
+
<tr>
16
+
<th>Category</th>
17
+
<th>Samples</th>
18
+
</tr>
19
+
<tr>
20
+
<td>Authentication</td>
21
+
<td>
22
+
<ul>
23
+
<li>
24
+
<a href="https://github.com/Azure-Samples/key-vault-java-authentication">Authenticating with a service principal and a self-signed certificate</a>
25
+
</li>
26
+
<li>
27
+
<a href="https://github.com/Azure-Samples/key-vault-java-authentication">Authenticating with ADAL through a callback</a>
28
+
</li>
29
+
<li>
30
+
<a href="https://github.com/Azure-Samples/key-vault-java-certificate-authentication/">Authenticating with a .pfx file</a>
31
+
</li>
32
+
</ul>
33
+
</td>
34
+
</tr>
35
+
<tr>
36
+
<td>Vault Management</td>
37
+
<td>
38
+
<ul>
39
+
<li>
40
+
<a href="https://github.com/Azure-Samples/key-vault-java-certificate-authentication/">Creating a vault</a>
41
+
</li>
42
+
<li>
43
+
<a href="https://github.com/Azure-Samples/key-vault-java-network-acl/">Creating a vault with access restrictions based on IP and Azure Virtual Networks</a>
<ahref="https://github.com/Azure-Samples/key-vault-java-certificate-authentication/">Verification of signature with both Java Security and Azure Key Vault REST</a>
61
+
</li>
62
+
<li>
63
+
<ahref="https://github.com/Azure-Samples/key-vault-java-certificate-authentication/">Injecting a .pfx file into a VM at deployment using a template</a>
64
+
</li>
65
+
<li>
66
+
<ahref="https://github.com/Azure-Samples/key-vault-java-recovery/">Using the soft delete and backup restore features</a>
For more information on using Java with Azure, see [here](https://azure.microsoft.com/en-us/develop/java/)
77
+
10
78
## Download
11
79
12
-
To get the binaries of this library as distributed by Microsoft, ready for use within your project, you can use Maven.
80
+
To get the binaries of this library as distributed by Microsoft, ready for use within your project, you can use Maven. Add the following fragment to you POM's dependencies.
0 commit comments