Home | History | Annotate | Download | only in android
      1 // Copyright (c) 2013 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 #ifndef DEFINE_PRIVATE_KEY_TYPE
      6 #error "Please define DEFINE_PRIVATE_KEY_TYPE before including this file."
      7 #endif
      8 
      9 DEFINE_PRIVATE_KEY_TYPE(RSA, 0)
     10 DEFINE_PRIVATE_KEY_TYPE(DSA, 1)
     11 DEFINE_PRIVATE_KEY_TYPE(ECDSA, 2)
     12 DEFINE_PRIVATE_KEY_TYPE(INVALID, 255)
     13