60f9f164ad20c846b972e1d91b6b68d422b20cc7
[platform/upstream/iotivity.git] / android / android_api / base / src / main / java / org / iotivity / ca / OicCipher.java
1 /* ****************************************************************\r
2  *\r
3  * Copyright 2016 Samsung Electronics All Rights Reserved.\r
4  *\r
5  *\r
6  *\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  *\r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  *\r
19  ******************************************************************/\r
20 \r
21 package org.iotivity.ca;\r
22 \r
23 public enum OicCipher {\r
24     TLS_ECDH_anon_WITH_AES_128_CBC_SHA(0xC018),\r
25     TLS_PSK_WITH_AES_128_CCM_8(0xC0A8),\r
26     TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8(0xC0AE),\r
27     TLS_RSA_WITH_AES_256_CBC_SHA(0x35);\r
28 \r
29     private int cipher;\r
30 \r
31     private OicCipher(int cipher) {\r
32         this.cipher = cipher;\r
33     }\r
34 \r
35     public int getValue(){\r
36         return cipher;\r
37     }\r
38 }\r