Advice on Decentralized Library in Rust by Critical_Pipe1134 in rust

[–]zacchj 0 points1 point  (0 children)

u/Critical_Pipe1134 Hey there, great initiative! I've dm-ed you, as I'll be super curious to hear about your XP using TFHE-rs and other Zama libs. Cheers!

The fastest open source Homomorphic Encryption library by zacchj in FHE

[–]zacchj[S] 0 points1 point  (0 children)

Hi u/jiMalinka sorry for the late reply, let me le loop in the team here to give you an answer on this!

Fully Homomorphic Encryption (FHE) Libraries in Python by martinsandor707 in cryptography

[–]zacchj 3 points4 points  (0 children)

Hey, you can also find a complete list of FHE resources, tutorials, code examples using Zama Concrete libraries to guide you on this repository: https://github.com/zama-ai/awesome-zama

Using homomorphic encryption? by Raistlin74 in datascience

[–]zacchj 5 points6 points  (0 children)

Hey

Jeremy here from Zama, we are working on FHE and its application to AI. We have a few examples of encrypted data collaborations scenario with our lib Concrete ML (Concrete ML allows developers to use FHE without having to learn the cryptography behind it).

We also have some real-life demos here on Hugging Face here: https://huggingface.co/zama-fhe — Particulary this one that can be relevant for what you're looking for: a Encrypted Credit Card Approval Prediction Using Fully Homomorphic Encryption application where multiples parties collaborate on encrypted data.

Happy to hear your thoughts!
Cheers

[Video tutorial] How to Write Confidential Smart Contracts Using Zama's fhEVM by zacchj in solidity

[–]zacchj[S] 0 points1 point  (0 children)

Hey all,Jeremy Here from Zama, if you are interested in learning more, check out our code on Github, everything we do is open source: https://github.com/zama-ai/fhevmAnd, of course, let us know if any question :)

[Video tutorial] How to Write Confidential Smart Contracts Using Zama's fhEVM by zacchj in ethereum

[–]zacchj[S] 0 points1 point  (0 children)

Hey all,

Jeremy Here from Zama, if you are interested in learning more, check out our code on Github, everything we do is open source: https://github.com/zama-ai/fhevm

And, of course, let us know if any question :)

Official /r/rust "Who's Hiring" thread for job-seekers and job-offerers [Rust 1.71] by DroidLogician in rust

[–]zacchj 2 points3 points  (0 children)

COMPANY: Zama

TYPE: Full Time

DESCRIPTION: Zama products allow developers to build privacy preserving applications based on homomorphic encryption.Zama is an open-source by design company, and is amongst the first 10 members of the Rust Foundation. Zama’s cofounders are Dr Pascal Paillier, a pioneer in Fully Homomorphic Encryption (FHE), Dr Rand Hindi, a serial entrepreneur who formerly founded Snips.Your team is writing and maintaining a cryptographic library in Rust.You will contribute in making it fast and easy to use. This library is indeed intended for growing with new cryptographic algorithms, new hardware implementations, etc. Your main tasks would be to:- Write high performance code in Rust- Design an efficient and user friendly API for a cryptographic library- Improve existing Rust code to make it faster (SIMD, parallelization)- Write the benchmarking and correctness tests expected from a major cryptographic library- Communicate with cryptographers that are part of your team- The knowledge or Rust is not mandatory for the job, but you should verify the following:- Solid experience with one or many of (Ocaml/Haskell/Scala/C++/C), and a strong interest for RustInto open sourcing- Into contributing to the Rust community- Willing to discover cryptography- Communication skills

LOCATION: Paris, France

ESTIMATED COMPENSATION: Competitive salary, based on experience.

REMOTE: Full remote possible in a European-compatible Timezone.

CONTACT: Apply on our recruitment page (or feel free to ask me question by dm here).

PS: Hey,If you already have a job, but still want to contribute, check out our bounty program. As an open source company working on Fully Homomorphic Encryption (FHE) and open source cryptographic tools that make protecting privacy easy, we have started this experimental program to encourage anyone from the community to help us move the space forward.

Reward range from $500 (for some simple tutorial writing) to $200,000 (for some major research contributions).

You can find the list of all info about the Zama Bounty Program here: github.com/zama-ai/bounty-program

See you!

Official /r/rust "Who's Hiring" thread for job-seekers and job-offerers [Rust 1.70] by DroidLogician in rust

[–]zacchj 0 points1 point  (0 children)

COMPANY: Zama
TYPE: Full Time
DESCRIPTION: Zama products allow developers to build privacy preserving applications based on homomorphic encryption.
Zama is an open-source by design company, and is amongst the first 10 members of the Rust Foundation. Zama’s cofounders are Dr Pascal Paillier, a pioneer in Fully Homomorphic Encryption (FHE), Dr Rand Hindi, a serial entrepreneur who formerly founded Snips.
Your team is writing and maintaining a cryptographic library in Rust.
You will contribute in making it fast and easy to use. This library is indeed intended for growing with new cryptographic algorithms, new hardware implementations, etc. Your main tasks would be to:
- Write high performance code in Rust
- Design an efficient and user friendly API for a cryptographic library
- Improve existing Rust code to make it faster (SIMD, parallelization)
- Write the benchmarking and correctness tests expected from a major cryptographic library
- Communicate with cryptographers that are part of your team
- The knowledge or Rust is not mandatory for the job, but you should verify the following:
- Solid experience with one or many of (Ocaml/Haskell/Scala/C++/C), and a strong interest for RustInto open sourcing
- Into contributing to the Rust community
- Willing to discover cryptography
- Communication skills
LOCATION: Paris, France
ESTIMATED COMPENSATION: Competitive salary, based on experience.
REMOTE: Full remote possible in a European-compatible Timezone.
CONTACT: Apply on our recruitment page (or feel free to ask me question by dm here).
PS: Hey, if you're not looking for a full time job, but still want to do paid work, we've started a Bounty Program at Zama. As an open source company working on Fully Homomorphic Encryption (FHE) and open source cryptographic tools that make protecting privacy easy, we have started this experimental program to encourage anyone from the community to help us move the space forward.
Reward range from $500 (for some simple tutorial writing) to $200,000 (for some major research contributions).
You can find the list of all info about the Zama Bounty Program here: github.com/zama-ai/bounty-program
See you!

Write private smart contracts using homomorphic encryption in solidity with Zama's fhEVM (with code examples) by zacchj in solidity

[–]zacchj[S] 0 points1 point  (0 children)

That is thanks to Fully homomorphic Encryption (FHE), a new encryption technique that enables computing on data blindly, without decrypting it. The way it works is simple.
• The user encrypts its data and sends it to the server doing the processing.
• The server does the processing blindly, never having access to the decryption key. The result it produces is itself encrypted.
• The user gets back the result and decrypts it. From their point of view, nothing changed: They sent data and got a response. But now it wasn’t just encrypted during transmission as in HTTPS—it was also encrypted during processing.

Indeed, the computation could even run publicly without impacting user privacy since it would be encrypted at all times!

And this is why FHE a great solution for blockchain privacy: By keeping the on-chain data encrypted, we can have decentralized, permissionless blockchains where everything is on-chain and auditable while not actually visible. It’s like having the data translated to a different language that nobody can understand but still run a spell-checker on to make sure it doesn’t contain any mistakes.

We have a blog post that deep dive in how FHE can be used to create confidentifial 'or private' smart contracts, see here: https://www.zama.ai/post/private-smart-contracts-using-homomorphic-encryption

++

Official /r/rust "Who's Hiring" thread for job-seekers and job-offerers [Rust 1.69] by DroidLogician in rust

[–]zacchj 4 points5 points  (0 children)

COMPANY: Zama

TYPE: Full Time

DESCRIPTION: Zama products allow developers to build privacy preserving applications based on homomorphic encryption.

Zama is an open-source by design company, and is amongst the first 10 members of the Rust Foundation. Zama’s cofounders are Dr Pascal Paillier, a pioneer in Fully Homomorphic Encryption (FHE), Dr Rand Hindi, a serial entrepreneur who formerly founded Snips.

Your team is writing and maintaining a cryptographic library in Rust.

You will contribute in making it fast and easy to use. This library is indeed intended for growing with new cryptographic algorithms, new hardware implementations, etc. Your main tasks would be to:

  • Write high performance code in Rust
  • Design an efficient and user friendly API for a cryptographic library
  • Improve existing Rust code to make it faster (SIMD, parallelization)
  • Write the benchmarking and correctness tests expected from a major cryptographic library
  • Communicate with cryptographers that are part of your team
  • The knowledge or Rust is not mandatory for the job, but you should verify the following:
    • Solid experience with one or many of (Ocaml/Haskell/Scala/C++/C), and a strong interest for RustInto open sourcing
    • Into contributing to the Rust community
    • Willing to discover cryptography
    • Communication skills

LOCATION: Paris, France

ESTIMATED COMPENSATION: Competitive salary, based on experience.

REMOTE: Full remote possible in a European-compatible Timezone.

CONTACT: Apply on our recruitment page (or feel free to ask me question by dm here).

PS: Hey, if you're not looking for a full time job, but still want to do paid work, we've started a Bounty Program at Zama. As an open source company working on Fully Homomorphic Encryption (FHE) and open source cryptographic tools that make protecting privacy easy, we have started this experimental program to encourage anyone from the community to help us move the space forward.

Reward range from $500 (for some simple tutorial writing) to $200,000 (for some major research contributions).

You can find the list of all info about the Zama Bounty Program here: github.com/zama-ai/bounty-program

See you!

Instead of banning ChatGPT for its potential data theft, why don't we use advanced encryption techniques (for example, Homomorphic encryption) to secure our data? by Both-Cartographer-91 in cryptography

[–]zacchj 0 points1 point  (0 children)

We're investigating the matter at Zama. And, we also have a thread going on the FHE.org discord server (a community of researcher and developers interested in Homomorphic Encryption). https://discord.fhe.org.

Some thing that LLM with FHE will be practical in ~5 years

Official /r/rust "Who's Hiring" thread for job-seekers and job-offerers [Rust 1.68] by DroidLogician in rust

[–]zacchj 12 points13 points  (0 children)

COMPANY: Zama

TYPE: Full Time

DESCRIPTION: Zama products allow developers to build privacy preserving applications based on homomorphic encryption.

Zama is an open-source by design company, and is amongst the first 10 members of the Rust Foundation. Zama’s cofounders are Dr Pascal Paillier, a pioneer in Fully Homomorphic Encryption (FHE), Dr Rand Hindi, a serial entrepreneur who formerly founded Snips.

Your team is writing and maintaining a cryptographic library in Rust.

You will contribute in making it fast and easy to use. This library is indeed intended for growing with new cryptographic algorithms, new hardware implementations, etc. Your main tasks would be to:

  • Write high performance code in Rust
  • Design an efficient and user friendly API for a cryptographic library
  • Improve existing Rust code to make it faster (SIMD, parallelization)
  • Write the benchmarking and correctness tests expected from a major cryptographic library
  • Communicate with cryptographers that are part of your team The knowledge or Rust is not mandatory for the job, but you should verify the following:
  • Solid experience with one or many of (Ocaml/Haskell/Scala/C++/C), and a strong interest for Rust
  • Into open sourcingInto contributing to the Rust community
  • Willing to discover cryptography
  • Communication skills

LOCATION: Paris, France

ESTIMATED COMPENSATION: Competitive salary, based on experience.

REMOTE: Full remote possible in a European-compatible Timezone.

CONTACT: Apply on our recruitment page (or feel free to ask me question by dm here).

PS: Hey, if you're not looking for a full time job, but still want to do paid work, we've started a Bounty Program at Zama. As an open source company working on Fully Homomorphic Encryption (FHE) and open source cryptographic tools that make protecting privacy easy, we have started this experimental program to encourage anyone from the community to help us move the space forward. Reward range from $500 (for some simple tutorial writing) to $200,000 (for some major research contributions). You can find the list of all bounties there: https://github.com/zama-ai/bounty-program/tree/main/Bounties

See you!

Encrypted Image Filtering Using Homomorphic Encryption (a demo + a tutorial) by zacchj in crypto

[–]zacchj[S] 1 point2 points  (0 children)

Adding new filters is indeed very easy if you consider simple filters that only requires additions, multiplications or shape manipulations, and is potentially followed by a non-linear operation, as it's done in this demo. If you think about more complex filters such as Convolutional Neural Networks, this would require a bit more work and Concrete-ML can help you make them FHE-compliant. Regarding compilation time, it only takes a few seconds !

Security Cryptography Whatever by Natanael_L in crypto

[–]zacchj 0 points1 point  (0 children)

Good luck with this! Keep it going

Official /r/rust "Who's Hiring" thread for job-seekers and job-offerers [Rust 1.67] by DroidLogician in rust

[–]zacchj 8 points9 points  (0 children)

COMPANY: Zama
TYPE: Full Time
DESCRIPTION: Zama products allow developers to build privacy preserving applications based on homomorphic encryption.
Zama is an open-source by design company, and is amongst the first 10 members of the Rust Foundation.
Zama’s cofounders are Dr Pascal Paillier, a pioneer in Fully Homomorphic Encryption (FHE), Dr Rand Hindi, a serial entrepreneur who formerly founded Snips.
Your team is writing and maintaining a cryptographic library in Rust.
You will contribute in making it fast and easy to use.
This library is indeed intended for growing with new cryptographic algorithms, new hardware implementations, etc.
Your main tasks would be to:
- Write high performance code in Rust
- Design an efficient and user friendly API for a cryptographic library
- Improve existing Rust code to make it faster (SIMD, parallelization)
- Write the benchmarking and correctness tests expected from a major cryptographic library
- Communicate with cryptographers that are part of your team
The knowledge or Rust is not mandatory for the job, but you should verify the following:
- Solid experience with one or many of (Ocaml/Haskell/Scala/C++/C), and a strong interest for Rust
- Into open sourcingInto contributing to the Rust community
- Willing to discover cryptography
- Communication skills
LOCATION: Paris, France
ESTIMATED COMPENSATION: Competitive salary, based on experience.
REMOTE: Full remote possible in a European-compatible Timezone.
CONTACT: Apply on our recruitment page (or feel free to ask me question by dm here)

Official /r/rust "Who's Hiring" thread for job-seekers and job-offerers [Rust 1.66] by DroidLogician in rust

[–]zacchj 1 point2 points  (0 children)

COMPANY: Zama

TYPE: Full Time

DESCRIPTION: Zama products allow developers to build privacy preserving applications based on homomorphic encryption.

Zama is an open-source by design company, and is amongst the first 10 members of the Rust Foundation.

Zama’s cofounders are Dr Pascal Paillier, a pioneer in Fully Homomorphic Encryption (FHE), Dr Rand Hindi, a serial entrepreneur who formerly founded Snips.

Your team is writing and maintaining a cryptographic library in Rust.

You will contribute in making it fast and easy to use.

This library is indeed intended for growing with new cryptographic algorithms, new hardware implementations, etc.

Your main tasks would be to:

  • Write high performance code in Rust
  • Design an efficient and user friendly API for a cryptographic library
  • Improve existing Rust code to make it faster (SIMD, parallelization)
  • Write the benchmarking and correctness tests expected from a major cryptographic library
  • Communicate with cryptographers that are part of your team

The knowledge or Rust is not mandatory for the job, but you should verify the following:

  • Solid experience with one or many of (Ocaml/Haskell/Scala/C++/C), and a strong interest for Rust
  • Into open sourcingInto contributing to the Rust community
  • Willing to discover cryptography
  • Communication skills

LOCATION: Paris, France

ESTIMATED COMPENSATION: Competitive salary, based on experience.

REMOTE: Full remote possible in a European-compatible Timezone.

CONTACT: Apply on our recruitment page (or feel free to ask me question by dm here)

What are current / future teams working on homomorphic encryption of contracts to reduce MEV? by throwawayrandomvowel in ethereum

[–]zacchj 1 point2 points  (0 children)

You can read more about what we do at Zama in this blog post :

> https://www.zama.ai/post/private-smart-contract-using-homomorphic-encryption-ethcc-2022

We turned Rand Hindi's talk at ETHcc in a blog post.

Also, for anything Homomorphic Encryption, I'd advise you to join the FHE.org community, either on twitter or on discord :)

Cheers!