• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  Copyright 2018 The WebRTC project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10 
11 package org.webrtc;
12 
13 /**
14  * The SSLCertificateVerifier interface allows API users to provide custom
15  * logic to verify certificates.
16  */
17 public interface SSLCertificateVerifier {
18   /**
19    * Implementations of verify allow applications to provide custom logic for
20    * verifying certificates. This is not required by default and should be used
21    * with care.
22    *
23    * @param certificate A byte array containing a DER encoded X509 certificate.
24    * @return True if the certificate is verified and trusted else false.
25    */
verify(byte[] certificate)26   @CalledByNative boolean verify(byte[] certificate);
27 }
28