Added SslCertificate class and X509Certificate class and parser, updated ServerTrustChallenge class

This commit is contained in:
Lorenzo Pichilli 2020-06-15 02:13:23 +02:00
parent 6c2a60714e
commit 62d14039be
2 changed files with 2 additions and 3 deletions

View File

@ -9,7 +9,7 @@
- Added error and message to the `ServerTrustChallenge` class for iOS (class used by the `onReceivedServerTrustAuthRequest` event)
- Added `contentInsetAdjustmentBehavior` webview iOS-specific option
- Added `copy` and `copyWithValue` methods for webview class options
- Added X509Certificate class and parser
- Added `SslCertificate` class and `X509Certificate` class and parser
- Fixed `zoomBy`, `setOptions` webview methods on Android
- Fixed `databaseEnabled` android webview option default value to `true`

View File

@ -192,8 +192,7 @@ class ASN1DERDecoder {
byteArray.add(n);
}
} else {
break;
// throw ASN1OutOfBufferError();
throw ASN1OutOfBufferError();
}
}