PeculiarVentures / webcrypto-liner

webcrypto-liner is a polyfill that let's down-level User Agents (like IE/Edge) use libraries that depend on WebCrypto. (Keywords: Javascript, WebCrypto, Shim, Polyfill)
MIT License
149 stars 26 forks source link

Add supported algorithms to the readme #2

Closed rmhrisk closed 7 years ago

rmhrisk commented 7 years ago

People will want to know what algorithms we support:

`webcrypto-liner` supports the following algorithms and key lengths:

| Capability                | Details                                       |
|---------------------------|-----------------------------------------------|
| Encryption/Decryption:    | RSA-OAEP, RSA-PKCSv1_15, AES-CBC, and AES-GCM |
| Sign/Verify               | RSA-PSS, RSA-PKCSv1.15, and ECDSA             |
| Hash                      | SHA-1, SHA-224, SHA-256, and SHA-384          |
| Derive Key/Bits           | ECDH                                          |
| Keywrap                   | AES-GCM                                       |
| Supported ECC curves      | P-256, P-384, and  P-512                      |
| Supported RSA Key Lengths | 1024, 2048, 3072, and 4096                    |
| Supported AES Key Lengths | 128, 192 and 256                              |
rmhrisk commented 7 years ago

fixed