diff --git a/webrtc.html b/webrtc.html index 3ed319633..ae32a9a25 100644 --- a/webrtc.html +++ b/webrtc.html @@ -7049,8 +7049,8 @@

  • - Let expires be a {{EpochTimeStamp}} value of - 2592000000. + Let expires be a value of + 2592000000 (30*24*60*60*1000)

    @@ -7235,21 +7235,22 @@

    {{RTCPeerConnection/generateCertificate}}.

    dictionary RTCCertificateExpiration {
    -  [EnforceRange] EpochTimeStamp expires;
    +  [EnforceRange] unsigned long long expires;
     };
    - expires, of type {{EpochTimeStamp}} + expires, of type unsigned long long

    An optional {{expires}} attribute MAY be added to the definition of the algorithm that is passed to {{RTCPeerConnection/generateCertificate}}. If this parameter is - present it indicates the maximum time that the - {{RTCCertificate}} is valid for relative to the current time. + present it indicates the maximum time in milliseconds that the + {{RTCCertificate}} is valid for, measured from the time the + certificate is created.