From 4ccceaf4484dce24c5f0994b52079293a5fdb37c Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 23 Feb 2014 11:26:37 -0600 Subject: add RSA PKCS1 signing (and structure for PSS + verification) --- docs/exceptions.rst | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'docs/exceptions.rst') diff --git a/docs/exceptions.rst b/docs/exceptions.rst index 8ca9df29..38bd0e47 100644 --- a/docs/exceptions.rst +++ b/docs/exceptions.rst @@ -42,3 +42,9 @@ Exceptions This is raised when the verify method of a one time password function's computed token does not match the expected token. + + +.. class:: UnsupportedAsymmetricPadding + + This is raised when the chosen asymmetric padding is not supported by the + backend. -- cgit v1.2.3 From 0377f5a78de949f2f1e719ac89cf8b98b910bf81 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 24 Feb 2014 19:04:46 -0600 Subject: rename PKCS1->PKCS1v15 & UnsupportedAsymmetricPadding->UnsupportedPadding --- docs/exceptions.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'docs/exceptions.rst') diff --git a/docs/exceptions.rst b/docs/exceptions.rst index 38bd0e47..0982426f 100644 --- a/docs/exceptions.rst +++ b/docs/exceptions.rst @@ -44,7 +44,6 @@ Exceptions computed token does not match the expected token. -.. class:: UnsupportedAsymmetricPadding +.. class:: UnsupportedPadding - This is raised when the chosen asymmetric padding is not supported by the - backend. + This is raised when the chosen padding is not supported by the backend. -- cgit v1.2.3