| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "crypto/curve25519.h" | |
| 6 | |
| 7 #include <stdint.h> | |
| 8 | |
| 9 #include "third_party/boringssl/src/include/openssl/curve25519.h" | |
| 10 | |
| 11 namespace crypto { | |
| 12 | |
| 13 namespace curve25519 { | |
| 14 | |
| 15 bool ScalarMult(const uint8_t* private_key, | |
| 16 const uint8_t* peer_public_key, | |
| 17 uint8_t* shared_key) { | |
| 18 return !!X25519(shared_key, private_key, peer_public_key); | |
| 19 } | |
| 20 | |
| 21 void ScalarBaseMult(const uint8_t* private_key, uint8_t* public_key) { | |
| 22 X25519_public_from_private(public_key, private_key); | |
| 23 } | |
| 24 | |
| 25 } // namespace curve25519 | |
| 26 | |
| 27 } // namespace crypto | |
| OLD | NEW |