ssh-fingerprint 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +3 -2
- data/lib/{ssh_fingerprint.rb → ssh-fingerprint.rb} +0 -0
- data/lib/ssh_fingerprint/version.rb +1 -1
- data/spec/lib/ssh_fingerprint_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 807dc7e1092a935c29db68bd7daa86cc1ef8edab
|
4
|
+
data.tar.gz: 12a51e67e562b7829df0dcddba3f91f506e02c7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f48b8536a42b094fa20e66ba54079665f1c90c42c4a668a5b6f8d86ee7a561bdb89f69f73ce0628cac45ab762efc411411576f8d645fc083e9d4c01a69af547b
|
7
|
+
data.tar.gz: 609a283fdbe2bb359453014d7d85457e78f0fa68c4f392742303c89dbea0e59f8ae857ea37da0149d70f04276d7e799bfc8762560a2d519a5c9261d184b4d576
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
ssh-fingerprint
|
2
2
|
===============
|
3
|
-
[](https://travis-ci.org/victorgama/ssh-fingerprint) [](https://travis-ci.org/victorgama/ssh-fingerprint) [](https://gemnasium.com/victorgama/ssh-fingerprint)
|
4
4
|
|
5
5
|
Generate a fingerprint given an SSH public key (without `ssh-keygen` or external dependencies)
|
6
|
+
* based on [bahamas10/node-ssh-fingerprint](https://github.com/bahamas10/node-ssh-fingerprint)
|
6
7
|
|
7
8
|
Installing
|
8
9
|
----------
|
@@ -34,4 +35,4 @@ puts SSHFingerprint.compute(key)
|
|
34
35
|
|
35
36
|
-------
|
36
37
|
|
37
|
-
Pull requests are welcome!
|
38
|
+
Pull requests are welcome!
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ssh-fingerprint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor Gama
|
@@ -68,7 +68,7 @@ files:
|
|
68
68
|
- LICENSE
|
69
69
|
- README.md
|
70
70
|
- Rakefile
|
71
|
-
- lib/
|
71
|
+
- lib/ssh-fingerprint.rb
|
72
72
|
- lib/ssh_fingerprint/core.rb
|
73
73
|
- lib/ssh_fingerprint/version.rb
|
74
74
|
- spec/lib/ssh_fingerprint_spec.rb
|