lita-rotp 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -4
- data/lib/lita-rotp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b70ef9cd2294326000da356a98418e5c6127f52
|
4
|
+
data.tar.gz: 535c175c923068a0080d5743f35fa280599a57c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b40f43b321db589d68e8b0d09c37bad67f3dc305fae88224fd776be217b672c4a7f7fad778072ef828694445d92186058350b29eb9f54a4d058a7bffb7b425b
|
7
|
+
data.tar.gz: 8d7eab027713992930dfc2001375a768413ece26bac2fdd77d23baeee36e9a169257f37f1e9b36921487333e844b80b732beb087717d7c840f01511295fe8eaa
|
data/README.md
CHANGED
@@ -7,7 +7,16 @@ lita-rotp
|
|
7
7
|
|
8
8
|
Copyright 2014 PagerDuty, Inc.
|
9
9
|
|
10
|
-
Lita handler for TOTP & HOTP token generation; uses Ruby One-Time Password (ROTP) library
|
10
|
+
Lita handler for TOTP & HOTP token generation; uses Ruby One-Time Password (ROTP) library.
|
11
|
+
|
12
|
+
We use plenty of external services that require you to share a login while supporting two-factor authentication. There
|
13
|
+
are plenty of tools available to share passwords, but nothing great for sharing/generating TOTP tokens. This handler
|
14
|
+
was built so that you can store your shared account secrets in your Lita config and generate two-factor auth tokens
|
15
|
+
using Lita.
|
16
|
+
|
17
|
+
**NOTE:** The secrets you store in the configuration file should be treated as secret. No others should be able to see
|
18
|
+
them. Consider making the read permissions of your Lita configuration file very restrictive (so that only the user
|
19
|
+
running Lita should be able to see the contents)
|
11
20
|
|
12
21
|
INSTALLATION
|
13
22
|
------------
|
@@ -21,9 +30,8 @@ gem 'lita-rotp', '~> 0.1'
|
|
21
30
|
LICENSE
|
22
31
|
-------
|
23
32
|
**lita-rotp** is released under the
|
24
|
-
[Apache License 2.0](http://opensource.org/licenses/Apache-2.0).
|
25
|
-
|
26
|
-
can be found [here](https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)) courtesy
|
33
|
+
[Apache License 2.0](http://opensource.org/licenses/Apache-2.0). The full text of the license canbe found in the
|
34
|
+
`LICENSE` file. The summary can be found [here](https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)) courtesy
|
27
35
|
of tldrlegal.
|
28
36
|
|
29
37
|
CONFIGURATION
|
data/lib/lita-rotp/version.rb
CHANGED