Skip to content

Package: KeyUsage

KeyUsage

nameinstructionbranchcomplexitylinemethod
static {...}
M: 94 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 10 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2017, 2020 Eurotech and/or its affiliates and others
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License v1.0
6: * which accompanies this distribution, and is available at
7: * http://www.eclipse.org/legal/epl-v10.html
8: *
9: * Contributors:
10: * Eurotech - initial API and implementation
11: *******************************************************************************/
12: package org.eclipse.kapua.service.certificate;
13:
14: /**
15: * @since 1.0.0
16: */
17: public enum KeyUsage {
18:
19: /**
20: * @since 1.0.0
21: */
22: DIGITAL_SIGNATURE,
23: /**
24: * @since 1.0.0
25: */
26: NON_REPUDIATION,
27: /**
28: * @since 1.0.0
29: */
30: KEY_ENCIPHERMENT,
31: /**
32: * @since 1.0.0
33: */
34: DATA_ENCIPHERMENT,
35: /**
36: * @since 1.0.0
37: */
38: KEY_AGREEMENT,
39: /**
40: * @since 1.0.0
41: */
42: KEY_CERT_SIGN,
43: /**
44: * @since 1.0.0
45: */
46: CRL_SIGN,
47: /**
48: * @since 1.0.0
49: */
50: ENCIPHER_ONLY,
51: /**
52: * @since 1.0.0
53: */
54: DECIPHER_ONLY,
55: }