👑
PointyCastle: A Guide
  • PointyCastle: A Guide
  • Internal Algorithms
    • Stream Ciphers
    • Block Ciphers
    • Authenticated Ciphers
    • Asymmetric Ciphers
    • Digests
    • Key Derivators
    • MACs
    • Signers
  • External API
    • Registry vs. Classes
    • String vs. Uint8List
    • Parameters
Powered by GitBook
On this page
  • What is PointyCastle? How did it originate?
  • Is [...] covered by PointyCastle?
  • How come you don't have [...], which BouncyCastle has?
  • Where's the documentation? I'm struggling to figure this out.

Was this helpful?

PointyCastle: A Guide

A description of PointyCastle, with lots of explanation and (small) code snippets!

NextInternal Algorithms

Last updated 5 years ago

Was this helpful?

is one of the most-used packages in all of Dart. And yet, there hasn't been a good explanation of how it works internally, and how to use it. This site hopes to make it a bit clearer to the general audience how PointyCastle functions internally. Before we dive in fully, I'm going to go through some CAQs (commonly asked questions). If you want to skip these, click the page link below.

What is PointyCastle? How did it originate?

PointyCastle, formerly known as Cipher, is a port of BouncyCastle to Dart. It reimplements cryptographic primitives (algorithms) for use in the Dart language. Late last year, the authors of the BouncyCastle project agreed to take over maintenance on this repository.

Is [...] covered by PointyCastle?

If you need a specific algorithm, there's a chance that it's not available. However, to my knowledge, PointyCastle covers every general cryptographic use case.

How come you don't have [...], which BouncyCastle has?

The port is NOT complete. If you have an algorithm you'd like to request for implementation, raise an issue at .

Where's the documentation? I'm struggling to figure this out.

If all goes well, this website should be enough to get you started.

Of course, if you have further questions, please feel free to raise an issue at .

On that note, let's get started. Go ahead and click the link below to navigate to the next page.

PointyCastle
Internal Algorithms
the PointyCastle repository
the PointyCastle repository