diff --git a/api/challenge-response/README.md b/api/challenge-response/README.md index 16c9d12..b001daa 100644 --- a/api/challenge-response/README.md +++ b/api/challenge-response/README.md @@ -66,6 +66,10 @@ session expiry has elapsed. } ``` +`nonceSize` must be between `8` and `64`. Analogously, `nonce` must be between +8 and 64 bytes when decoded (which means the specified base64 string must be no +longer than 88 bytes). + ### Asynchronous verification * Submit evidence for this session: diff --git a/api/challenge-response/challenge-response.yaml b/api/challenge-response/challenge-response.yaml index 1c0ab5f..cb53f90 100644 --- a/api/challenge-response/challenge-response.yaml +++ b/api/challenge-response/challenge-response.yaml @@ -22,7 +22,7 @@ paths: - name: nonceSize in: query description: > - number of bytes of the returned nonce + number of bytes of the returned nonce. Must be between 8 and 64. required: false schema: type: integer @@ -30,7 +30,8 @@ paths: in: query description: > the API server should not generate a nonce for this session and - use instead the one supplied by the client + use instead the one supplied by the client. The supplied value must + decoded to a byte sequence between 8 and 64 bytes long. required: false schema: type: string diff --git a/api/challenge-response/schemas/components.yaml b/api/challenge-response/schemas/components.yaml index a53cdc2..448b35b 100644 --- a/api/challenge-response/schemas/components.yaml +++ b/api/challenge-response/schemas/components.yaml @@ -10,7 +10,7 @@ components: type: string format: byte description: - base64 encoded 32, 48, or 64 bytes random value + base64 encoded random value. Must be between 8 and 64 bytes long. example: MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI= expiry: type: string