-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
60 lines (60 loc) · 2.22 KB
/
Copy pathindex.php
File metadata and controls
60 lines (60 loc) · 2.22 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
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="utf-8"
</head>
<title>SSH-Key Editor Example</title>
<header>
<h1> SSH-Key User </h1>
</header>
<body>
<main> <h2>Example User</h2>
<ul>
<li> Name: Malente Veza</li>
<li>Age: 26</li>
<li>Occupation: Unemployed</li>
<li>Technology: Has lower end HP laptop running windows 10</li>
<li> Needs: Be able to follow the screncast on how to get to and edit SSH-Key editor on bootcamp-coders.cnm.edu</li>
<li>Will be able to copy past/delete SSH-Keys into bootcamp-coders.cnm.edu</li>
</ul>
<h2>Use Case</h2>
Malente has just spent 30 min to an hour watching and rewatching SSH-key edioter for his bootcamp coders class. After pasting a SSH key he realized he entered the wrong number of bits for his SSH-key. Luckily the universal symbole for delete is located right next to his previous SSH-key. He deletes and adds his new SSH-key.
<h2>Example Flow</h2>
<ol>
<li>Opens boot-coders.cnm.edu/prework.</li>
<li>Server fetches information.</li>
<li>Hits SSH-key editor and page askes for log in.</li>
<li>Page reloads and displays Add SSH key and incorrect SSH-key is displayed.</li>
<li>Malente hits delete and pastes new SSH-key. </li>
<li>Server deletes and adds new SSH-key.</li>
<li>Malente sees the SSH-key added display.</li>
</ol>
<h2>Conceptual Model</h2>
<h3>Entities & Attributes</h3>
Profile
<ul>
<li>profileId(primary key)</li>
<li>profileEmail</li>
<li>profileHash</li>
<li>profileSalt</li>
</ul>
sshkey
<ul>
<li>sshkeyId(primary key)</li>
<li>sshkeyProfileId(foreign key)</li>
<li>sshkeyAlgorithm</li>
<li>sshkeyBits</li>
<li>sshkeyComment</li>
<li>sshkeyContent</li>
<li>sshkeyDate</li>
<li>sshkeyFingerprint</li>
<li>sshkeyVersion</li>
</ul>
<h2>Relations</h2>
<ul>
<li>One Profile can upload many ssh-keys (1 to n)</li>
</ul>
<img src="svg/ssh-key-erd%20(1)%20(4).svg" alt="ssh-key-erd(1)(4)">
</main>
</body>
</html>