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
use super::CredentialAttributeType;
use ockam_core::lib::*;
use serde::{Deserialize, Serialize};
#[cfg(feature = "std")]
mod fields {
pub use bbs::prelude::*;
pub use ff::{Field, PrimeField};
pub use pairing_plus::bls12_381::{Fr, FrRepr};
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub enum CredentialAttribute {
NotSpecified,
Empty,
String(String),
Numeric(i64),
Blob([u8; 32]),
}
impl CredentialAttribute {
pub fn can_be_empty(&self) -> bool {
match *self {
CredentialAttribute::NotSpecified | CredentialAttribute::Empty => true,
_ => false,
}
}
#[cfg(feature = "std")]
pub fn to_signature_message(&self) -> fields::SignatureMessage {
use fields::*;
let f_2_254: Fr = Fr::from_repr(FrRepr([
0x0000_0000_0000_0000u64,
0x0000_0000_0000_0000u64,
0x0000_0000_0000_0000u64,
0x0200_0000_0000_0000u64,
]))
.unwrap();
match self {
CredentialAttribute::NotSpecified => {
SignatureMessage::from(Fr::from_repr(FrRepr::from(1u64)).unwrap())
}
CredentialAttribute::Empty => {
SignatureMessage::from(Fr::from_repr(FrRepr::from(2u64)).unwrap())
}
CredentialAttribute::Blob(v) => SignatureMessage::from(v),
CredentialAttribute::String(s) => SignatureMessage::hash(s),
CredentialAttribute::Numeric(n) => {
let d = Fr::from_repr(FrRepr::from(*n as u64)).unwrap();
let mut m = f_2_254;
if *n < 0 {
m.sub_assign(&d);
} else {
m.add_assign(&d);
}
SignatureMessage::from(m)
}
}
}
}
impl PartialEq<CredentialAttributeType> for CredentialAttribute {
fn eq(&self, other: &CredentialAttributeType) -> bool {
match (other, self) {
(&CredentialAttributeType::Blob, &CredentialAttribute::Blob(_)) => true,
(&CredentialAttributeType::Number, &CredentialAttribute::Numeric(_)) => true,
(&CredentialAttributeType::Utf8String, &CredentialAttribute::String(_)) => true,
(_, _) => false,
}
}
}