identikey 0.9.0 → 0.9.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 +52 -2
- data/lib/identikey/base.rb +1 -0
- data/lib/identikey/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ca7bba53578f15faed142b15d7938712cc93733eb62dce480a139fe42f49a91
|
4
|
+
data.tar.gz: b90c1e4451d845d80c2de47d9bf4ad5e6d17318819b2201aa0afca6f0fcc9090
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1f3749db40bb5656106906424383f94dd05887587bca7897ba68d2c936e8f5ee7641aba9be8730a19a03b37f80c3df5f4cad757308e37d07320e70e0d8e5f28
|
7
|
+
data.tar.gz: 3a4a6ef801813a63153a14c93f8365efd08f2d450fa562a86cc6dc4415a44ede0026168c5a1cc7097de8f3ce48bf8c355084adacbda0d3ab8be89c2ae9adbb16
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Identikey
|
2
2
|
|
3
|
-
This library is a thin yet
|
3
|
+
This library is a thin yet featureful wrapper of the VASCO Identikey SOAP API.
|
4
4
|
|
5
5
|
Vasco Identikey has been recently re-branded as OneSpan Authentication Server.
|
6
6
|
|
@@ -25,6 +25,49 @@ And then execute:
|
|
25
25
|
|
26
26
|
$ bundle
|
27
27
|
|
28
|
+
## Features
|
29
|
+
|
30
|
+
This client implements the Authentication, Administration and Provisioning
|
31
|
+
SOAP APIs.
|
32
|
+
|
33
|
+
### Authentication
|
34
|
+
|
35
|
+
* `auth_user`: end user authentication with OTP / static password / back-end
|
36
|
+
|
37
|
+
|
38
|
+
### Administration
|
39
|
+
|
40
|
+
* `logon` / `logoff`: log on or log off an administrative session.
|
41
|
+
You are advised to use a connection pool ([such as
|
42
|
+
mperham's](https://github.com/mperham/connection_pool)) to keep multiple
|
43
|
+
instances of administration sessions alive. This gem is used in production
|
44
|
+
with puma, and has been extensively tested so it is thread-safe.
|
45
|
+
|
46
|
+
* `alive?`: checks whether an administrative session is alive. You can use
|
47
|
+
`.logon` again when `.alive?` returns `false`.
|
48
|
+
|
49
|
+
* `admin_session_query`: returns active admin sessions
|
50
|
+
|
51
|
+
* `user_execute`: `view`, `create`, `update`, `delete`, `reset_password`,
|
52
|
+
`set_password`, and `unlock` user accounts.
|
53
|
+
|
54
|
+
* `user_query`: search for users
|
55
|
+
|
56
|
+
* `digipass_execute`: `view`, `assign`, `unassign` digipasses
|
57
|
+
|
58
|
+
* `digipass_query`: search for digipasses
|
59
|
+
|
60
|
+
* `digipassappl_execute`: `test_otp`, `set_pin` on applicable digipasses
|
61
|
+
|
62
|
+
|
63
|
+
### Provisioning
|
64
|
+
|
65
|
+
* `provisioning_execute`: `mdl_register`, `dsapp_srp_register`. bonus:
|
66
|
+
generation of CRONTO images for online activation, for use with the push
|
67
|
+
notification gateways. You can use [this gem](https://github.com/ifad/cronto)
|
68
|
+
to generate the PNG to serve to your users.
|
69
|
+
|
70
|
+
|
28
71
|
## Configuration
|
29
72
|
|
30
73
|
By default the client expects WSDL files in the current working directory,
|
@@ -53,7 +96,14 @@ Identikey::Authentication.configure do
|
|
53
96
|
end
|
54
97
|
|
55
98
|
Identikey::Administration.configure do
|
56
|
-
wsdl './path/to/your/
|
99
|
+
wsdl './path/to/your/administrtation.wsdl'
|
100
|
+
endpoint 'https://your-identikey.example.com:8888'
|
101
|
+
|
102
|
+
# ... more configuration options as needed ...
|
103
|
+
end
|
104
|
+
|
105
|
+
Identikey::Provisioning.configure do
|
106
|
+
wsdl './path/to/your/provisioning.wsdl'
|
57
107
|
endpoint 'https://your-identikey.example.com:8888'
|
58
108
|
|
59
109
|
# ... more configuration options as needed ...
|
data/lib/identikey/base.rb
CHANGED
data/lib/identikey/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: identikey
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcello Barnaba
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: savon
|