summaryrefslogtreecommitdiff
path: root/keystore2/src/crypto/error.rs
blob: 48a2d4cb049ff4fc806b78d29d1ade10e691af7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Copyright 2020, The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! This module implements Error for the keystore2_crypto library.
use crate::zvec;

/// Crypto specific error codes.
#[derive(Debug, thiserror::Error, Eq, PartialEq)]
pub enum Error {
    /// This is returned if the C/C++ implementation of AES_gcm_decrypt returned false.
    #[error("Failed to decrypt.")]
    DecryptionFailed,

    /// This is returned if the C/C++ implementation of AES_gcm_encrypt returned false.
    #[error("Failed to encrypt.")]
    EncryptionFailed,

    /// The initialization vector has the wrong length.
    #[error("Invalid IV length.")]
    InvalidIvLength,

    /// The aead tag has the wrong length.
    #[error("Invalid AEAD tag length.")]
    InvalidAeadTagLength,

    /// The key has the wrong length.
    #[error("Invalid key length.")]
    InvalidKeyLength,

    /// Invalid data length.
    #[error("Invalid data length.")]
    InvalidDataLength,

    /// Invalid salt length.
    #[error("Invalid salt length.")]
    InvalidSaltLength,

    /// Random number generation failed.
    #[error("Random number generation failed.")]
    RandomNumberGenerationFailed,

    /// ZVec construction failed.
    #[error(transparent)]
    LayoutError(#[from] std::alloc::LayoutErr),

    /// Nix error.
    #[error(transparent)]
    NixError(#[from] nix::Error),

    /// This is returned if the C implementation of HKDFExtract returned false
    /// or otherwise failed.
    #[error("Failed to extract.")]
    HKDFExtractFailed,

    /// This is returned if the C implementation of HKDFExpand returned false.
    #[error("Failed to expand.")]
    HKDFExpandFailed,

    /// This is returned if the C implementation of ECDHComputeKey returned -1.
    #[error("Failed to compute ecdh key.")]
    ECDHComputeKeyFailed,

    /// This is returned if the C implementation of ECKEYGenerateKey returned null.
    #[error("Failed to generate key.")]
    ECKEYGenerateKeyFailed,

    /// This is returned if the C implementation of ECKEYMarshalPrivateKey returned 0.
    #[error("Failed to marshal private key.")]
    ECKEYMarshalPrivateKeyFailed,

    /// This is returned if the C implementation of ECKEYParsePrivateKey returned null.
    #[error("Failed to parse private key.")]
    ECKEYParsePrivateKeyFailed,

    /// This is returned if the C implementation of ECPOINTPoint2Oct returned 0.
    #[error("Failed to convert point to oct.")]
    ECPoint2OctFailed,

    /// This is returned if the C implementation of ECPOINTOct2Point returned null.
    #[error("Failed to convert oct to point.")]
    ECOct2PointFailed,

    /// This is returned if the C implementation of extractSubjectFromCertificate failed.
    #[error("Failed to extract certificate subject.")]
    ExtractSubjectFailed,

    /// This is returned if the C implementation of hmacSha256 failed.
    #[error("Failed to calculate HMAC-SHA256.")]
    HmacSha256Failed,

    /// Zvec error.
    #[error(transparent)]
    ZVec(#[from] zvec::Error),
}