Go to file
Öppen d7916ee47f new icon plus tls notes 2020-10-31 19:34:43 +00:00
.idea new icon plus tls notes 2020-10-31 19:34:43 +00:00
app new icon plus tls notes 2020-10-31 19:34:43 +00:00
gradle/wrapper ::: 2020-08-15 15:52:27 +01:00
.gitignore ::: 2020-08-15 15:52:27 +01:00
LICENSE add license 2020-09-03 20:51:53 +01:00
README.md new icon plus tls notes 2020-10-31 19:34:43 +00:00
build.gradle bookmarks wip 2020-09-07 22:15:18 +01:00
gradle.properties ::: 2020-08-15 15:52:27 +01:00
gradlew ::: 2020-08-15 15:52:27 +01:00
gradlew.bat ::: 2020-08-15 15:52:27 +01:00
settings.gradle ::: 2020-08-15 15:52:27 +01:00

README.md

Ariane (formerly Två, and briefly Gem)

A Gemini protocol browser for Android based OS

Releases

See the project page on Öppenlab.net for latest download: oppenlab.net/pr/ariane

TLS

Note: Arianne does NOT currently implement TLS, this means some pages in Geminispace may not be available.

From the Gemini specification:

Use of TLS for Gemini transactions is mandatory.
Use of the Server Name Indication (SNI) extension to TLS is also mandatory, to facilitate name-based virtual hosting.

Ariane will skip TLS validation until client certs are working, this will mean all Gemini content will be available sooner, then we can implement TOFU later:

Clients can validate TLS connections however they like (including not at all) but the strongly RECOMMENDED approach is to implement a lightweight "TOFU" certificate-pinning system which treats self-signed certificates as first- class citizens

Client TLS

Although rarely seen on the web, TLS permits clients to identify themselves to servers using certificates

From the spec:

  • Short-lived client certificates which are generated on demand and deleted immediately after use can be used as "session identifiers" to maintain server-side state for applications. In this role, client certificates act as a substitute for HTTP cookies, but unlike cookies they are generated voluntarily by the client, and once the client deletes a certificate and its matching key, the server cannot possibly "resurrect" the same value later (unlike so-called "super cookies").
  • Long-lived client certificates can reliably identify a user to a multi-user application without the need for passwords which may be brute-forced. Even a stolen database table mapping certificate hashes to user identities is not a security risk, as rainbow tables for certificates are not feasible.
  • Self-hosted, single-user applications can be easily and reliably secured in a manner familiar from OpenSSH: the user generates a self-signed certificate and adds its hash to a server-side list of permitted certificates, analogous to the .authorized_keys file for SSH).

This suggests it'd be useful for a client to offer both a long-lived 'identity' cert, and short-lived anonymous certs to offer a (real) incognito mode - a session cert.

A key sentence in the spec:

Gemini requests will typically be made without a client certificate.

Client certs should only be required for protected content:

Gemini requests will typically be made without a client certificate. If a requested resource requires a client certificate and one is not included in a request, the server can respond with a status code of 60, 61 or 62 (see Appendix 1 below for a description of all status codes related to client certificates). A client certificate which is generated or loaded in response to such a status code has its scope bound to the same hostname as the request URL and to all paths below the path of the request URL path. E.g. if a request for gemini://example.com/foo returns status 60 and the user chooses to generate a new client certificate in response to this, that same certificate should be used for subsequent requests to gemini://example.com/foo, gemini://example.com/foo/bar/, gemini://example.com/foo/bar/baz, etc., until such time as the user decides to delete the certificate or to temporarily deactivate it. Interactive clients for human users are strongly recommended to make such actions easy and to generally give users full control over the use of client certificates.

From this it's clear general requests should NOT use a client cert (to protect user identity if nothing else), if a server requests a client cert we should offer various configuations:

  • Always use identity cert
  • Always use a fresh session cert
  • Prompt user

That's it as far as the spec is concered, the rest is down to the Android API

Android TLS