I'm try to implement the noVNC APIs to create a custom element to handle the noVNC frames on canvas. When i'm calling new RBF() Object to start the noVNC connection
// javascript
this.rbf = new RFB(screen, this.url.href)
// fired when the server identity must be confirmed by the user.
this.rbf.addEventListener(
'serververification', (event) => {
console.log('@SERVER-VERIFICATION >> ', event.type)
}
)
# bash code to run websockify
websockify -v 8888 192.168.1.11:5900
I get the event serververification event with field isTrusted: false. The only info I've found about, it's the sentence in official doc about this event fired when the server identity must be confirmed by the user .... but how i can solve and establish the connection without raise this event ?
Actually solved digging in the vnc.html > ui.js code in noVNC github.com here the link:
https://github.com/novnc/noVNC/blob/master/app/ui.js
So in the case of RealVNC server, as in the code example i've handled the serverification event just to console the RSA fingerprint received: