| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_ANDROID_NETWORK_LIBRARY_H_ | 5 #ifndef NET_ANDROID_NETWORK_LIBRARY_H_ |
| 6 #define NET_ANDROID_NETWORK_LIBRARY_H_ | 6 #define NET_ANDROID_NETWORK_LIBRARY_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 #include <stddef.h> | 9 #include <stddef.h> |
| 10 #include <stdint.h> | 10 #include <stdint.h> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 bool* is_issued_by_known_root, | 29 bool* is_issued_by_known_root, |
| 30 std::vector<std::string>* verified_chain); | 30 std::vector<std::string>* verified_chain); |
| 31 | 31 |
| 32 // Adds a certificate as a root trust certificate to the trust manager. | 32 // Adds a certificate as a root trust certificate to the trust manager. |
| 33 // |cert| is DER encoded certificate, |len| is its length in bytes. | 33 // |cert| is DER encoded certificate, |len| is its length in bytes. |
| 34 void AddTestRootCertificate(const uint8_t* cert, size_t len); | 34 void AddTestRootCertificate(const uint8_t* cert, size_t len); |
| 35 | 35 |
| 36 // Removes all root certificates added by |AddTestRootCertificate| calls. | 36 // Removes all root certificates added by |AddTestRootCertificate| calls. |
| 37 void ClearTestRootCertificates(); | 37 void ClearTestRootCertificates(); |
| 38 | 38 |
| 39 // Helper for the <keygen> handler. Passes the DER-encoded key pair via JNI to | |
| 40 // the Credentials store. The public key should be a DER-encoded | |
| 41 // SubjectPublicKeyInfo (X.509) and the private key a DER-encode PrivateKeyInfo | |
| 42 // (PKCS#8). | |
| 43 bool StoreKeyPair(const uint8_t* public_key, | |
| 44 size_t public_len, | |
| 45 const uint8_t* private_key, | |
| 46 size_t private_len); | |
| 47 | |
| 48 // Returns true if it can determine that only loopback addresses are configured. | 39 // Returns true if it can determine that only loopback addresses are configured. |
| 49 // i.e. if only 127.0.0.1 and ::1 are routable. | 40 // i.e. if only 127.0.0.1 and ::1 are routable. |
| 50 // Also returns false if it cannot determine this. | 41 // Also returns false if it cannot determine this. |
| 51 bool HaveOnlyLoopbackAddresses(); | 42 bool HaveOnlyLoopbackAddresses(); |
| 52 | 43 |
| 53 // Get the mime type (if any) that is associated with the file extension. | 44 // Get the mime type (if any) that is associated with the file extension. |
| 54 // Returns true if a corresponding mime type exists. | 45 // Returns true if a corresponding mime type exists. |
| 55 bool GetMimeTypeFromExtension(const std::string& extension, | 46 bool GetMimeTypeFromExtension(const std::string& extension, |
| 56 std::string* result); | 47 std::string* result); |
| 57 | 48 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 80 NET_EXPORT bool GetIsCaptivePortal(); | 71 NET_EXPORT bool GetIsCaptivePortal(); |
| 81 | 72 |
| 82 // Gets the SSID of the currently associated WiFi access point if there is one. | 73 // Gets the SSID of the currently associated WiFi access point if there is one. |
| 83 // Otherwise, returns empty string. | 74 // Otherwise, returns empty string. |
| 84 NET_EXPORT_PRIVATE std::string GetWifiSSID(); | 75 NET_EXPORT_PRIVATE std::string GetWifiSSID(); |
| 85 | 76 |
| 86 } // namespace android | 77 } // namespace android |
| 87 } // namespace net | 78 } // namespace net |
| 88 | 79 |
| 89 #endif // NET_ANDROID_NETWORK_LIBRARY_H_ | 80 #endif // NET_ANDROID_NETWORK_LIBRARY_H_ |
| OLD | NEW |