pkce 0.0.0 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +3 -1
- data/pkce.gemspec +3 -3
- data.tar.gz.sig +0 -0
- metadata +6 -5
- metadata.gz.sig +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37312749fe743edc9779f4331351fd5b4b723ef8080c855ca4c3548ade4a6494
|
4
|
+
data.tar.gz: bf1d320f3cf3ab287736d63b1a1d0ebb00231a993b41a75d483fc1014c6f916a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2cc80b9320b715e88cf573b1e8215ca732ebfb4f8cdffe8ab261ba1e57733df8693b80b44296054b116cd31746bc86f384a7307133e264c448c765e5efe605c0
|
7
|
+
data.tar.gz: 4cf802d988303f04d64747749708f2376edb5fa977fde981f2f3d953c310ce0d8e7f2cd996fa48fadb6b05d6d938a5bd509595581a09cd0615a156c6a5c94876
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/README.adoc
CHANGED
@@ -6,11 +6,13 @@
|
|
6
6
|
|
7
7
|
= Proof Key for Code Exchange (PKCE)
|
8
8
|
|
9
|
-
|
9
|
+
Proof Key for Code Exchange (PKCE) is an authorization code flow extension to link:https://oauth.net[OAuth] which is necessary for mobile authentication but works well for web flows because the added security is transparent to the user. Specifically, PKCE prevents the following types of attacks:
|
10
10
|
|
11
11
|
* Authorization code interception
|
12
12
|
* Authorization code injection
|
13
13
|
|
14
|
+
This gem is an implementation of the {rfc_link} specification so you can leverage PKCE in your own code.
|
15
|
+
|
14
16
|
toc::[]
|
15
17
|
|
16
18
|
== Features
|
data/pkce.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "pkce"
|
5
|
-
spec.version = "0.
|
5
|
+
spec.version = "0.1.0"
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
8
8
|
spec.homepage = "https://www.alchemists.io/projects/pkce"
|
9
|
-
spec.summary = "
|
9
|
+
spec.summary = "Builds Proof Key for Code Exchange (PKCE) challenge and verify codes for OAuth."
|
10
10
|
spec.license = "Hippocratic-2.1"
|
11
11
|
|
12
12
|
spec.metadata = {
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
14
14
|
"changelog_uri" => "https://www.alchemists.io/projects/pkce/versions",
|
15
15
|
"documentation_uri" => "https://www.alchemists.io/projects/pkce",
|
16
16
|
"funding_uri" => "https://github.com/sponsors/bkuhlmann",
|
17
|
-
"label" => "
|
17
|
+
"label" => "PKCE",
|
18
18
|
"rubygems_mfa_required" => "true",
|
19
19
|
"source_code_uri" => "https://github.com/bkuhlmann/pkce"
|
20
20
|
}
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pkce
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brooke Kuhlmann
|
@@ -28,7 +28,7 @@ cert_chain:
|
|
28
28
|
CxDe2+VuChj4I1nvIHdu+E6XoEVlanUPKmSg6nddhkKn2gC45Kyzh6FZqnzH/CRp
|
29
29
|
RFE=
|
30
30
|
-----END CERTIFICATE-----
|
31
|
-
date: 2022-
|
31
|
+
date: 2022-07-17 00:00:00.000000000 Z
|
32
32
|
dependencies:
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: dry-monads
|
@@ -69,7 +69,7 @@ metadata:
|
|
69
69
|
changelog_uri: https://www.alchemists.io/projects/pkce/versions
|
70
70
|
documentation_uri: https://www.alchemists.io/projects/pkce
|
71
71
|
funding_uri: https://github.com/sponsors/bkuhlmann
|
72
|
-
label:
|
72
|
+
label: PKCE
|
73
73
|
rubygems_mfa_required: 'true'
|
74
74
|
source_code_uri: https://github.com/bkuhlmann/pkce
|
75
75
|
post_install_message:
|
@@ -87,8 +87,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '0'
|
89
89
|
requirements: []
|
90
|
-
rubygems_version: 3.3.
|
90
|
+
rubygems_version: 3.3.18
|
91
91
|
signing_key:
|
92
92
|
specification_version: 4
|
93
|
-
summary:
|
93
|
+
summary: Builds Proof Key for Code Exchange (PKCE) challenge and verify codes for
|
94
|
+
OAuth.
|
94
95
|
test_files: []
|
metadata.gz.sig
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
6t�6Fh��f�LQ�9IF�zY-�����^�aBcڞ_��+�BRQ��ݻ�7����x��3�@�V���]��+^�;`������'[��C��!��b��}��⯎#ѢwՔ�����.���^�s�,+'2c�A�%��{�ҒTlZ:3���Lor������jJ�)\�];�N�#+`�O�/X��������ૺs���W���L+���|饡&�&���#��T�CN���۾��S\�k�ra�P��FRq��&��b
|