-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
26 lines (24 loc) · 758 Bytes
/
home.html
File metadata and controls
26 lines (24 loc) · 758 Bytes
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<Title>Cryptocol - Home</title>
</head>
<!-- javascript libraries -->
<script src="javascript/ecc.js"></script>
<script language="JavaScript">
//Generate key values on this page so they can be reused for multiple chat applications
function do_init() {
console.log("init Elliptic Curves")
//Create Elliptic curve private and public keys
//send public key to server
//store private key for access by other scripts
}
</script>
<body onLoad='do_init();'>
<div name="contacts" id="contacts">
List contacts here
<!-- Contact name in URL is temporary -->
<ul><a href="ChatRoom.html?contact=JohnDoe">john doe</a>
</div>
</body>
</html>