Added SslCertificate class and X509Certificate class and parser, updated ServerTrustChallenge class
This commit is contained in:
parent
6c2a60714e
commit
62d14039be
|
@ -9,7 +9,7 @@
|
||||||
- Added error and message to the `ServerTrustChallenge` class for iOS (class used by the `onReceivedServerTrustAuthRequest` event)
|
- Added error and message to the `ServerTrustChallenge` class for iOS (class used by the `onReceivedServerTrustAuthRequest` event)
|
||||||
- Added `contentInsetAdjustmentBehavior` webview iOS-specific option
|
- Added `contentInsetAdjustmentBehavior` webview iOS-specific option
|
||||||
- Added `copy` and `copyWithValue` methods for webview class options
|
- 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 `zoomBy`, `setOptions` webview methods on Android
|
||||||
- Fixed `databaseEnabled` android webview option default value to `true`
|
- Fixed `databaseEnabled` android webview option default value to `true`
|
||||||
|
|
||||||
|
|
|
@ -192,8 +192,7 @@ class ASN1DERDecoder {
|
||||||
byteArray.add(n);
|
byteArray.add(n);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
break;
|
throw ASN1OutOfBufferError();
|
||||||
// throw ASN1OutOfBufferError();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue