bitwarden_vault

Struct Cipher

source
pub struct Cipher {
Show 24 fields pub id: Option<Uuid>, pub organization_id: Option<Uuid>, pub folder_id: Option<Uuid>, pub collection_ids: Vec<Uuid>, pub key: Option<EncString>, pub name: EncString, pub notes: Option<EncString>, pub type: CipherType, pub login: Option<Login>, pub identity: Option<Identity>, pub card: Option<Card>, pub secure_note: Option<SecureNote>, pub favorite: bool, pub reprompt: CipherRepromptType, pub organization_use_totp: bool, pub edit: bool, pub view_password: bool, pub local_data: Option<LocalData>, pub attachments: Option<Vec<Attachment>>, pub fields: Option<Vec<Field>>, pub password_history: Option<Vec<PasswordHistory>>, pub creation_date: DateTime<Utc>, pub deleted_date: Option<DateTime<Utc>>, pub revision_date: DateTime<Utc>,
}

Fields§

§id: Option<Uuid>§organization_id: Option<Uuid>§folder_id: Option<Uuid>§collection_ids: Vec<Uuid>§key: Option<EncString>

More recent ciphers uses individual encryption keys to encrypt the other fields of the Cipher.

§name: EncString§notes: Option<EncString>§type: CipherType§login: Option<Login>§identity: Option<Identity>§card: Option<Card>§secure_note: Option<SecureNote>§favorite: bool§reprompt: CipherRepromptType§organization_use_totp: bool§edit: bool§view_password: bool§local_data: Option<LocalData>§attachments: Option<Vec<Attachment>>§fields: Option<Vec<Field>>§password_history: Option<Vec<PasswordHistory>>§creation_date: DateTime<Utc>§deleted_date: Option<DateTime<Utc>>§revision_date: DateTime<Utc>

Implementations§

source§

impl Cipher

source

pub(super) fn get_cipher_key( key: &SymmetricCryptoKey, ciphers_key: &Option<EncString>, ) -> Result<Option<SymmetricCryptoKey>, CryptoError>

Get the decrypted individual encryption key for this cipher. Note that some ciphers do not have individual encryption keys, in which case this will return Ok(None) and the key associated with this cipher’s user or organization must be used instead

source

fn get_decrypted_subtitle( &self, key: &SymmetricCryptoKey, ) -> Result<String, CryptoError>

Trait Implementations§

source§

impl Clone for Cipher

source§

fn clone(&self) -> Cipher

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<UT> ConvertError<UT> for Cipher

source§

fn try_convert_unexpected_callback_error( e: UnexpectedUniFFICallbackError, ) -> Result<Self>

source§

impl Debug for Cipher

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Cipher

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<UT> FfiConverter<UT> for Cipher

source§

const TYPE_ID_META: MetadataBuffer = _

Type ID metadata, serialized into a [MetadataBuffer].
source§

type FfiType = RustBuffer

The low-level type used for passing values of this type over the FFI. Read more
source§

fn lower(v: Self) -> RustBuffer

Lower a rust value of the target type, into an FFI value of type Self::FfiType. Read more
source§

fn try_lift(buf: RustBuffer) -> Result<Self>

Lift a rust value of the target type, from an FFI value of type Self::FfiType. Read more
source§

fn write(obj: Self, buf: &mut Vec<u8>)

Write a rust value into a buffer, to send over the FFI in serialized form. Read more
source§

fn try_read(buf: &mut &[u8]) -> Result<Self>

Read a rust value from a buffer, received over the FFI in serialized form. Read more
source§

impl JsonSchema for Cipher

source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
source§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
source§

fn json_schema(gen: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
source§

impl KeyDecryptable<SymmetricCryptoKey, CipherListView> for Cipher

source§

fn decrypt_with_key( &self, key: &SymmetricCryptoKey, ) -> Result<CipherListView, CryptoError>

source§

impl KeyDecryptable<SymmetricCryptoKey, CipherView> for Cipher

source§

fn decrypt_with_key( &self, key: &SymmetricCryptoKey, ) -> Result<CipherView, CryptoError>

source§

impl KeyEncryptable<SymmetricCryptoKey, Cipher> for CipherView

source§

fn encrypt_with_key( self, key: &SymmetricCryptoKey, ) -> Result<Cipher, CryptoError>

source§

impl<UT> Lift<UT> for Cipher

source§

type FfiType = <Cipher as FfiConverter<UT>>::FfiType

source§

fn try_lift(v: Self::FfiType) -> Result<Self>

source§

fn try_read(buf: &mut &[u8]) -> Result<Self>

§

fn try_lift_from_rust_buffer(v: RustBuffer) -> Result<Self, Error>

Convenience method
source§

impl<UT> LiftRef<UT> for Cipher

source§

impl<UT> LiftReturn<UT> for Cipher

source§

type ReturnType = <Cipher as Lift<UT>>::FfiType

FFI return type for trait interfaces
source§

fn try_lift_successful_return(v: Self::ReturnType) -> Result<Self>

Lift a successfully returned value from a trait interface
§

fn lift_foreign_return( ffi_return: Self::ReturnType, call_status: RustCallStatus, ) -> Self

Lift a foreign returned value from a trait interface Read more
§

fn lift_error(_buf: RustBuffer) -> Self

Lift a Rust value for a callback interface method error result Read more
§

fn handle_callback_unexpected_error(e: UnexpectedUniFFICallbackError) -> Self

Lift a Rust value for an unexpected callback interface error Read more
source§

impl LocateKey for Cipher

source§

fn locate_key<'a>( &self, enc: &'a dyn KeyContainer, _: &Option<Uuid>, ) -> Result<&'a SymmetricCryptoKey, CryptoError>

source§

impl<UT> Lower<UT> for Cipher

source§

type FfiType = <Cipher as FfiConverter<UT>>::FfiType

source§

fn lower(obj: Self) -> Self::FfiType

source§

fn write(obj: Self, buf: &mut Vec<u8>)

§

fn lower_into_rust_buffer(obj: Self) -> RustBuffer

Convenience method
source§

impl<UT> LowerError<UT> for Cipher

source§

fn lower_error(obj: Self) -> RustBuffer

Lower this value for scaffolding function return Read more
source§

impl<UT> LowerReturn<UT> for Cipher

source§

type ReturnType = <Cipher as Lower<UT>>::FfiType

The type that should be returned by scaffolding functions for this type. Read more
source§

fn lower_return(v: Self) -> Result<Self::ReturnType, RustCallError>

Lower the return value from an scaffolding call Read more
§

fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>

Lower the return value for failed argument lifts Read more
source§

impl Serialize for Cipher

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TryFrom<CipherDetailsResponseModel> for Cipher

source§

type Error = VaultParseError

The type returned in the event of a conversion error.
source§

fn try_from(cipher: CipherDetailsResponseModel) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<UT> TypeId<UT> for Cipher

source§

const TYPE_ID_META: MetadataBuffer = _

Auto Trait Implementations§

§

impl Freeze for Cipher

§

impl RefUnwindSafe for Cipher

§

impl Send for Cipher

§

impl Sync for Cipher

§

impl Unpin for Cipher

§

impl UnwindSafe for Cipher

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> CompatExt for T

§

fn compat(self) -> Compat<T>

Applies the [Compat] adapter by value. Read more
§

fn compat_ref(&self) -> Compat<&T>

Applies the [Compat] adapter by shared reference. Read more
§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the [Compat] adapter by mutable reference. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, UT> HandleAlloc<UT> for T
where T: Send + Sync,

§

fn new_handle(value: Arc<T>) -> Handle

Create a new handle for an Arc value Read more
§

unsafe fn clone_handle(handle: Handle) -> Handle

Clone a handle Read more
§

unsafe fn consume_handle(handle: Handle) -> Arc<T>

Consume a handle, getting back the initial Arc<> Read more
§

unsafe fn get_arc(handle: Handle) -> Arc<Self>

Get a clone of the Arc<> using a “borrowed” handle. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,