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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8b12db6aa0435e14bd281a73d2ab1c50edc993ecb41cfe8933d180607bb22c36
4
- data.tar.gz: 322412ff65c22664df05aa4e6e7c69d9da9a7851e827b97519a19b22162ab387
3
+ metadata.gz: 7ca7bba53578f15faed142b15d7938712cc93733eb62dce480a139fe42f49a91
4
+ data.tar.gz: b90c1e4451d845d80c2de47d9bf4ad5e6d17318819b2201aa0afca6f0fcc9090
5
5
  SHA512:
6
- metadata.gz: d71931f68cbca537fdecbe4771d1aa4ef393d365a1654cfc1864ea6e3a43926d80a2dfee770f7d493eb211bbfeef8010e6b4f0bdad15c47c53d527abce3d2340
7
- data.tar.gz: f42408a94e658295522ddbfcfc9ffc90668c5e8a1d30cc0beac1f3463e2ecc12d1ade779df010236dbe9e682c476270d983f6b85774188f3db2eb095010713bb
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 incomplete wrapper of the VASCO Identikey SOAP API.
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/administrtaion.wsdl'
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 ...
@@ -82,6 +82,7 @@ module Identikey
82
82
 
83
83
  filters: [
84
84
  'sessionID',
85
+ 'staticPassword',
85
86
  'identikey:CREDFLD_PASSWORD',
86
87
  'identikey:CREDFLD_STATIC_PASSWORD',
87
88
  'identikey:CREDFLD_SESSION_ID'
@@ -1,3 +1,3 @@
1
1
  module Identikey
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.1"
3
3
  end
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.0
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-10-31 00:00:00.000000000 Z
11
+ date: 2020-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: savon