-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkeytool.html
More file actions
67 lines (63 loc) · 3.11 KB
/
keytool.html
File metadata and controls
67 lines (63 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<head>
<title>Cyber Hashira | Learn Keytool</title>
<meta charset="UTF-8">
<meta name="description" content="This tutorial series teaches you how to use Keytool utility. You will learn a number of other things such as KeyStores, various types of keystores etc.">
<meta name="keywords" content="keytool, keystore, java keytool, java keystore">
<meta name="author" content="Cyber Hashira">
</head>
<link rel="stylesheet" href="css/style.css">
<div style="position: absolute;top:5px;left:10px">
<a href="index.html"><img src="images/ch_logo.jpg" width="10%"></a>
</div>
<body>
<h1>Cyber Hashira | Keytool</h1><br><br>
<table id="itemlist" style="position: center">
<tr>
<th>#</th>
<th width="20%">Video Title</th>
<th width=50%>Description</th>
<th width=20%>Notes</th>
<th width="10%">Video link</th>
</tr>
<tr>
<td>1.</td>
<td>Introduction to Keytool</td>
<td>This video introduces you to Keytool which is a Java based Cryptographic utility.</td>
<td><a href="notes/java_cryptography/keytool/Learn_Keytool_Part_1.html" target="_blank">Learn_Keytool_Part_1</a></td>
<td><a href="https://youtu.be/NH49dTEYPg0" target="_black"><img src="images/yt_logo.png" width="50"></a></td>
</tr>
<tr>
<td>2.</td>
<td>What is a keystore?</td>
<td>This video is about Java keystores. You will learn what keystores are, how they are used and the various types of keystores.</td>
<td><a href="notes/java_cryptography/keytool/Learn_Keytool_Part_2.html" target="_blank">Learn_Keytool_Part_2</a></td>
<td><a href="https://youtu.be/UNZzilk8bo8" target="_black"><img src="images/yt_logo.png" width="50"></a></td>
</tr>
<tr>
<td>3.</td>
<td>Migrating Keystores</td>
<td>This video teaches you how to migrate from one keystore to another.</td>
<td><a href="notes/java_cryptography/keytool/Learn_Keytool_Part_3.html" target="_blank">Learn_Keytool_Part_3</a></td>
<td><a href="https://youtu.be/06gJR9YtV9s" target="_black"><img src="images/yt_logo.png" width="50"></a></td>
</tr>
<tr>
<td>4</td>
<td>Using certificate extensions</td>
<td>This video teaches you how to apply various X.509 certificate extensions using keytool to a certificate.</td>
<td><a href="notes/java_cryptography/keytool/Learn_Keytool_Part_4.html" target="_blank">Learn_Keytool_Part_4</a></td>
<td><a href="https://youtu.be/AKPO4C3DVNM" target="_black"><img src="images/yt_logo.png" width="50"></a></td>
</tr>
<tr>
<td>5</td>
<td>Using CA Signed certificates.</td>
<td>This video teaches you how to generate certificate signing requests, gettting it signed by a CA and importing the CA signed certificate. I will be using an OpenSSL based issuing CA to sign a certificate request.</td>
<td><a href="notes/java_cryptography/keytool/Learn_Keytool_Part_5.html" target="_blank">Learn_Keytool_Part_5</a></td>
<td><a href="https://youtu.be/NQ4KPcweN6k" target="_black"><img src="images/yt_logo.png" width="50"></a></td>
</tr>
</table>
<br><br>
<a style="margin-left: 20px" href="javacryptography.html"> <- GO BACK</a>
</body>
<div style="position:absolute;top: 5px;right: 5px;font-size: 8pt;">** Last updated : Jan-29-2024 **</div>
</html>