opentitan VS ios-mail

Compare opentitan vs ios-mail and see what are their differences.

opentitan

OpenTitan: Open source silicon root of trust (by lowRISC)

ios-mail

Secure email that protects your privacy (by ProtonMail)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
opentitan ios-mail
14 61
2,357 1,346
2.1% 0.4%
10.0 9.8
about 8 hours ago 26 days ago
SystemVerilog Swift
Apache License 2.0 GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

opentitan

Posts with mentions or reviews of opentitan. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-27.
  • Chisel: A Modern Hardware Design Language
    6 projects | news.ycombinator.com | 27 Dec 2023
    Thanks for the info these all certainly sound like promising developments though I still think there's a major hurdles to overcome.

    > good PPA with popular backend tools

    Getting good PPA for any given thing you can express in the language is only part of the problem. The other aspect is how easy does the language make it to express the thing you need to get the best PPA (discussed in example below)?

    > Think of it like a source map that allows you to jump back and forth between the final System Verilog and the source HDL.

    This definitely sounds useful (I wish synthesis tools did something similar!) but again it's only part of the puzzle here. It's all very well to identify the part of the HDL that relates to some physical part of the circuit but how easy is it to go from that to working out how to manipulate the HDL such that you get the physical circuit you want?

    As a small illustrative example here's a commit for a timing fix I did recently: https://github.com/lowRISC/opentitan/commit/1fc57d2c550f2027.... It's for a specialised CPU for asymmetric crypto. It has a call stack that's accessible via a register (actually a general stack but typical used for return addresses for function calls). The register file looks to see if you're accessing the stack register, in which case it redirects your access to an internal stack structure and when reading returns the top of the stack. If you're not accessing the stack it just reads directly from the register file as usual.

    The problem comes (as it often does in CPU design) in error handling. When an error occurs you want to stop the stack push/pop from happening (there's multiple error categories and one instruction could trigger several of them, see the documentation: https://opentitan.org/book/hw/ip/otbn/index.html for details). Whether you observed an error or not was factored into the are you doing a stack push or pop calculation and in turn factored into the mux that chose between data from the top of the stack and data from the register file. The error calculation is complex and comes later on in the cycle, so factoring it into the mux was not good as it made the register file data turn up too late. The solution, once the issue was identified, was simple, separate the logic deciding whether action itself should occur (effectively the flop enables for the logic making up the stack) from the logic calculating whether or not we had a stack or register access (which is based purely on the register index being accessed). The read mux then uses the stack or register access calculation without the 'action actually occurs' logic and the timing problem is fixed.

    To get to this fix you have two things to deal with, first taking the identified timing path and choosing a sensible point to target for optimization and second actually being able to do the optimization. Simply having a mapping saying this gate relates to this source line only gets you so far, especially if you've got abstractions in your language such that a single source line can generate complex structures. You need to be able to easily understand how all those source lines relate to one another to create the path to choose where to optimise something.

    Then there's the optimization itself, pretty trivial in this case as it was isolated to the register file which already had separate logic to determine whether we were actually going to take the action vs determine if we were accessing the stack register or a normal register. Because of SystemVerilog's lack of powerful abstractions making a tweak to get the read mux to use the earlier signal was easy to do but how does that work when you've got more powerful abstractions that deal with all the muxing for you in cases like this and the tool is producing the mux select signal for you. How about where the issue isn't isolated to a single module and spread around (e.g. see another fix I did https://github.com/lowRISC/opentitan/commit/f6913b422c0fb82d... which again boils down to separating the 'this action is happening' from the 'this action could happen' logic and using it appropriately in different places).

    I haven't spend much time looking at Chisel so it may be there's answers to this but if it gives you powerful abstractions you end up having to think harder to connect those abstractions to the physical circuit result. A tool telling you gate X was ultimately produced by source line Y is useful but doesn't give you everything you need.

    > the combination of Chisel and CIRCT offers a unique solution to a deeper problem than dealing with minor annoyances in System Verilog: capturing design intent beyond the RTL

  • Ask HN: Who is hiring? (July 2023)
    16 projects | news.ycombinator.com | 3 Jul 2023
    lowRISC https://lowrisc.org | Non-profit | Cambridge, UK | Zurich, Switzerland | Design Verification Engineers | Infrastructure Engineer | HYBRID | Full time

    lowRISC's mission is to bring open source silicon to the hardware world and see it shipping in volume in commercial applications. We want to see open source silicon occupy a similar position to open source software (e.g. look at Linux, it's the default choice in many applications, we'd like open source silicon to be used for similar foundational technologies in the hardware world).

    Our major project focus is OpenTitan: https://github.com/lowRISC/opentitan it’s a silicon root of trust being built and funded by a collaboration of major companies, such as Google, Western Digital, Seagate, Winbond and Rivos amongst others. lowRISC stewards the project as well as performing a significant proportion of the engineering work.

    We’ve just announced the RTL freeze for the first OpenTitan tapeout, a discrete chip, named Earl Grey: https://lowrisc.org/blog/2023/06/opentitans-rtl-freeze-lever...

    We’re looking for verification and infrastructure engineers to join us. We work in System Verilog and use UVM, though plan to expand our use of formal verification. We’re also keen to explore new innovative ways to verify designs.

    A key responsibility for lowRISC is maintaining the CI and regression infrastructure for OpenTitan. This is a complex system running many different tools across different machines (both cloud and on-site) and involves FPGAs and custom hardware. We use ansible and terraform to manage it all. We’re seeking an infrastructure engineer to maintain and scale the system as well as architect and build new facets of it.

    lowRISC is headquartered in Cambridge, UK and we have an office in Zürich, Switzerland. We utilize a hybrid working model.

    We offer competitive salaries (see job ads for ranges) and a generous pension (12.5% employer contribution in the UK), you can find our individual job postings here: https://lowrisc.applytojob.com/apply/

    Feel free to email me at [email protected] if you’ve got any questions.

  • Putting out the hardware dumpster fire
    1 project | news.ycombinator.com | 23 Jun 2023
    We're aiming to push things in the other direction with OpenTitan: https://github.com/lowRISC/opentitan/

    It's an Open Silicon root of trust, all RTL (the actual hardware design in SystemVerilog), firmware, documentation and verification environment is open source and in the repository I just linked.

    We're closing in on our first discrete chip (details here https://opensource.googleblog.com/2023/06/opentitan-rtl-free... and https://lowrisc.org/blog/2023/06/opentitans-rtl-freeze-lever...) and have lots more in the pipeline (our project director Dom Rizzo gave a keynote at the Barcelona RISC-V Europe summit recently with some details, sadly not available on video yet).

    The hope is this will be a real proof point of the value of open source in hardware and, if as successful as we like it to be, can push the industry from a closed by default to people having to justify why they're not using open technology.

  • Looking to work in Open Source Silicon and RISC-V? lowRISC is hiring DV and infrastructure engineers
    2 projects | /r/FPGA | 21 Jun 2023
    Our major project focus is OpenTitan: https://github.com/lowRISC/opentitan it’s a silicon root of trust being built and funded by a collaboration of major companies, such as Google, Western Digital, Seagate, Winbond and Rivos amongst others. lowRISC stewards the project as well as performing a significant proportion of the engineering work.
  • Towards a More Open Secure Element Chip
    2 projects | news.ycombinator.com | 20 Dec 2022
    Interesting to see more potential entrants into this space. I work on OpenTitan https://opentitan.org/ which I believe will do much (indeed maybe everything) of what Cramium and Bunnie are aiming for (of course being a stealth startup hard to know what their plans actually are). We're at an advanced stage of development and being open you can take a look at our work right now https://github.com/lowRISC/OpenTitan our nightly regression dashboards demonstrate the project's maturity https://reports.opentitan.org/hw/top_earlgrey/dv/latest/repo... and https://reports.opentitan.org/hw/top_earlgrey/dv/summary/lat...
  • Phoronix: "AMD, Google, Microsoft & NVIDIA Announce "Caliptra" Open-Source Root of Trust"
    1 project | /r/hardware | 21 Oct 2022
    Um hello? Google already has an open source hardware root of trust, called OpenTitan. Why didn't they just use that?
  • Google, Western Digital, Seagate quietly an open source root of trust
    3 projects | news.ycombinator.com | 23 Apr 2022
    We've changed the URL to that from https://github.com/lowRISC/opentitan,

    and the title from

  • Making open source hardware design a reality
    3 projects | news.ycombinator.com | 23 Apr 2022
    Whilst open source hardware work goes back a fair way, I feel we're really at a turning point where it can become a serious force within the hardware world (think late 80s/early 90s in software terms, Linux and GCC emerging and beginning to find their feet). There's lots of interesting developments in tooling plus significant open hardware projects on-going.

    I shall take the opportunity to plug OpenTitan: https://github.com/lowRISC/opentitan

    It's an open source root of trust being developed collaboratively by multiple companies such as lowRISC (who I work for), Google, Western Digital and Seagate amongst others. We've been rather quiet on the PR front but there's a lot of engineering work happening and other exciting things we can't yet make public.

    Whilst there's some things we have to keep closed (generally relating to ASIC design kits and things like Flash and memory IP) the vast majority of the RTL, documentation and software is open. Plus we're doing development in the open, the public repo is our live development repo. We're not developing it in private then just opening the end product.

  • How good is Verilator for big industry designs?
    1 project | /r/FPGA | 21 Dec 2021
    We use Verilator to do full system simulations of OpenTitan (https://github.com/lowRISC/opentitan) but couple that with a full DV environment using standard commercial simulators with UVM. The Verilator environment is used to run self checking system tests written in C.
  • lowRISC stopped working on their SoC in 2018 ;-(
    4 projects | /r/RISCV | 9 Dec 2021
    Whilst the 64-bit SoC project isn't being actively developed we are working hard on OpenTitan (https://opentitan.org/, https://github.com/lowRISC/opentitan) which we hope will become the first large scale deployment of significant open source silicon IP.

ios-mail

Posts with mentions or reviews of ios-mail. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-07.
  • Ask HN: Have you migrated to Proton mail/calendar/pass/etc.? How was it?
    1 project | news.ycombinator.com | 22 Apr 2024
    I see that Proton (https://proton.me/) offers a fuller suite of tools these days beyond just mail: calendar/password manager/cloud storage/vpn

    The pricing looks pretty good too at $9.99/month for everything

    Has anyone migrated everything to them? How is it if so?

    I currently pay for a Google Workspace on my own domain and iCloud for storage, which already amounts to more than Proton are charging (and Proton allows 3 custom domains for email vs Googles 1)

  • ASK HN: Where to host my personal email
    1 project | news.ycombinator.com | 3 Apr 2024
    I've been running my own email server for the last 10 years or so using iRedMail / CentOS on a cheap VM. It requires very little maintenance and I never have problems with delivery (just make sure you have DMARC, DKIM, SPF, all setup).

    Occasionally I consider moving to service provider but I don't really trust any of them with something so important. Especially Google, as there are so many cases of people getting locked out of their account with virtually no support available to them.

    If I were going to switch to a provider, it would likely be Proton. They are based out of Switzerland and as far as I know have an outstanding reputation.

    https://proton.me

  • I can't connect to ProtonMail.
    1 project | /r/ProtonMail | 11 Dec 2023
    If you have Proton VPN installed on an iOS, MacOS, or Android device, could you please try switching to the Stealth protocol (https://protonvpn.com/blog/stealth-vpn-protocol/) to see if you will be able to successfully connect afterwards. If you do manage to connect to a VPN server with the Stealth protocol, please try accessing proton.me afterwards and let us know how it goes.
  • Issue with FireStick and Surfshark
    1 project | /r/TiviMate | 10 Dec 2023
    Just for science, you should try a different VPN. You can get Proton for free if you sign up for Proton email at Proton.me. It’s at least another data point.
  • Proton services no longer work with non-Proton VPNs
    1 project | /r/ProtonMail | 8 Dec 2023
    Meanwhile, you could try accessing proton.me from another web browser, disable any browser extensions on your current web browser, and make sure you can access any other websites on the same setup.
  • Pretty sure simpcity.su thinks I am a bot. Help!
    1 project | /r/Piracy | 8 Dec 2023
    So two days ago I signed up with a fresh account with Brave, a VPN, and a fresh proton.me email. Went thru fine-- no problems, and used the site since. I used the site on my phone with the Brave browser, and fine again.
  • Can I trust SimpleLogin/passmail.net to never go down?
    1 project | /r/ProtonMail | 7 Dec 2023
    Proton AG is a privately-owned company and does not publish financial information, which makes assessing their future success or failure, or product strategy, difficult to predict. Any voluntarily released information is available through their website under Who We Are and Resources & Support, much of which is summarized on Wikipedia). I doubt that an officer or employee of Proton will provide insider information on Reddit that isn't already on the Proton website. Someone else here, who might be closer to the company, might be able to share better insights, but I see no reports of financial distress. I judge the financial and organizational stability of Proton to be at least equal to any of its competitors, and better than most. But these are my opinions and I have little concrete evidence to support them.
  • Calendar app/site that doesn't track your data
    1 project | /r/productivity | 7 Dec 2023
  • Small business owner: considering signi g up to Microsoft Office Premium for mail etc.
    2 projects | /r/selfhosted | 7 Dec 2023
    Proton is a decent alternative for email and calendar among others if you value privacy
  • Beyler yerli ve milli goebbels Proton (ProtonVPN vs.)'u banlamış olabilir mi bi baksanıza amk buney
    1 project | /r/KGBTR | 4 Dec 2023

What are some alternatives?

When comparing opentitan and ios-mail you can also consider the following projects:

fusesoc - Package manager and build abstraction tool for FPGA/ASIC development

proton-mail-android - Proton Mail Android app

ibex - Ibex is a small 32 bit RISC-V CPU core, previously known as zero-riscy.

webext-signed-pages - A browser extension to verify the authenticity (PGP signature) of web pages

openlane - OpenLane is an automated RTL to GDSII flow based on several components including OpenROAD, Yosys, Magic, Netgen and custom methodology scripts for design exploration and optimization.

OpenAdapt - AI-First Process Automation with Large [Language (LLMs) / Action (LAMs) / Multimodal (LMMs)] / Visual Language (VLMs)) Models

skywater-pdk - Open source process design kit for usage with SkyWater Technology Foundry's 130nm node.

strawberry - A GraphQL library for Python that leverages type annotations 🍓

chisel - Chisel: A Modern Hardware Design Language

tor-relay-docker - Tor relay Docker images for x86-64, armhf & arm64 (from source)

rocket-chip - Rocket Chip Generator

linux-cli-community - Linux command-line client for ProtonVPN. Written in Python.