Home | History | Annotate | Download | only in ec

Lines Matching defs:out

12  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
77 // EncodeECPrivateKey encodes |key| as an ECPrivateKey structure into |*out|. It
79 static bool EncodeECPrivateKey(std::vector<uint8_t> *out, EC_KEY *key) {
81 out->resize(len);
82 uint8_t *outp = out->data();
95 std::vector<uint8_t> out;
96 if (!EncodeECPrivateKey(&out, key.get())) {
104 out) {
147 std::vector<uint8_t> out;
148 if (!key || !EncodeECPrivateKey(&out, key.get())) {
154 kECKeyWithZeros + sizeof(kECKeyWithZeros)) != out) {
161 if (!key || !EncodeECPrivateKey(&out, key.get())) {
167 kECKeyWithZeros + sizeof(kECKeyWithZeros)) != out) {