EDC Documentation. Release 1.0. ONS Digital

Size: px
Start display at page:

Download "EDC Documentation. Release 1.0. ONS Digital"

Transcription

1 EDC Documentation Release 1.0 ONS Digital Nov 13, 2018

2

3 Contents 1 Introduction License JWT Profile UUID Definition JWS Protected Header JWT Payload Signing JWE Header Encrypting Decrypting Verifying Respondent Management to Electronic Questionnaire Schema Definition Required Fields 11 5 Optional Fields Per Survey Metadata An example JSON claim JWT envelope / transport Flushing responses Electronic Questionnaire to Survey Data Exchange Low-level datatypes Schema Definition Example Json payloads JWT envelope / transport Survey Data Exchange to and from Respondent Account Services Schema Definition Indices and tables 21 i

4 ii

5 Contents: Contents 1

6 2 Contents

7 CHAPTER 1 Introduction This website represents a repository of schema standards for data exchange used and published by the Office for National Statistics (ONS). License The project is licensed under the MIT license and is covered by Crown Copyright 3

8 4 Chapter 1. Introduction

9 CHAPTER 2 JWT Profile Where a definition uses JWT it SHALL conform to the following profile: The payload is contained within a JSON Web Tokens (JWT) ~ RFC 7519 signed as per JSON Web Signature (JWS) ~ RFC The signed JWT is used as the payload to a JSON Web Encryption (JWE) ~ RFC All definitions are as per the RFCs unless otherwise stated. Note: All times will be UTC. UUID Definition All references to UUIDs refer to UUID (version 4); 128-bits in length as defined in RFC 4122 in their textual representation as defined in section 3 Namespace Registration Template without the urn:uuid: prefix e.g. f81d4fae- 7dec-11d0-a765-00a0c91e6bf6. All UUIDs MUST be randomly generated such that there is negligible probability that the same value will be used twice, even across multiple servers. The same UUID value MUST NOT appear twice in the same JWT in any claim. JWS Protected Header JWS Protected Header SHALL contain the following claims: typ will be set to JWT alg will be set to RS256 kid will be set to the SHA-1 hash of the digest of the Public Key for the Private Key used to sign (reference and ) 5

10 JWT Payload All JWT payloads SHALL include the follow claims: tx_id - Set to a random UUID. Transaction ID used to trace a transaction through the whole system. MUST NOT be the same as the jti value. jti - Set to a random UUID. See RFC 7519 definition of the jti claim. jti claim MUST NOT be the same value as the tx_id in the JWT Payload (see UUID Definition). The JWT payload can also contain specific other data (claims) defined in the definitions within this website. Signing JWT Protected Header and JWT Payload are signed with RSASSA-PKCS1-v1_5 using SHA-256 (RSA-SHA256) using a Private Key to form a JWS. JWE Header JWE header will include the alg and enc claims: alg will be set to RSA-OAEP enc will be set to A256GCM kid will be set to the SHA-1 hash of the digest of the Public Key used to encrypt (reference ietf.org/html/rfc7517#section-4.5 and Encrypting The encrypted signed JWT is used as the payload to a JWE. The JWE header is used as the Additional Authenticated Data A 256-bit random CEK and 96-bit IV is generated by the creator of the JWT. The entire JWT is encrypted with AES-256-GCM using the generated CEK and IV and the Additional Authenticated Data. This process outputs a 128-bit Authentication Tag. The CEK is encrypted with the JWT receivers public key using the RSAES-OAEP algorithm to produce the JWE Encrypted Key The JWE is formed from the above values concatenated together (see RFC7516). Decrypting JWE payload is decrypted (reverse of encryption process) by JWT receiver using their private key; revealing the signed JWT. 6 Chapter 2. JWT Profile

11 Verifying Signature of JWT verified by the receiver using the Public Key of the creator of the JWT. Only the RSA-SHA256 algorithm will be accepted, all other algorithms (including None) are rejected Verifying 7

12 8 Chapter 2. JWT Profile

13 CHAPTER 3 Respondent Management to Electronic Questionnaire When a respondent is ready to take a survey hosted on the eq system, a set of details need to be passed to eq to setup the survey correctly. This data is wrapped inside a json web token which is attached to the end of a url, digitally signed and authorised by a respondent management system. This creates a clean interface for any respondent management system to integrate with the eq system. Schema Definition 9

14 10 Chapter 3. Respondent Management to Electronic Questionnaire

15 CHAPTER 4 Required Fields The following metadata keys are always required for the survey runner, they do not appear in individual survey metadata definitions. tx_id see JWT Profile iat JWT Issued At claim, see exp JWT Expiration Time claim, see ru_ref The responding unit reference id - with checkletter appended eq_id The eq questionnaire id collection_exercise_sid A reference number used to represent the collection exercise inside the ONS form_type The particular form_type for a responding unit ru_ref The responding unit reference id - with checkletter appended. ru_name The name of the responding unit. Could be a business name or person name. Not required, however at least one of ru_name and trad_as must be present trad_as Temporary until wider refactor. Not required, however at least one of ru_name and trad_as must be present user_id The id assigned by the respondent management system period_id A numerical reference to either a month or quarter time period case_id The case UUID used to identify a single instance of a survey collection for a respondent account_service_url The url of the account service (i.e. rrm or ras) used to launch the survey response_id A unique identifier for the questionnaire response 11

16 12 Chapter 4. Required Fields

17 CHAPTER 5 Optional Fields The runner can optionally accept the following keys. period_str A display name for the period_id referenced above language_code Language code identifier, used to change language displayed. Format as per ISO (https: //en.wikipedia.org/wiki/list_of_iso_639-1_codes) e.g. en for English; cy for Welsh. This parameter is currently optional; the default is en survey_url A URL for a remote survey JSON. This claim is used to tell Survey Runner to load the schema JSON from a remote location case_ref The case reference identified by the above UUID (e.g ) account_service_log_out_url The logout url of the account service used to launch the survey. Not required for services that don t have a log in function (i.e., respondent home) Per Survey Metadata In addition to the above required fields, some surveys require other data be passed. These can simply have their keys added as a claim in the main JWT body. e.g. {"language_code": "en"}. An example JSON claim { "tx_id": "0f534ffc c-b39f-a756b4adc6cb", "iat": , "exp": , "user_id": " ", "ru_ref": " J", "ru_name": "", "eq_id": "678", "collection_exercise_sid": "789", 13

18 } "period_id": "", "period_str": "", "ref_p_start_date": "", "ref_p_end_date": "", "employment_date": "", "trad_as": "", "form_type": "", "return_by": "YYYY-MM-DD", "region_code": "GB-GBN", "language_code": "en", "flag_1": true, "roles": [ "role1", "role2" ], "response_id": "QzXMrPqoLiyEyerrED88AbkQoQK0sVVX72ZtVphHr0w=" JWT envelope / transport This payload is part of a JWT as specified in JWT Profile. The encoded JWT is appended to the URL of the receiving system as follows: Flushing responses To flush responses to the downstream systems a /flush endpoint is available. This endpoint takes a JWT in the same way as /session but with roles including the role of flusher 14 Chapter 5. Optional Fields

19 CHAPTER 6 Electronic Questionnaire to Survey Data Exchange All collected responses for a collection exercise (a questionnaire within a survey series) are transformed into the following described data format for downstream processing and refinement. The json document is encrypted using the public key of the downstream collection system at submission, placing the cyphertext onto a rabbitmq queue for consumption by eq-submitter component. Low-level datatypes All datetimes are expressed using ISO_8601 and are assumed to be normalised to UTC unless a timezone identifier is given. All character encoding is UTF-8. All Boolean responses are matched to a True or False string representation. The ru_ref is appended by default with a check letter for all responses. If a question has no answer and is optional, we will not give an null or empty string entry for the downstream system. Schema Definition tx_id Transaction ID used to trace a transaction through the whole system. This will be a GUID (version 4) and 128-bits in length as defined in RFC 4122 in its textual representation as defined in section 3 Namespace Registration Template without the urn:uuid: prefix e.g. f81d4fae-7dec-11d0-a765-00a0c91e6bf6. type The unique type identifier of this JSON file. uk.gov.ons.edc.eq:feedback Can be uk.gov.ons.edc.eq:surveyresponse or version The version number of the schema definition used to generate and parse the schema. Will always be 3 numbers separated by two dots e.g with the intention being MA- JOR.MINOR.PATCH no guarantees are given to compatibility across version changes. 15

20 origin The name or identifier of the data capture / data generator system. Currently, the only option for this is uk.gov.ons.edc.eq - however this allows us to futureproof for new collection instruments. survey_id The numerical survey number as used across the ONS. case_id The case UUID used to identify a single instance of a survey collection for a respondent [optional] case_ref The case reference identified by the above UUID (e.g ) [optional] flushed Whether the survey was flushed or not. This will be true if the survey has been flushed through EQ (surveys that haven t been submitted could be flushed through at the end of their collection period) and false otherwise. collection exercise_sid Collection exercise ID instrument_id The collection instrument ID - used by legacy downstream systems. Referenced by some systems as the form_type. period The collection period, currently represented as a string due to downstream systems lack of support for correct date formats. started_at The datetime of the first answer saved in a survey submitted_at The datetime of submission by the respondent. metadata data user_id The respondent user_id as specified by the respondent management system in use. ru_ref Reporting Unit reference number to which the collected data represents. This allows the downstream system to map the responses to individual business/household/person in the original sample as created by the survey team. Version A key, value pairing of responses from a respondent, making use of the box_code / stat_var / q_code as the key to identify the captured respondence from a user. Version data example { } "001": " ", "002": " " Version A sorted array of answers in the order the questionnaire was answered. Dictionary of values value: The answer given in the questionnaire for the answer. answer_id: The identifier of the answer. group_instance: The sub-identifier of a group of block_id/pages if that group repeats. answer_instance: The sub-identifier of an answer if that answer repeats. Version data example [{ "value": "Joe", "answer_id": "household-first-name", "group_instance": 0, 16 Chapter 6. Electronic Questionnaire to Survey Data Exchange

21 }, { }] "answer_instance": 0 // Example of multiple values for a checkbox question "value": ["Eggs", "Bacon", "Spam"], "answer_id": "favourite-breakfast-food", "group_instance": 0, "answer_instance": 0 Example Json payloads { } "tx_id": "0f534ffc c-b39f-a756b4adc6cb", "type" : "uk.gov.ons.edc.eq:surveyresponse", "version" : "0.0.1", "origin" : "uk.gov.ons.edc.eq", "survey_id": "021", "flushed": false, "collection":{ "exercise_sid": "hfjdskf", "instrument_id": "yui789", "period": " " }, "started_at": " T14:10:08Z", "submitted_at": " T15:28:05Z", "metadata": { "user_id": " ", "ru_ref": " " }, "data": [{ "value": "Joe", "answer_id": "household-first-name", "group_instance": 0, "answer_instance": 0 }, { "value": ["Eggs", "Bacon", "Spam"], "answer_id": "favourite-breakfast-food", "group_instance": 0, "answer_instance": 0 }] { "type" : "uk.gov.ons.edc.eq:feedback", "origin" : "uk.gov.ons.edc.eq", "metadata": { "user_id": " ", "ru_ref": " " }, "data": { "url": " "name": "John Appleseed", " ": "john.appleseed@ons.gov.uk", 6.3. Example Json payloads 17

22 } "message": "Feedback message string" }, "started_at": " T14:00:59Z", "submitted_at": " T15:28:05Z", "collection": { "instrument_id": "0001", "exercise_sid": "739", "period": " " }, "survey_id": "021", "tx_id": "0f534ffc c-b39f-a756b4adc6cb", "version" : "0.0.1" JWT envelope / transport This payload is part of a JWT as specified in JWT Profile. 18 Chapter 6. Electronic Questionnaire to Survey Data Exchange

23 CHAPTER 7 Survey Data Exchange to and from Respondent Account Services Collection Instruments are uploaded from the ONS estate to a RabbitMQ queue for consumption by RAS. To facilitate this the excel files are base64 encoded and then wrapped in a JWT. This JWT is encrypted and signed before being placed on the queue. Once the Collection Instruments have been completed by the respondent RAS re-encodes them and wraps them in a signed and encrypted JWT to be transferred back into the ONS estate. Schema Definition tx_id see JWT Profile file The contents of the Collection Instrument base64 encoded filename The name of the collection instrument file case_id The case UUID 19

24 20 Chapter 7. Survey Data Exchange to and from Respondent Account Services

25 CHAPTER 8 Indices and tables genindex search 21

Nordea e-identification Service description

Nordea e-identification Service description Nordea e-identification Service description October 2018 1 Change log Version Description/ Changes 1.0 Initial version 1.1 Minor updates to examples & service hours October 2018 2 Contents Change log...

More information

Intended status: Standards Track January 13, 2015 Expires: July 17, 2015

Intended status: Standards Track January 13, 2015 Expires: July 17, 2015 JOSE Working Group M. Jones Internet-Draft Microsoft Intended status: Standards Track January 13, 2015 Expires: July 17, 2015 Abstract JSON Web Algorithms (JWA) draft-ietf-jose-json-web-algorithms-40 The

More information

Internet Engineering Task Force (IETF) Request for Comments: 7518 Category: Standards Track May 2015 ISSN:

Internet Engineering Task Force (IETF) Request for Comments: 7518 Category: Standards Track May 2015 ISSN: Internet Engineering Task Force (IETF) M. Jones Request for Comments: 7518 Microsoft Category: Standards Track May 2015 ISSN: 2070-1721 Abstract JSON Web Algorithms (JWA) This specification registers cryptographic

More information

CS144: Sessions. Cookie : CS144: Web Applications

CS144: Sessions. Cookie : CS144: Web Applications CS144: Sessions HTTP is a stateless protocol. The server s response is purely based on the single request, not anything else Q: How does a web site like Amazon can remember a user and customize its results?

More information

What is JOSE. Jim Schaad Co-chair JOSE August Cellars. Friday, March 15, 13

What is JOSE. Jim Schaad Co-chair JOSE August Cellars. Friday, March 15, 13 What is JOSE Jim Schaad Co-chair JOSE August Cellars 1 Overview Use JSON for data structure representations Try and meet the goal of easy to implement and use Allow for complex uses Allow for arbitrary

More information

Internet Engineering Task Force (IETF) Category: Informational May 2015 ISSN:

Internet Engineering Task Force (IETF) Category: Informational May 2015 ISSN: Internet Engineering Task Force (IETF) M Miller Request for Comments: 7520 Cisco Systems, Inc Category: Informational May 2015 ISSN: 2070-1721 Abstract Examples of Protecting Content Using JSON Object

More information

JSON Web Algorithms (JWA) draft-ietf-jose-json-web-algorithms-01

JSON Web Algorithms (JWA) draft-ietf-jose-json-web-algorithms-01 JOSE Working Group M. Jones Internet-Draft Microsoft Intended status: Standards Track March 12, 2012 Expires: September 13, 2012 JSON Web Algorithms (JWA) draft-ietf-jose-json-web-s-01 Abstract The JSON

More information

Internet Engineering Task Force (IETF) Request for Comments: ISSN: May 2015

Internet Engineering Task Force (IETF) Request for Comments: ISSN: May 2015 Internet Engineering Task Force (IETF) Request for Comments: 7516 Category: Standards Track ISSN: 2070-1721 M. Jones Microsoft J. Hildebrand Cisco May 2015 JSON Web Encryption (JWE) Abstract JSON Web Encryption

More information

PyJWT Documentation. Release José Padilla

PyJWT Documentation. Release José Padilla PyJWT Documentation Release 1.6.1 José Padilla Apr 08, 2018 Contents 1 Sponsor 3 2 Installation 5 3 Example Usage 7 4 Command line 9 5 Index 11 5.1 Installation................................................

More information

python-jose Documentation

python-jose Documentation python-jose Documentation Release 0.2.0 Michael Davis May 21, 2018 Contents 1 Contents 3 1.1 JSON Web Signature........................................... 3 1.2 JSON Web Token............................................

More information

DCCKI Interface Design Specification. and. DCCKI Repository Interface Design Specification

DCCKI Interface Design Specification. and. DCCKI Repository Interface Design Specification DCCKI Interface Design Specification and DCCKI Repository Interface Design Specification 1 INTRODUCTION Document Purpose 1.1 Pursuant to Section L13.13 of the Code (DCCKI Interface Design Specification),

More information

FAS Authorization Server - OpenID Connect Onboarding

FAS Authorization Server - OpenID Connect Onboarding FAS Authorization Server - OpenID Connect Onboarding Table of Contents Table of Contents 1 List of Figures 2 1 FAS as an authorization server 3 2 OpenID Connect Authorization Code Request and Response

More information

FAS Authorization Server - OpenID Connect Onboarding

FAS Authorization Server - OpenID Connect Onboarding FAS Authorization Server - OpenID Connect Onboarding Table of Contents Table of Contents 1 List of Figures 2 1 FAS as an authorization server 3 2 OpenID Connect Authorization Code Request and Response

More information

Partner Web Services. GetOrderStatus Version 1 Service Manual

Partner Web Services. GetOrderStatus Version 1 Service Manual Partner Web Services GetOrderStatus Version 1 Service Manual Contents 1 Introduction... 4 1.1 Overview... 4 1.2 Supporting Resources... 4 2 Service Overview... 4 3 Service Endpoints... 5 4 Request/Response

More information

API Documentation. Release Version 1 Beta

API Documentation. Release Version 1 Beta API Documentation Release Version 1 Beta Document Version Control Version Date Updated Comment 0.1 April 1, 2016 Initialize document 1 Release version PROMOTEXTER V3 BETA - API Documentation 1 Table of

More information

OpenID Connect Opens the Door to SAS Viya APIs

OpenID Connect Opens the Door to SAS Viya APIs Paper SAS1737-2018 OpenID Connect Opens the Door to SAS Viya APIs Mike Roda, SAS Institute Inc. ABSTRACT As part of the strategy to be open and cloud-ready, SAS Viya services leverage OAuth and OpenID

More information

A TECHNICAL DESIGN FOR A BLUE BADGE DIGITAL SERVICE

A TECHNICAL DESIGN FOR A BLUE BADGE DIGITAL SERVICE A TECHNICAL DESIGN FOR A BLUE BADGE DIGITAL SERVICE The findings of an Alpha Project involving GDS DWP By Steven Gevers (Verizon) and Rob Laurence (Innovate Identity) Introduction Table of Contents Introduction

More information

Attestation Service for Intel Software Guard Extensions (Intel SGX): API Documentation. Revision: 3.0

Attestation Service for Intel Software Guard Extensions (Intel SGX): API Documentation. Revision: 3.0 Attestation Service for Intel Software Guard Extensions (Intel SGX): API Documentation Revision: 3.0 1 1 Abbreviations... 4 2 Attestation Service for Intel SGX... 5 Supported environments... 5 Authentication...

More information

If the presented credentials are valid server will respond with a success response:

If the presented credentials are valid server will respond with a success response: Telema EDI REST API Telema EDI REST API allows client to send and receive document to and from Telema server. In order to use EDI REST API client must have correct channel configured in Telema system.

More information

Avro Specification

Avro Specification Table of contents 1 Introduction...2 2 Schema Declaration... 2 2.1 Primitive Types... 2 2.2 Complex Types...2 2.3 Names... 5 2.4 Aliases... 6 3 Data Serialization...6 3.1 Encodings... 7 3.2 Binary Encoding...7

More information

FAS Authorization Server - OpenID Connect Onboarding

FAS Authorization Server - OpenID Connect Onboarding FAS Authorization Server - OpenID Connect Onboarding 1 Table of Content FAS as an authorization server 3 1 OpenID Connect Authorization Code Request and Response 4 1.1 OPENID CONNECT AUTHORIZATION CODE

More information

On the (in-)security of JavaScript Object Signing and Encryption. Dennis Detering

On the (in-)security of JavaScript Object Signing and Encryption. Dennis Detering On the (in-)security of JavaScript Object Signing and Encryption Dennis Detering 2 Introduction Dennis Detering IT Security Consultant dennis.detering@cspi.com dennis.detering@rub.de @Merenon Christian

More information

Avro Specification

Avro Specification Table of contents 1 Introduction...2 2 Schema Declaration... 2 2.1 Primitive Types... 2 2.2 Complex Types...2 2.3 Names... 5 3 Data Serialization...6 3.1 Encodings... 6 3.2 Binary Encoding...6 3.3 JSON

More information

Marathon Documentation

Marathon Documentation Marathon Documentation Release 3.0.0 Top Free Games Feb 07, 2018 Contents 1 Overview 3 1.1 Features.................................................. 3 1.2 Architecture...............................................

More information

UReport USSD application Documentation

UReport USSD application Documentation UReport USSD application Documentation Release 0.1.0 Praekelt Foundation June 07, 2014 Contents 1 UReport JSON HTTP API 3 1.1 Contents................................................. 3 1.2 Response format

More information

Securing APIs and Microservices with OAuth and OpenID Connect

Securing APIs and Microservices with OAuth and OpenID Connect Securing APIs and Microservices with OAuth and OpenID Connect By Travis Spencer, CEO @travisspencer, @curityio Organizers and founders ü All API Conferences ü API Community ü Active blogosphere 2018 Platform

More information

Overview! Automated Certificate Management (ACME) Protocol! IP-NNI Task Force! Mary Barnes - iconectiv!

Overview! Automated Certificate Management (ACME) Protocol! IP-NNI Task Force! Mary Barnes - iconectiv! Overview! Automated Certificate Management (ACME) Protocol! IP-NNI Task Force! Mary Barnes - iconectiv! ACME Overview! ACME is a protocol being developed in IETF for Automated Certificate Management.!

More information

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication.

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication. Poplatek Server API Version: 2016-06-22.2 Quick links Browser API Pay REST API Get Transaction Status Cancel Refund Settlement report Changes 2016-06-22: Document sandbox URL endpoints. Small miscellaneous

More information

Cisco Encryption

Cisco  Encryption This chapter contains the following sections: Overview of, page 1 How to Encrypt Messages with a Local Key Server, page 2 Encrypting Messages using the Email Security Appliance, page 3 Determining Which

More information

Threshold Anomaly Detection Procedures (TADP)

Threshold Anomaly Detection Procedures (TADP) Threshold Anomaly Detection Procedures (TADP) DCC Public Page 1 of 14 Contents 1 Introduction... 3 2 DCC Anomaly Detection Threshold Consultation... 4 3 Notification of Anomaly Detection Thresholds...

More information

Business Chat Sending Authenticate Messages. June

Business Chat Sending Authenticate Messages. June Business Chat Sending Authenticate Messages June 2018.2 Contents Overview 3 Capabilities... 3 How to Pass Authenticate Data... 3 User Authorization with Safari Password AutoFill... 8 Decrypting the Auth

More information

Encrypted Object Extension

Encrypted Object Extension Encrypted Object Extension ABSTRACT: "Publication of this Working Draft for review and comment has been approved by the Cloud Storage Technical Working Group. This draft represents a "best effort" attempt

More information

fredag 7 september 12 OpenID Connect

fredag 7 september 12 OpenID Connect OpenID Connect OpenID Connect Necessity for communication - information about the other part Trust management not solved! (1) OP discovery The user provides an identifier (for instance an email address)

More information

flask-jwt Documentation

flask-jwt Documentation flask-jwt Documentation Release 0.3.2 Dan Jacob Nov 16, 2017 Contents 1 Links 3 2 Installation 5 3 Quickstart 7 4 Configuration Options 9 5 API 11 6 Changelog 13 6.1 Flask-JWT Changelog..........................................

More information

Industry Training Register. Guide to integration for ITOs

Industry Training Register. Guide to integration for ITOs Industry Training Register Guide to integration for ITOs Version 5.0 Objective id A823307 Published 15 January 2013 Page 2 of 29 ITR guide to integration for ITOs Contents 1 INTRODUCTION... 4 1.1 About

More information

Hostopia WebMail Help

Hostopia WebMail Help Hostopia WebMail Help Table of Contents GETTING STARTED WITH WEBMAIL...5 Version History...6 Introduction to WebMail...6 Cookies and WebMail...6 Logging in to your account...6 Connection time limit...7

More information

Unity SDK for Xiaomi (IAP) Unity IAP provides an easy way to integrate Xiaomi IAP with Unity.

Unity SDK for Xiaomi (IAP) Unity IAP provides an easy way to integrate Xiaomi IAP with Unity. Unity SDK for Xiaomi (IAP) 1. Overview 2. Login & Purchase Flow 2.1 Stand-alone login & purchase 2.2 Online login & purchase 3. Technical Integration 3.1 Onboarding to Unity 3.2 Server side integration

More information

TECHNICAL GUIDE SSO JWT. At 360Learning, we don t make promises about technical solutions, we make commitments.

TECHNICAL GUIDE SSO JWT. At 360Learning, we don t make promises about technical solutions, we make commitments. 1 TECHNICAL GUIDE SSO JWT At 360Learning, we don t make promises about technical solutions, we make commitments. This technical guide is part of our Technical Documentation. Version 1.4 2 360Learning is

More information

Internet Engineering Task Force (IETF) Request for Comments: ISSN: S. Erdtman Spotify AB H. Tschofenig ARM Ltd.

Internet Engineering Task Force (IETF) Request for Comments: ISSN: S. Erdtman Spotify AB H. Tschofenig ARM Ltd. Internet Engineering Task Force (IETF) Request for Comments: 8392 Category: Standards Track ISSN: 2070-1721 M. Jones Microsoft E. Wahlstroem S. Erdtman Spotify AB H. Tschofenig ARM Ltd. May 2018 CBOR Web

More information

IoT Device Simulator

IoT Device Simulator IoT Device Simulator AWS Implementation Guide Sean Senior May 2018 Copyright (c) 2018 by Amazon.com, Inc. or its affiliates. IoT Device Simulator is licensed under the terms of the Amazon Software License

More information

API Gateway. Version 7.5.1

API Gateway. Version 7.5.1 O A U T H U S E R G U I D E API Gateway Version 7.5.1 15 September 2017 Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.1 No part

More information

Internet Engineering Task Force (IETF) Request for Comments: 5959 Category: Standards Track August 2010 ISSN:

Internet Engineering Task Force (IETF) Request for Comments: 5959 Category: Standards Track August 2010 ISSN: Internet Engineering Task Force (IETF) S. Turner Request for Comments: 5959 IECA Category: Standards Track August 2010 ISSN: 2070-1721 Abstract Algorithms for Asymmetric Key Package Content Type This document

More information

Authority Tokens for ACME. IETF 101 ACME WG Jon - London - Mar 2018

Authority Tokens for ACME. IETF 101 ACME WG Jon - London - Mar 2018 Authority Tokens for ACME IETF 101 ACME WG Jon - London - Mar 2018 STIR and ACME What is STIR? Secure Telephone Identity (Revisited) ART Area WG Providing cryptographic authentication for telephone calls

More information

The Merit Palk API allows 3rd party developers to expand and build on the Merit Palk platform.

The Merit Palk API allows 3rd party developers to expand and build on the Merit Palk platform. The Merit Palk API allows 3rd party developers to expand and build on the Merit Palk platform. The Merit Palk API is a RESTful API that is used to access Merit Palk companies using HTTP and JSON. The API

More information

EUROPEAN COMMISSION DIRECTORATE-GENERAL FOR MARITIME AFFAIRS AND FISHERIES. FLUX Master Data Management Implementation Document v2.1.

EUROPEAN COMMISSION DIRECTORATE-GENERAL FOR MARITIME AFFAIRS AND FISHERIES. FLUX Master Data Management Implementation Document v2.1. EUROPEAN COMMISSION DIRECTORATE-GENERAL FOR MARITIME AFFAIRS AND FISHERIES Ref. Ares(2017)4691526-26/09/2017 FISHERIES POLICY ATLANTIC, NORTH SEA, BALTIC AND OUTERMOST REGIONS Data Management THE INTEGRATED

More information

Slides by Kent Seamons and Tim van der Horst Last Updated: Oct 7, 2013

Slides by Kent Seamons and Tim van der Horst Last Updated: Oct 7, 2013 Digital Signatures Slides by Kent Seamons and Tim van der Horst Last Updated: Oct 7, 2013 Digital Signatures Diagram illustrating how to sign a message Why do we use a one-way hash? How does a collision

More information

REGISTRATION DATA INTERFACE SPECIFICATION

REGISTRATION DATA INTERFACE SPECIFICATION REGISTRATION DATA INTERFACE SPECIFICATION DEFINITIONS Data Transfer Catalogue DCC Status DCC Status File Electricity Registration Data Provider Gas Registration Data Provider Hot Standby Router Protocol

More information

Connect. explained. Vladimir Dzhuvinov. :

Connect. explained. Vladimir Dzhuvinov.   : Connect explained Vladimir Dzhuvinov Email: vladimir@dzhuvinov.com : Twitter: @dzhivinov Married for 15 years to Java C Python JavaScript JavaScript on a bad day So what is OpenID Connect? OpenID Connect

More information

openid connect all the things

openid connect all the things openid connect all the things @pquerna CTO, ScaleFT CoreOS Fest 2017-2017-07-01 Problem - More Client Devices per-human - Many Cloud Accounts - More Apps: yay k8s - More Distributed Teams - VPNs aren

More information

Stateless Microservice Security via JWT, TomEE and MicroProfile

Stateless Microservice Security via JWT, TomEE and MicroProfile Stateless Microservice Security via JWT, TomEE and MicroProfile Jean-Louis Monteiro Tomitribe Why am I here today? Microservices architecture case Security opeons OAuth2 with JWT HTTP Signatures Demo with

More information

CSCE 813 Internet Security Secure Services I

CSCE 813 Internet Security Secure  Services I CSCE 813 Internet Security Secure E-Mail Services I Professor Lisa Luo Fall 2017 Previous Class Why do we need cloud computing? Three models of cloud service Software as a service (SaaS) Platform as a

More information

LUCITY REST API INTRODUCTION AND CORE CONCEPTS

LUCITY REST API INTRODUCTION AND CORE CONCEPTS LUCITY REST API INTRODUCTION AND CORE CONCEPTS REST API OFFERINGS Lucity Citizen Portal REST API Lucity REST API Both products are included in our REST API Historically we also offered a COM API and a.net

More information

Integration Architecture Of SDMS

Integration Architecture Of SDMS Integration Architecture Of SDMS 20 May 2017 Version 1.0 (Rakesh Ranjan, Consultant-IT) Table of Content 1 ABOUT SDMS...2 2 OBJECTIVE & STRUCTURE OF THIS DOCUMENT...2 3 TRANSACTIONAL SERVICES...3 3.1 HIGH

More information

Vingd API for PHP Documentation

Vingd API for PHP Documentation Vingd API for PHP Documentation Release 1.7 Radomir Stevanovic, Vingd Inc. Jul 17, 2017 Contents 1 Vingd 3 1.1 Vingd API for PHP.......................................... 3 1.2 Installation..............................................

More information

Package PKI. September 16, 2017

Package PKI. September 16, 2017 Version 0.1-5.1 Package PKI September 16, 2017 Title Public Key Infrastucture for R Based on the X.509 Standard Author Maintainer Depends R (>=

More information

OAuth at Interactive Brokers

OAuth at Interactive Brokers OAuth at Interactive Brokers November 9, 2017 1 Consumer Registration Consumers will need to provide the following in order to register as an authorized oauth consumer with Interactive Brokers. 1. A 2048-bit

More information

WAM!NET Submission Icons. Help Guide. March 2015

WAM!NET Submission Icons. Help Guide. March 2015 WAM!NET Submission Icons Help Guide March 2015 Document Contents 1 Introduction...2 1.1 Submission Option Resource...2 1.2 Submission Icon Type...3 1.2.1 Authenticated Submission Icons...3 1.2.2 Anonymous

More information

Table of Contents. Developer Manual...1

Table of Contents. Developer Manual...1 Table of Contents Developer Manual...1 API...2 API Overview...2 API Basics: URL, Methods, Return Formats, Authentication...3 API Errors...4 API Response Examples...6 Get Articles in a Category...6 Get

More information

SIX Trade Repository AG

SIX Trade Repository AG January 2018 Client Table of contents 1.0 Introduction 4 1.1 Purpose 4 1.2 Acronyms 4 1.3 Version table 4 2.0 Overview of systems and workflows 4 3.0 Input connectivity options 6 3.1 FTS-Gateway 6 3.1.1

More information

flask-jwt-simple Documentation

flask-jwt-simple Documentation flask-jwt-simple Documentation Release 0.0.3 vimalloc rlam3 Nov 17, 2018 Contents 1 Installation 3 2 Basic Usage 5 3 Changing JWT Claims 7 4 Changing Default Behaviors 9 5 Configuration Options 11 6 API

More information

Using the Liberty JWT Feature with CICS

Using the Liberty JWT Feature with CICS CICS Transaction Server for z/os Using the Liberty JWT Feature with CICS Eric Phan and Nigel Williams Copyright IBM Corporation 2018 1 Table of contents Table of contents... 2 Introduction... 4 About the

More information

Efecte Service Management 2015 Web API

Efecte Service Management 2015 Web API Efecte Service Management 2015 Web API Updated May 5, 2015 Efecte Corp. info@efecte.com www.efecte.com 2 (17) TABLE OF CONTENTS 1 Overview... 4 2 Efecte Web API... 4 2.1 DataCardImport service... 4 2.2

More information

Getting and Using a MapKit JS Key

Getting and Using a MapKit JS Key #WWDC18 Getting and Using a MapKit JS Key Session 508 Eric Gelinas, MapKit JS 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

More information

FINEID - S1 Electronic ID Application

FINEID - S1 Electronic ID Application FINEID SPECIFICATION 25.01.2018 FINEID - S1 Electronic ID Application v3.0 Population Register Centre (VRK) Certification Authority Services P.O. Box 123 FIN-00531 Helsinki Finland http://www.fineid.fi

More information

ForeScout Extended Module for Web API

ForeScout Extended Module for Web API ForeScout Extended Module for Web API Version 1.2.1 and above Table of Contents About This Module... 3 What to Do... 3 Requirements... 3 CounterACT Software Requirements... 3 ForeScout Module License Requirements...

More information

Unity SDK for Xiaomi (IAP) Unity IAP provides an easy way to integrate Xiaomi IAP with Unity.

Unity SDK for Xiaomi (IAP) Unity IAP provides an easy way to integrate Xiaomi IAP with Unity. Unity SDK for Xiaomi (IAP) 1. Overview 2. Login & Purchase Flow 2.1 Stand-alone login & purchase 2.2 Online login & purchase 3. Technical Integration 3.1 Onboarding to Unity 3.2 Server side integration

More information

API Reference Manual

API Reference Manual FUJITSU Cloud Service K5 API Reference Manual Version.5 FUJITSU LIMITED Preface Purpose of This Document This guide describes the specification of the API (Application Programming Interface) provided by

More information

IBM. Bulk Load Utilities Guide. IBM Emptoris Contract Management SaaS

IBM. Bulk Load Utilities Guide. IBM Emptoris Contract Management SaaS IBM Emptoris Contract Management IBM Bulk Load Utilities Guide 10.1.2 SaaS IBM Emptoris Contract Management IBM Bulk Load Utilities Guide 10.1.2 SaaS ii IBM Emptoris Contract Management: Bulk Load Utilities

More information

COMMUNICATING WITH THE LOXONE MINISERVER. Loxone Config 9.3

COMMUNICATING WITH THE LOXONE MINISERVER. Loxone Config 9.3 COMMUNICATING WITH THE LOXONE MINISERVER Loxone In order to modernize our interface, we improved our Miniserver, allowing it to communicate with WebSocket clients that conform to the RFC6455. This document

More information

Developer Resources: PIN2

Developer Resources: PIN2 Administrative Technology Services Technology and Data Services Developer Resources: PIN2 Contents Introduction... 2 Registering an Application... 2 Information Required for Registration... 3 Information

More information

Lecture 9a: Secure Sockets Layer (SSL) March, 2004

Lecture 9a: Secure Sockets Layer (SSL) March, 2004 Internet and Intranet Protocols and Applications Lecture 9a: Secure Sockets Layer (SSL) March, 2004 Arthur Goldberg Computer Science Department New York University artg@cs.nyu.edu Security Achieved by

More information

Secure storage in OP-TEE. Jens Wiklander

Secure storage in OP-TEE. Jens Wiklander Secure storage in OP-TEE Jens Wiklander ENGINEERS AND DEVICES WORKING TOGETHER Agenda What is secure storage? Timeline - secure storage improvements Encryption keys Secure Object Hash tree Hash tree header

More information

1. Overview Account Configuration Details... 3

1. Overview Account Configuration Details... 3 WhatsApp Enterprise API - Technical Guide V4.4 July 2018 Index 1. Overview... 3 2. Account Configuration Details... 3 2.1 Provisioning of a Demo API... 3 2.2 Activation of Production API... 3 2.3 Setting

More information

Check to enable generation of refresh tokens when refreshing access tokens

Check to enable generation of refresh tokens when refreshing access tokens VERSION User: amadmin Server: sp.example.com LOG OUT OAuth2 Provider Save Reset Back to Services Realm Attributes Indicates required field Authorization Code Lifetime Refresh (seconds) If this field is

More information

3.2 The EncryptionMethod Element

3.2 The EncryptionMethod Element 3.2 The EncryptionMethod Element EncryptionMethod is an optional element that describes the encryption algorithm applied to the cipher data. If the element is absent, the encryption algorithm must be known

More information

Network Working Group Request for Comments: 4432 March 2006 Category: Standards Track

Network Working Group Request for Comments: 4432 March 2006 Category: Standards Track Network Working Group B. Harris Request for Comments: 4432 March 2006 Category: Standards Track Status of This Memo RSA Key Exchange for the Secure Shell (SSH) Transport Layer Protocol This document specifies

More information

CIS192 Python Programming

CIS192 Python Programming CIS192 Python Programming Web Servers and Web APIs Eric Kutschera University of Pennsylvania March 6, 2015 Eric Kutschera (University of Pennsylvania) CIS 192 March 6, 2015 1 / 22 Outline 1 Web Servers

More information

Forescout. Open Integration Module: Web API. Configuration Guide. Version 1.4

Forescout. Open Integration Module: Web API. Configuration Guide. Version 1.4 Forescout Version 1.4 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

Java Relying Party API v1.0 Programmer s Guide

Java Relying Party API v1.0 Programmer s Guide Java Relying Party API v1.0 Programmer s Guide 4 June 2018 Authors: Peter Höbel peter.hoebel@open-xchange.com Vittorio Bertola vittorio.bertola@open-xchange.com This document is copyrighted by the ID4me

More information

StorageGRID Webscale 10.2

StorageGRID Webscale 10.2 StorageGRID Webscale 10.2 Cloud Data Management Interface Implementation Guide NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501 Support telephone:

More information

L2TP Over IPsec Between Windows 2000 and VPN 3000 Concentrator Using Digital Certificates Configuration Example

L2TP Over IPsec Between Windows 2000 and VPN 3000 Concentrator Using Digital Certificates Configuration Example L2TP Over IPsec Between Windows 2000 and VPN 3000 Concentrator Using Digital Certificates Configuration Example Document ID: 14117 Contents Introduction Prerequisites Requirements Components Used Objectives

More information

WHITE PAPER. Authentication and Encryption Design

WHITE PAPER. Authentication and Encryption Design WHITE PAPER Authentication and Encryption Design Table of Contents Introduction Applications and Services Account Creation Two-step Verification Authentication Passphrase Management Email Message Encryption

More information

Binary Encodings for JavaScript Object Notation: JSON-B, JSON-C, JSON-D

Binary Encodings for JavaScript Object Notation: JSON-B, JSON-C, JSON-D Internet Engineering Task Force P. Hallam-Baker Internet-Draft Comodo Group Inc. Intended status: Standards Track June 11, 2013 Expires: December 13, 2013 Binary Encodings for JavaScript Object Notation:

More information

Encrypted Phone Configuration File Setup

Encrypted Phone Configuration File Setup This chapter provides information about encrypted phone configuration files setup. After you configure security-related settings, the phone configuration file contains sensitive information, such as digest

More information

Veracity LRS Usage Documentation

Veracity LRS Usage Documentation https://lrs.veracity.it Veracity LRS Usage Documentation LRS Version Beta 1 (Hosted) Document Version 1.0 Table of Contents 1. Create and Configure LRS 3 1.1. Create an LRS Instance 3 1.2. Create Access

More information

TOA4 Remote Procedure Call (RPC) API

TOA4 Remote Procedure Call (RPC) API TOA4 Remote Procedure Call (RPC) API Introduction The purpose of the TOA4 RPC API is to allow external software applications to exchange data with TOA4 and activate certain TOA4 functions. The TOA4 RPC

More information

Virtual Private Networks

Virtual Private Networks EN-2000 Reference Manual Document 8 Virtual Private Networks O ne of the principal features of routers is their support of virtual private networks (VPNs). This document discusses transmission security,

More information

User Manual. MDWorkflow. Web Application from Midrange Dynamics

User Manual. MDWorkflow. Web Application from Midrange Dynamics User Manual MDWorkflow Web Application from Midrange Dynamics (Version 7.0) Tel. +41 (41) 710 27 77, Fax +41 (41) 710 95 87, www.midrangedynamics.com 1 / 31 MDWorkflow - Table of Contents 1 INTRODUCTION...

More information

API Application Going Live. Zhuowei Yang

API Application Going Live. Zhuowei Yang API Application Going Live Zhuowei Yang Agenda API Credentials Best Practices Application Compatibility Check 2 API Credentials API credentials API credentials and User Token Token Tool for single user

More information

TOA4 Remote Procedure Call (RPC) API

TOA4 Remote Procedure Call (RPC) API TOA4 Remote Procedure Call (RPC) API Introduction The purpose of the TOA4 RPC API is to allow external software applications to exchange data with TOA4 and activate certain TOA4 functions. The TOA4 RPC

More information

Consents Service - SMBC NextGenPSD2

Consents Service - SMBC NextGenPSD2 Consents Service - SMBC NextGenPSD2 1.3.SMBC February 2019 Framework (Berlin Group V1.3) Summary OAS3 SMBC offers third party access to accounts (XS2A) in a safe and efficient way using Application Programming

More information

CIS192 Python Programming

CIS192 Python Programming CIS192 Python Programming Web Servers and Web APIs Raymond Yin University of Pennsylvania November 12, 2015 Raymond Yin (University of Pennsylvania) CIS 192 November 12, 2015 1 / 23 Outline 1 Web Servers

More information

XEP-0363: HTTP File Upload

XEP-0363: HTTP File Upload XEP-0363: HTTP File Upload Daniel Gultsch mailto:daniel@gultsch.de xmpp:daniel@gultsch.de 2018-04-21 Version 0.6.0 Status Type Short Name Proposed Standards Track NOT_YET_ASSIGNED This specification defines

More information

Armide Documentation. Release Kyle Mayes

Armide Documentation. Release Kyle Mayes Armide Documentation Release 0.3.1 Kyle Mayes December 19, 2014 Contents 1 Introduction 1 1.1 Features.................................................. 1 1.2 License..................................................

More information

Internet Engineering Task Force (IETF) Request for Comments: 8055 Category: Standards Track. January 2017

Internet Engineering Task Force (IETF) Request for Comments: 8055 Category: Standards Track. January 2017 Internet Engineering Task Force (IETF) Request for Comments: 8055 Category: Standards Track ISSN: 2070-1721 C. Holmberg Ericsson Y. Jiang China Mobile January 2017 Abstract Session Initiation Protocol

More information

Partner Web Services. GetMyPrice Service Manual

Partner Web Services. GetMyPrice Service Manual Partner Web Services GetMyPrice Service Manual Contents 1 Introduction... 5 1.1 Overview... 5 1.2 Supporting Resources... 5 2 Service Overview... 5 2.1 Benefits of GetMyPrice Service... 6 3 Service Endpoints...

More information

I was given the following web application: and the instruction could be found on the first page.

I was given the following web application:   and the instruction could be found on the first page. I was given the following web application: http://159.203.178.9/ and the instruction could be found on the first page. So, I had to find the path for the application that stores notes and try to exploit

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

[MS-PICSL]: Internet Explorer PICS Label Distribution and Syntax Standards Support Document

[MS-PICSL]: Internet Explorer PICS Label Distribution and Syntax Standards Support Document [MS-PICSL]: Internet Explorer PICS Label Distribution and Syntax Standards Support Document Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft

More information

Security Guide Oracle Banking Virtual Account Management Release July 2018

Security Guide Oracle Banking Virtual Account Management Release July 2018 Security Guide Oracle Banking Virtual Account Management Release 14.1.0.0.0 July 2018 Oracle Banking Virtual Account Management Security Guide Oracle Financial Services Software Limited Oracle Park Off

More information