MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / ECDSA_SIG_get0

Method ECDSA_SIG_get0

include/jwt/algorithm.hpp:529–533  ·  view source on GitHub ↗

*/

Source from the content-addressed store, hash-verified

527 /**
528 */
529 static void ECDSA_SIG_get0(const ECDSA_SIG* sig, const BIGNUM** pr, const BIGNUM** ps)
530 {
531 if (pr != nullptr) *pr = sig->r;
532 if (ps != nullptr) *ps = sig->s;
533 };
534
535 /**
536 */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected