Please help me choose a name for my project

I have been busy with a new project this summer, a project that will be part of my PhD in cryptographic protocols. It is working well, but I am not satisfied with the name I have come up with so far.

It is a library which enables you to write multi-party computations (MPC) in an easy way. A secure MPC protocol is a protocol between a number of players who seek to execute some joint computation, but done in a way in which they reveal nothing about their inputs. If the computation is the evaluation of a function f, then imagine each player Pi holding an input xi. When the protocol is finished, all players must know y = f(x1, x2, …, xn), but nothing more.

As an example where MPC is helpful, consider a bunch of companies that want to know how they compare to each other. So they want to compute their average profit, but are of course unwilling to share the private information about their expenses and incomes. This is the problem of benchmarking and traditionally this has been solved by having the companies reveal their sensitive information to a mutually trusted third-party. This could be a consulting company which has been paid so much money by the benchmarking participants that they can trust the consulting company not to cheat (the companies have essentially bribed the consulting company to be honest).

Paying a third-party so much money that he or she has no incentive to collude with a player is of course an expensive option. A secure multi-party computation can do the same, but without a trusted third-party. The protocol is designed in such a way that it acts as if there was a trusted third-party, a so-called ideal functionality present. An ideal functionality (IF) should be thought of as a computer which cannot be hacked and which faithfully carries out the program put into it. The players can therefore trust this computer and should simply reveal their private inputs to it.

In real life there is not such computer, but the MPC protocol creates a situation that look exactly as if there had been. This is the definition of security: the real protocol must look exactly as a protocol done in an ideal world. Because no attacks can occur in the ideal world (the IF cannot be attacked by definition) then we conclude that no attacks can occur in the real world as well. And so the protocol is called secure.

My library is written in Python and program written using it looks like this:

import sys
from X.field import GF
from X.config import load_config
from X.runtime import Runtime
from X.util import dprint

Z31 = GF(31)
my_id, conf = load_config(sys.argv[1])
my_input = Z31(int(sys.argv[2]))

rt = Runtime(conf, my_id, 1)
x, y, z = rt.shamir_share(my_input)
result = rt.open(rt.mul(rt.add(x, y), z))

dprint(”Result: %s”, result)
rt.wait_for(result)

This program starts by including some stuff from X, which stands for the package name of my library. It is this X that I want to see replaced by something else. The program then defines a field for the computation, loads the configuration and input. A Runtime is then created. The Runtime is used for all computations, it has methods for addition, multiplication, comparison and so on. In this example we compute (x+y)*z. The result is opened, printed and finally we ask the runtime to wait for the result.

The last point where we wait for a result is necessary since my library is asynchronous. The wait_for method goes into an event loop and only returns when the variables given have received a value. I use Twisted for the asynchronous infrastructure and it has worked extremely well.

So, if you’re with me so far, then you should have at least a rudimentary knowledge about MPC and what it is good for. I have already some name suggestions and I hope to get some feedback on them (listed in no particular order):

  • NoTTP, short for No Trusted Third-Party. This is what MPC does: it removes the trusted third-party. But does it look good if you write from nottp.field import GF256? Also, the name almost sounds like NoTCP which could be some weird project that loves UDP :-)

  • PySMPC, short for Python Secure Multi-Party Computation. The library is written in Python and does SMPC. One might drop the “S” and go with PyMPC since nobody wants to deal with in-secure MPC anyway :-) I don’t like that the name ties the library to Python since I might want to rewrite it in another language in the future.

  • Trent or NoTrent. Accourding to Wikipedia, Trent is sometimes used as the name of the trusted arbitrator in cryptographic protocols (like Alice and Bob is used instead of A and B). So this library could be said to give you a virtual “Trent” and help you get rid of a real one. I don’t like the word “Trent” since I don’t think it is that widely used.

  • VIFF, short for Virtual Ideal Functionality Framework. The library helps you create protocols that look exactly as if there has been an IF present. Therefore I think it can be said to create a virtual ideal functionality. Accourding to Google, VIFF mostly stands forVancouver International Film Festival“.

  • AMPC, short for Asynchronous Multi-Party Computation. This emphasizes the asynchronous nature of the library. I think it is somewhat difficult to pronounce “AMPC”.

Any other suggestions? Which name do you like the most? Please vote by leaving a comment! (Those of you who already know the name I have used so far are kindly asked not to reveal it — I want to collect some opinious first.)

By the way: instead of the abbreviations, I would prefer a name like “Twisted” or “Python” which can be pronounced and which people know how to spell and capitalize. There is another project in this area called FairPlay and I think this is a very good name: easy to remember, it can be abbreviated to just FP, and it actually says a bit about the project. So if you could suggest something along the lines of that it would be great! :-)

9 Comments

  1. Tordr:

    Name suggestion: Distributed TTP

  2. Martin Geisler:

    Thanks, I like DTTP! It is to the point and looks okay in Python code: from dttp.runtime import Runtime. But Mikkel and Gert tell me that it sounds too similar to HTTP… Maybe I should simply call it HTTP: Highly Trustable Third Party to make the confusion complete :-)

  3. Dan Villiom Podlaski Christiansen:

    peble: Python/Paranoid Economy Benchmarking Liability Elimination
    NoTrust/AntiTrust

  4. Martin Geisler:

    Wow, peble is rather creative :-) The name “AntiTrust” is funny, it reminds me of the movie by the same name. But I think the connection to law is a bit confusing.

  5. Chris:

    stay clean and simple:
    SMPC: Secure Multi-Party Computation

  6. Martin Geisler:

    Hi Chris, thanks for the suggestion!

    (S)MPC is what the library does, but I don’t think it can stand alone as a name. Something like ‘SMPC Library’ or ‘SMPC Framework’ might be better. As a (Python) package name, then smpc works nicely, though.

  7. Tordr:

    You have to have a name that corresponds to the audience you want to reach.
    If you want to target people who know what MPC is, then include that in the name. On the other hand if you want to reach the average web developer you might avoid mentioning MPC to not scare them away.

    I agree with Chris that you should probably include MPC or SMPC in the name as your program will be targeted to people who already know MPC.

    I will try to make a Java version, as I am not a good Python programmer…

  8. Martin Geisler:

    I agree about including MPC in the name… that was also why I called the project PySMPC from the beginning. But then I discovered that “PySMPC” is quite annoying to pronounce, and I saw a discussion somewhere where people pointed out that choosing a name based on the language is the most boring thing to do… So that is why I started looking for a new name in the first place.

    A name such as “libmpc” is already used by something called Musepack (you will find lots of libmpc RPM packages around the net). I still feel that the name “MPC” is too general to be on its own, so maybe I should call it “Asynchronous MPC Library”, with a package name of asyncmpc. Do you guys think that would work?

  9. Martin Geisler Online » Vote for your favorite name:

    [...] people complained that my last post contained too much text… I’ll make this shorter [...]

Leave a comment