this.me 2.7.5 → 2.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/me.html +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,7 +96,7 @@ const isValidSignature = suign.verifySignature(dataToSign, signature);
|
|
|
96
96
|
console.log("Is the signature valid?", isValidSignature);
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
-
**`Me`** is a digital identity representation
|
|
99
|
+
**`Me`** is a digital identity representation. Rather than relying on traditional methods like username-password combinations, `Me` encapsulates the essence of an entity with cryptographic guarantees.
|
|
100
100
|
|
|
101
101
|
### Key Features:
|
|
102
102
|
|
|
@@ -133,7 +133,7 @@ console.log("Is the signature valid?", isValidSignature);
|
|
|
133
133
|
|
|
134
134
|
------
|
|
135
135
|
|
|
136
|
-
Remember, while `Me` provides enhanced security, the principle of key management is paramount. Losing access to the private key might mean losing access to the associated identity
|
|
136
|
+
Remember, while `Me` provides enhanced security, the principle of key management is paramount. **Losing access to the private key might mean losing access to the associated identity.**
|
|
137
137
|
|
|
138
138
|
Let's delve into the importance of such declarations:
|
|
139
139
|
|
package/me.html
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<title>.me</title>
|
|
4
|
+
</head>
|
|
5
|
+
<body>
|
|
6
|
+
Hello, me!
|
|
7
|
+
<script>
|
|
8
|
+
window.fbAsyncInit = function() {
|
|
9
|
+
FB.init({
|
|
10
|
+
appId : '{your-app-id}',
|
|
11
|
+
cookie : true,
|
|
12
|
+
xfbml : true,
|
|
13
|
+
version : '{api-version}'
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
FB.AppEvents.logPageView();
|
|
17
|
+
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
(function(d, s, id){
|
|
21
|
+
var js, fjs = d.getElementsByTagName(s)[0];
|
|
22
|
+
if (d.getElementById(id)) {return;}
|
|
23
|
+
js = d.createElement(s); js.id = id;
|
|
24
|
+
js.src = "https://connect.facebook.net/en_US/sdk.js";
|
|
25
|
+
fjs.parentNode.insertBefore(js, fjs);
|
|
26
|
+
}(document, 'script', 'facebook-jssdk'));
|
|
27
|
+
</script>
|
|
28
|
+
</body>
|
|
29
|
+
|
|
30
|
+
</html>
|