Eiji

Eiji

Security: HTTPS, WSS, PFS and E2EE with Phoenix framework

At start some definitions:

  1. HTTPS (is a protocol for secure communication over a computer network which is widely used on the Internet) - see HTTPS Wikipedia article
  2. WSS (secured WebSocket protocol) - see WebSocket Wikipedia article
  3. PFS (is a property of secure communication protocols in which compromise of long-term keys does not compromise past session keys) - see Perfect Forward Secrecy Wikipedia article.
  4. E2EE (a cryptographic paradigm involving uninterrupted protection of data traveling between two communicating parties) - see End-to-end encryption Wikipedia article

Summary:

  1. HTTPS, WSS protocols can be set in configuration
  2. PFS can be set in configuration too and need more attention (ciphers, SSL version)
  3. E2EE - to setup this we need choose algorithm(s) to generate, export, import, encrypt and decrypt for Web Cryptography API; time between generate new keys depends on what is used in application

Helpful sources:

  1. Mozilla wiki article describes SSL configuration and splits it by client support.
  2. SSL configuration could be set in standard nginx way or in cowboy/phoenix configuration.
  3. An examples of using Web Cryptography API

First 10 of 18 Posts Switch mode

Nicd

Nicd

Phoenix has HTTPS and WSS support builtin, see http://www.phoenixframework.org/docs/configuration-for-ssl

For PFS I believe you need to configure your server to use specific key exchange algorithms (i.e. it’s not a matter of the certificate). I don’t know how to do that with Phoenix. Personally I terminate TLS with Nginx and proxy it to Phoenix.

HTTPS and WSS are end-to-end encrypted, one end being the client’s browser and the other end being the server.

For free certificates, take a look at https://letsencrypt.org/

Eiji

Eiji OP

First link describes only https or it will work also with WebSocket?
You reminded me that I already have seen that this is a matter of configuration algorithm. To summarize answer what was encryption algorithm name in PFS?
Summary:
I need any valid SSL certificate + configure ssl in phoenix + configure encryption algorithm that provide PFS, right?

Nicd

Nicd

It should also enable WSS as far as I know.

Yes, but I don’t know how to do the last part. Maybe someone else can help.

Eiji

Eiji OP

I found interesting article from Mozilla Wiki.
What do you think about it?
Is Modern configuration robust enough?

Nicd

Nicd

That’s a good article, I’ve followed it in my own configurations. You need to decide for yourself which configuration you can use based on the clients you need to support.

Eiji

Eiji OP

My demo site (in future) will support only modern standards. I do not want to support M$ standards, IE and other old leafs of web programming. I decide to CSS3/Ecmascript6/HTML5 in fronted and Elixir/Phoenix + my libs in backend, so I want Modern configuration. Is this configuration describes all SSL configuration must-have or you know more SSL configuration options that should be set (of course we need to generate certificate and add configuration to generated files)?

Nicd

Nicd

I think that’s pretty comprehensive but I’m not an expert by any means.

Eiji

Eiji OP

Ok, thx - here I will summarize all info:

  1. HTTPS, WSS protocols are configurable
  2. WSS is already provided in above protocols
  3. PFS is configurable too and need more attention (ciphers, SSL version)

Mozilla wiki article describes SSL configuration and splits it by client support.
SSL configuration could be set in standard nginx way or in cowboy/phoenix configuration.

Qqwy

Qqwy

TypeCheck Core Team

And just a note about end-to-end encryption: This is a whole different beast. Usually it means that you have to use a JavaScript cryptography library, which is used to encrypt data before it is sent towards the server, and to decrypt certain data coming from the server (at a later time, or for a different user). Because usually with end-to-end encryption the server is ‘in the middle’, there are no special settings for the server software (such as Phoenix) to work with it.

Eiji

Eiji OP

@Qqwy: Can you recommend any JavaScript library?
I found Web Cryptography API Examples github project, but I don’t know if one of this is good.

Where Next?

Trending in Wikis Top

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement