1
1
miroir de https://github.com/henrydcase/pqc.git synchronisé 2024-11-22 07:35:38 +00:00

Renamed sigbytes to siglen (consistent with mlen)

Cette révision appartient à :
Peter Schwabe 2019-01-11 18:16:43 +01:00
Parent 4b7e5efbf5
révision 5a22a4faec

Voir le fichier

@ -88,8 +88,8 @@ in most software stacks of computing and verifying signatures instead of produci
recovering signed messages. Specifically, those functions have the following name and signature:
```
int crypto_sign_signature(uint8_t *sig, size_t *sigbytes, const uint8_t *m, size_t mlen, const uint8_t *sk);
int crypto_sign_verify(const uint8_t *sig, size_t sigbytes, const uint8_t *m, size_t mlen, const uint8_t *pk);
int crypto_sign_signature(uint8_t *sig, size_t *siglen, const uint8_t *m, size_t mlen, const uint8_t *sk);
int crypto_sign_verify(const uint8_t *sig, size_t siglen, const uint8_t *m, size_t mlen, const uint8_t *pk);
```
## License