Home
last modified time | relevance | path

Searched refs:modulus (Results 1 – 5 of 5) sorted by relevance

/device/google/contexthub/util/nanoapp_sign/
Dnanoapp_sign.c120 uint32_t modulus[RSA_LIMBS]; member
136 memcpy(rsa->modulus, sigPack + RSA_BYTES, RSA_BYTES); in validateSignature()
139 rsaResult = rsaPubOp(&rsa->state, rsa->num, rsa->modulus); in validateSignature()
232 memcpy(masterPubKey, rsa->modulus, RSA_BYTES); in handleVerify()
270 if (memcmp(masterPubKey, rsa->modulus, RSA_BYTES) == 0) { in handleVerify()
384 rsaResult = rsaPrivOp(&rsa->state, rsa->num, rsa->exponent, rsa->modulus); in handleSign()
395 ret = (fwrite(rsa->modulus, 1, RSA_BYTES, out) == RSA_BYTES) ? 0 : 2; in handleSign()
512 if (!readFile(rsa.modulus, sizeof(rsa.modulus), keyPubFile)) in main()
515 printHashRev(stderr, "RSA modulus", rsa.modulus, RSA_LIMBS); in main()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dnumbers.py310 def __pow__(self, exponent, modulus=None): argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dnumbers.py310 def __pow__(self, exponent, modulus=None): argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dtypeobject.c5144 slot_nb_power(PyObject *self, PyObject *other, PyObject *modulus) argument
5148 if (modulus == Py_None)
5156 "(OO)", other, modulus);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dtypeobject.c5092 slot_nb_power(PyObject *self, PyObject *other, PyObject *modulus) argument
5096 if (modulus == Py_None)
5104 "(OO)", other, modulus);