From 3176b7e9813f13097cec7eebb099fb7b8ed92748 Mon Sep 17 00:00:00 2001 From: remora00 Date: Wed, 23 Mar 2022 14:48:56 +0545 Subject: [PATCH] fix latex render --- book/06__building-blocks/01__bls-signatures.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/book/06__building-blocks/01__bls-signatures.md b/book/06__building-blocks/01__bls-signatures.md index c7d72a3..659d11e 100644 --- a/book/06__building-blocks/01__bls-signatures.md +++ b/book/06__building-blocks/01__bls-signatures.md @@ -36,15 +36,15 @@ Signature schemes have three algorithms in combination, each probabilistic polyn G: key generator, generates a public key and corresponding private key on input 1^n where n is security parameter -$$G(\text{security_parameter}) \rightarrow (\text{public_key}, \text{private_key})$$ +$$G(\text{security\_parameter}) \rightarrow (\text{public\_key}, \text{private\_key})$$ S: Returns a signature on inputs pk and string -$$S(\text{private_key}, \text{message}) \rightarrow \text{signature}$$ +$$S(\text{private\_key}, \text{message}) \rightarrow \text{signature}$$ V: Outputs accepted or rejected on public key, message, signature -$$V(\text{public_key}, \text{message}, \text{signature}) \rightarrow \{\text{accepted}, \text{rejected}\}$$ +$$V(\text{public\_key}, \text{message}, \text{signature}) \rightarrow \{\text{accepted}, \text{rejected}\}$$ Correctness: