29
©2016 Apigee Corp. All Rights Reserved.

Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Embed Size (px)

Citation preview

Page 1: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

©2016 Apigee Corp. All Rights Reserved.

Page 2: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Dino Chiesa

Apigee

[email protected]

Vinit Mehta

Apigee

[email protected]

Today’s presenters

Page 3: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Slideshareslideshare.com/apigee

Apigee Communityhttps://community.apigee.com

YouTubeyoutube.com/apigee

Page 4: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

4

What do these companies have in common?

Page 5: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

All are supporting OpenID Connect and JWT.

5

Page 6: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Authentication and Authorization is hard.

Many systems do it poorly. (Do YOU provide 2FA ?)

JWT and OpenID Connect will help solve that problem.

You need to get JWT, now.

6

Page 7: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

JWT, JWE, JWS

7

Page 8: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

JWS, JWE, JWT are all part of JOSE:“JSON Object Signing and Encryption”

8

Page 9: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

JWT Enables Federated Identity

9©2015 Apigee. All Rights Reserved.

Internal ClientApplication

Authentication Server

(aka Identity Provider, IdP)

API Proxy

User store

Login Create JWT (Signed)

JWT

Data

Public Key

Internal SystemsJWT

Data

JWT Data

DataJWT

Validate

Validate

Validate

Validate

Dino Chiesa
Vinit talks to this slide
Page 10: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

JWT Integrates with external Identity Providers

10©2015 Apigee. All Rights Reserved.

PartnerApplication

’s

Authentication Server

(aka Identity Provider, IdP) API Proxy

User store

Login JWT (Signed) JWT

JWT

Data

JWT

Data

Data

Public Key

Validate

1 2 3

4 5

6

7Internal

or Partner Systems

Dino Chiesa
Vinit talks to this slide
Page 11: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

• JWS – SignatureIETF RFC 7515https://tools.ietf.org/html/rfc7515

• JSON representation of Signed or HMAC’ed Content

• Payload that is signed need not be JSON!

• The resulting JWS can be verified by receivers

• JWE – EncryptionIETF RFC 7516https://tools.ietf.org/html/rfc7516

• JSON representation of Encrypted content

• Payload that is encrypted need not be JSON

• Resulting JWE Can be decrypted by receivers

JSON Web Token, Signature, Encryption

11

• JWT – TokenIETF RFC 7519https://tools.ietf.org/html/rfc7519

• Signed, or optionally, Encrypted, set of claims.

• Issuer, Subject, audience, issue time, not-before time, expiration.

• Used as a BEARER token

• “Self-validating” • Receiving parties can

make decisions based on the claims and signing party, or encrypting party.

©2015 Apigee. All Rights Reserved.

Page 12: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

• JWS – SignatureIETF RFC 7515https://tools.ietf.org/html/rfc7515

• JSON representation of Signed or HMAC’ed Content

• Payload that is signed need not be JSON!

• The resulting JWS can be verified by receivers

• JWE – EncryptionIETF RFC 7516https://tools.ietf.org/html/rfc7516

• JSON representation of Encrypted content

• Payload that is encrypted need not be JSON

• Resulting JWE Can be decrypted by receivers

JSON Web Token, Signature, Encryption

12

• JWT – TokenIETF RFC 7519https://tools.ietf.org/html/rfc7519

• Signed, or optionally, Encrypted, set of claims.

• Issuer, Subject, audience, issue time, not-before time, expiration.

• Used as a BEARER token

• “Self-validating” • Receiving parties can

make decisions based on the claims and signing party, or encrypting party.

©2015 Apigee. All Rights Reserved.

Page 13: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Demo: Azure AD JWTand JWT.io

13

Page 14: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Apigee Edge includes standard policies for many security tasks.

Oauth1.0a generation and verification,Oauth2 generation and verification,SAML generation and verification…

14

Page 15: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Apigee Edge does not yet include standard policies for JWT, JWE, JWS

15

Page 16: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

But … Code + Configure !

16

Page 17: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

• Embed your Java code as a policy in Apigee Edge

• One Interface, one method, 2 parameters

• Can read policy configuration• Can read and write context variables• …anchor anywhere in Edge policy

flow

• One of the ways to extend Edge with custom code. Also JavaScript, Python, nodejs.

• RTFM: http://apigee.com/docs/api-services/reference/java-callout-policy

What are Java Callouts?

17©2015 Apigee. All Rights Reserved.

Page 18: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

• Re-usable now in any of your Proxies

• Configure it with XML as any other policy

• Make decisions based on embedded claims

• Can read JWT generated by third parties, such as Google or Windows Azure

Java Callout for JWT Parse/Verification

18©2015 Apigee. All Rights Reserved.

https://github.com/apigee/iloveapis2015-jwt-jwe-jws

Page 19: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

• Re-usable now in any of your Proxies

• Configure it with XML as any other policy

• Generate JWT for use by others

• Can be used by backends or other systems called by clients

• Can be consumed by Edge itself

Java Callout for JWT Generation

19©2015 Apigee. All Rights Reserved.

Page 20: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

JWT Code walkthrough& Demo

20

Page 21: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Some comments• This JWT policy handles Signed, not Encrypted JWT• RS256 and HS256 are supported•We have a different policy that produces Encrypted JWT (JWE) using RS256• JWT cannot be “revoked” – so limit your lifetimes

• Exercise for the reader: –ES256, other algorithms

21©2015 Apigee. All Rights Reserved.

Page 22: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

When to use JWT vs Oauth 2.0 tokens?

22

Page 23: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

When to use JWT vs Oauth 2.0 tokens?• Trick Question! JWT are OAuth2.0 tokens• Better phrased as: When to use JWT vs Opaque Oauth 2.0

tokens?

• Federation

• When you want the client to know everything that is being claimed

• JWT implies minimal impact to client and server apps

• JWT do not work well with revocation

23©2015 Apigee. All Rights Reserved.

Page 24: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

• Re-usable now in any of your Proxies

• Configure it with XML as any other policy

• Generate JWE for use by others

• Configurable Key strength and key derivation

• Can be used by backends or other systems called by clients

• Can be consumed by Edge itself

Java Callout for JWE Generation

24©2015 Apigee. All Rights Reserved.

FIX THIS

https://github.com/apigee/iloveapis2015-jwt-jwe-jws

Page 25: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Java Callout for JWE Decryption

25©2015 Apigee. All Rights Reserved.

Page 26: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

When to use JWS and JWE?• Trick Question! Don’t ever use them!

• No, seriously. • JWS and JWE imply some change to client apps

• More limited scope of usage than JWT

• There are already ways to sign and encrypt arbitrary data

• My opinion: JWE and JWS are mostly interesting in support of JWT

26©2015 Apigee. All Rights Reserved.

Page 27: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

What did we learn?

27

APIs

Apps

Users

©2015 Apigee. All Rights Reserved.

• YOU NEED to handle JWT

• You can use JWT, JWS, JWE in Apigee Edge today via custom policies

• No coding needed !

• These policies complement the existing built-in policies in Apigee Edge

https://github.com/apigee/iloveapis2015-jwt-jwe-jws

Dino Chiesa
insert logos for partners Facebook - OpenID Connect.Google Azure, etc
Page 28: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

©2016 Apigee Corp. All Rights Reserved.

Questions?

28

Page 29: Advanced Security Extensions in Apigee Edge: JWT, JWE, JWS

Thank you