@luigi-project/plugin-auth-oidc 2.0.1 → 2.0.2-dev.202302240029
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.
- package/README.md +1 -1
- package/oidc-client.min.js.LICENSE.txt +33 -0
- package/package.json +1 -1
- package/plugin.js +2 -46
- package/plugin.js.LICENSE.txt +35 -0
- package/plugin-ie11.js +0 -46
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ meta -->
|
|
|
18
18
|
|
|
19
19
|
## Overview
|
|
20
20
|
|
|
21
|
-
This [authorization plugin](https://github.com/SAP/luigi/tree/
|
|
21
|
+
This [authorization plugin](https://github.com/SAP/luigi/tree/main/plugins/auth/public/auth-oidc) contains a library that allows your application to extend the [Luigi framework](https://github.com/SAP/luigi/tree/main/core) with an OpenID Connect authorization provider.
|
|
22
22
|
Further configuration details can be found in the [main documentation](https://docs.luigi-project.io/docs/authorization-configuration#openid-connect-configuration). We support Authorization Code with PKCE and Implicit Grant flow.
|
|
23
23
|
|
|
24
24
|
## Installation
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* The buffer module from node.js, for the browser.
|
|
3
|
+
*
|
|
4
|
+
* @author Feross Aboukhadijeh <http://feross.org>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
|
|
10
|
+
Code licensed under the BSD License:
|
|
11
|
+
http://developer.yahoo.com/yui/license.html
|
|
12
|
+
version: 2.9.0
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/*! (c) Stefan Thomas | https://github.com/bitcoinjs/bitcoinjs-lib
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
/*! (c) Tom Wu | http://www-cs-students.stanford.edu/~tjw/jsbn/
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/*! CryptoJS v3.1.2 core-fix.js
|
|
22
|
+
* code.google.com/p/crypto-js
|
|
23
|
+
* (c) 2009-2013 by Jeff Mott. All rights reserved.
|
|
24
|
+
* code.google.com/p/crypto-js/wiki/License
|
|
25
|
+
* THIS IS FIX of 'core.js' to fix Hmac issue.
|
|
26
|
+
* https://code.google.com/p/crypto-js/issues/detail?id=84
|
|
27
|
+
* https://crypto-js.googlecode.com/svn-history/r667/branches/3.x/src/core.js
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
/*! Mike Samuel (c) 2009 | code.google.com/p/json-sans-eval
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
package/package.json
CHANGED