2020-02-25 16:36:11 +00:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
use cjson::Error as CjsonError;
|
2020-03-18 13:15:56 +00:00
|
|
|
use thiserror::Error;
|
2020-02-25 16:36:11 +00:00
|
|
|
|
2020-03-18 13:15:56 +00:00
|
|
|
use super::store::CryptoStoreError;
|
|
|
|
|
|
|
|
pub type Result<T> = std::result::Result<T, OlmError>;
|
|
|
|
pub type VerificationResult<T> = std::result::Result<T, SignatureError>;
|
|
|
|
|
|
|
|
#[derive(Error, Debug)]
|
2020-02-25 16:36:11 +00:00
|
|
|
pub enum SignatureError {
|
2020-03-18 13:15:56 +00:00
|
|
|
#[error("the provided JSON value isn't an object")]
|
2020-02-25 16:36:11 +00:00
|
|
|
NotAnObject,
|
2020-03-18 13:15:56 +00:00
|
|
|
#[error("the provided JSON object doesn't contain a signatures field")]
|
2020-02-25 16:36:11 +00:00
|
|
|
NoSignatureFound,
|
2020-03-18 13:15:56 +00:00
|
|
|
#[error("the provided JSON object can't be converted to a canonical representation")]
|
2020-02-25 16:36:11 +00:00
|
|
|
CanonicalJsonError(CjsonError),
|
2020-03-18 13:15:56 +00:00
|
|
|
#[error("the signature didn't match the provided key")]
|
2020-02-25 16:36:11 +00:00
|
|
|
VerificationError,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<CjsonError> for SignatureError {
|
|
|
|
fn from(error: CjsonError) -> Self {
|
|
|
|
Self::CanonicalJsonError(error)
|
|
|
|
}
|
|
|
|
}
|
2020-03-18 13:15:56 +00:00
|
|
|
|
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum OlmError {
|
|
|
|
#[error("signature verification failed")]
|
|
|
|
Signature(#[from] SignatureError),
|
|
|
|
#[error("failed to read or write to the crypto store {0}")]
|
|
|
|
Store(#[from] CryptoStoreError),
|
|
|
|
}
|