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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
use crate::error::WebauthnCError;
use crate::AuthenticatorBackend;
use crate::Url;
use openssl::x509::{
extension::{AuthorityKeyIdentifier, BasicConstraints, KeyUsage, SubjectKeyIdentifier},
X509NameBuilder, X509Ref, X509ReqBuilder, X509,
};
use openssl::{asn1, bn, ec, hash, nid, pkey, rand, sign};
use serde_cbor::value::Value;
use std::collections::BTreeMap;
use std::collections::HashMap;
use std::iter;
use openssl::sha;
use base64urlsafedata::Base64UrlSafeData;
use webauthn_rs_proto::{
AllowCredentials, AuthenticationExtensionsClientOutputs, AuthenticatorAssertionResponseRaw,
AuthenticatorAttachment, AuthenticatorAttestationResponseRaw, CollectedClientData,
PublicKeyCredential, PublicKeyCredentialCreationOptions, PublicKeyCredentialRequestOptions,
RegisterPublicKeyCredential, RegistrationExtensionsClientOutputs, UserVerificationPolicy,
};
fn compute_sha256(data: &[u8]) -> [u8; 32] {
let mut hasher = sha::Sha256::new();
hasher.update(data);
hasher.finish()
}
pub const AAGUID: [u8; 16] = [
15, 185, 188, 188, 160, 212, 64, 66, 187, 176, 85, 155, 193, 99, 30, 40,
];
pub struct SoftToken {
_ca_key: pkey::PKey<pkey::Private>,
_ca_cert: X509,
intermediate_key: pkey::PKey<pkey::Private>,
intermediate_cert: X509,
tokens: HashMap<Vec<u8>, Vec<u8>>,
counter: u32,
}
fn build_ca() -> Result<(pkey::PKey<pkey::Private>, X509), openssl::error::ErrorStack> {
let ecgroup = ec::EcGroup::from_curve_name(nid::Nid::X9_62_PRIME256V1)?;
let eckey = ec::EcKey::generate(&ecgroup)?;
let ca_key = pkey::PKey::from_ec_key(eckey)?;
let mut x509_name = X509NameBuilder::new()?;
x509_name.append_entry_by_text("C", "AU")?;
x509_name.append_entry_by_text("ST", "QLD")?;
x509_name.append_entry_by_text("O", "Webauthn Authenticator RS")?;
x509_name.append_entry_by_text("CN", "Dynamic Softtoken CA")?;
let x509_name = x509_name.build();
let mut cert_builder = X509::builder()?;
cert_builder.set_version(2)?;
let serial_number = bn::BigNum::from_u32(1).and_then(|serial| serial.to_asn1_integer())?;
cert_builder.set_serial_number(&serial_number)?;
cert_builder.set_subject_name(&x509_name)?;
cert_builder.set_issuer_name(&x509_name)?;
let not_before = asn1::Asn1Time::days_from_now(0)?;
cert_builder.set_not_before(¬_before)?;
let not_after = asn1::Asn1Time::days_from_now(1)?;
cert_builder.set_not_after(¬_after)?;
cert_builder.append_extension(BasicConstraints::new().critical().ca().build()?)?;
cert_builder.append_extension(
KeyUsage::new()
.critical()
.key_cert_sign()
.crl_sign()
.build()?,
)?;
let subject_key_identifier =
SubjectKeyIdentifier::new().build(&cert_builder.x509v3_context(None, None))?;
cert_builder.append_extension(subject_key_identifier)?;
cert_builder.set_pubkey(&ca_key)?;
cert_builder.sign(&ca_key, hash::MessageDigest::sha256())?;
let ca_cert = cert_builder.build();
Ok((ca_key, ca_cert))
}
fn build_intermediate(
ca_key: &pkey::PKeyRef<pkey::Private>,
ca_cert: &X509Ref,
) -> Result<(pkey::PKey<pkey::Private>, X509), openssl::error::ErrorStack> {
let ecgroup = ec::EcGroup::from_curve_name(nid::Nid::X9_62_PRIME256V1)?;
let eckey = ec::EcKey::generate(&ecgroup)?;
let int_key = pkey::PKey::from_ec_key(eckey)?;
let mut req_builder = X509ReqBuilder::new()?;
req_builder.set_pubkey(&int_key)?;
let mut x509_name = X509NameBuilder::new()?;
x509_name.append_entry_by_text("C", "AU")?;
x509_name.append_entry_by_text("ST", "QLD")?;
x509_name.append_entry_by_text("O", "Webauthn Authenticator RS")?;
x509_name.append_entry_by_text("CN", "Dynamic Softtoken Leaf Certificate")?;
x509_name.append_entry_by_text("OU", "Authenticator Attestation")?;
let x509_name = x509_name.build();
req_builder.set_subject_name(&x509_name)?;
req_builder.sign(&int_key, hash::MessageDigest::sha256())?;
let req = req_builder.build();
let mut cert_builder = X509::builder()?;
cert_builder.set_version(2)?;
let serial_number = bn::BigNum::from_u32(2).and_then(|serial| serial.to_asn1_integer())?;
cert_builder.set_pubkey(&int_key)?;
cert_builder.set_serial_number(&serial_number)?;
cert_builder.set_subject_name(req.subject_name())?;
cert_builder.set_issuer_name(ca_cert.subject_name())?;
let not_before = asn1::Asn1Time::days_from_now(0)?;
cert_builder.set_not_before(¬_before)?;
let not_after = asn1::Asn1Time::days_from_now(1)?;
cert_builder.set_not_after(¬_after)?;
cert_builder.append_extension(BasicConstraints::new().build()?)?;
cert_builder.append_extension(
KeyUsage::new()
.critical()
.non_repudiation()
.digital_signature()
.key_encipherment()
.build()?,
)?;
let subject_key_identifier =
SubjectKeyIdentifier::new().build(&cert_builder.x509v3_context(Some(ca_cert), None))?;
cert_builder.append_extension(subject_key_identifier)?;
let auth_key_identifier = AuthorityKeyIdentifier::new()
.keyid(false)
.issuer(false)
.build(&cert_builder.x509v3_context(Some(ca_cert), None))?;
cert_builder.append_extension(auth_key_identifier)?;
cert_builder.sign(ca_key, hash::MessageDigest::sha256())?;
let int_cert = cert_builder.build();
Ok((int_key, int_cert))
}
impl SoftToken {
pub fn new() -> Result<(Self, X509), WebauthnCError> {
let (ca_key, ca_cert) = build_ca().map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let ca = ca_cert.clone();
let (intermediate_key, intermediate_cert) =
build_intermediate(&ca_key, &ca_cert).map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
Ok((
SoftToken {
_ca_key: ca_key,
_ca_cert: ca_cert,
intermediate_key,
intermediate_cert,
tokens: HashMap::new(),
counter: 0,
},
ca,
))
}
}
#[derive(Debug)]
pub struct U2FSignData {
key_handle: Vec<u8>,
counter: u32,
signature: Vec<u8>,
flags: u8,
}
impl AuthenticatorBackend for SoftToken {
fn perform_register(
&mut self,
origin: Url,
options: PublicKeyCredentialCreationOptions,
_timeout_ms: u32,
) -> Result<RegisterPublicKeyCredential, WebauthnCError> {
let cred_types_and_pub_key_algs: Vec<_> = options
.pub_key_cred_params
.iter()
.filter_map(|param| {
if param.type_ != "public-key" {
None
} else {
Some((param.type_.clone(), param.alg))
}
})
.collect();
trace!("Found -> {:x?}", cred_types_and_pub_key_algs);
if cred_types_and_pub_key_algs.is_empty() {
return Err(WebauthnCError::NotSupported);
}
let collected_client_data = CollectedClientData {
type_: "webauthn.create".to_string(),
challenge: options.challenge.clone(),
origin,
token_binding: None,
cross_origin: None,
unknown_keys: BTreeMap::new(),
};
let client_data_json =
serde_json::to_string(&collected_client_data).map_err(|_| WebauthnCError::Json)?;
let client_data_json_hash = compute_sha256(client_data_json.as_bytes()).to_vec();
trace!("client_data_json -> {:x?}", client_data_json);
trace!("client_data_json_hash -> {:x?}", client_data_json_hash);
let (platform_attached, resident_key, _user_verification) =
match &options.authenticator_selection {
Some(auth_sel) => {
let pa = auth_sel
.authenticator_attachment
.as_ref()
.map(|v| v == &AuthenticatorAttachment::Platform)
.unwrap_or(false);
let uv = auth_sel.user_verification == UserVerificationPolicy::Required;
(pa, auth_sel.require_resident_key, uv)
}
None => (false, false, false),
};
let rp_id_hash = compute_sha256(options.rp.id.as_bytes()).to_vec();
if platform_attached {
error!("Platform Attachement not supported by softtoken");
return Err(WebauthnCError::NotSupported);
}
if resident_key {
error!("Resident Keys not supported by softtoken");
return Err(WebauthnCError::NotSupported);
}
let mut key_handle: Vec<u8> = Vec::with_capacity(32);
key_handle.resize_with(32, Default::default);
rand::rand_bytes(key_handle.as_mut_slice()).map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let ecgroup = ec::EcGroup::from_curve_name(nid::Nid::X9_62_PRIME256V1).map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let eckey = ec::EcKey::generate(&ecgroup).map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let ecpub_points = eckey.public_key();
let mut bnctx = bn::BigNumContext::new().map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let mut xbn = bn::BigNum::new().map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let mut ybn = bn::BigNum::new().map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
ecpub_points
.affine_coordinates_gfp(&ecgroup, &mut xbn, &mut ybn, &mut bnctx)
.map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let mut public_key_x = Vec::with_capacity(32);
let mut public_key_y = Vec::with_capacity(32);
public_key_x.resize(32, 0);
public_key_y.resize(32, 0);
let xbnv = xbn.to_vec();
let ybnv = ybn.to_vec();
let (_pad, x_fill) = public_key_x.split_at_mut(32 - xbnv.len());
x_fill.copy_from_slice(&xbnv);
let (_pad, y_fill) = public_key_y.split_at_mut(32 - ybnv.len());
y_fill.copy_from_slice(&ybnv);
let ecpriv_der = eckey.private_key_to_der().map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let mut map = BTreeMap::new();
map.insert(Value::Integer(1), Value::Integer(2));
map.insert(Value::Integer(3), Value::Integer(-7));
map.insert(Value::Integer(-1), Value::Integer(1));
map.insert(Value::Integer(-2), Value::Bytes(public_key_x));
map.insert(Value::Integer(-3), Value::Bytes(public_key_y));
let pk_cbor = Value::Map(map);
let pk_cbor_bytes = serde_cbor::to_vec(&pk_cbor).map_err(|e| {
error!("PK CBOR -> {:x?}", e);
WebauthnCError::Cbor
})?;
let key_handle_len: u16 = u16::try_from(key_handle.len()).map_err(|e| {
error!("CBOR kh len is not u16 -> {:x?}", e);
WebauthnCError::Cbor
})?;
let aaguid: [u8; 16] = AAGUID;
let khlen_be_bytes = key_handle_len.to_be_bytes();
let acd_iter = aaguid
.iter()
.chain(khlen_be_bytes.iter())
.copied()
.chain(key_handle.iter().copied())
.chain(pk_cbor_bytes.iter().copied());
let flags = 0b01000101;
let authdata: Vec<u8> = rp_id_hash
.iter()
.copied()
.chain(iter::once(flags))
.chain(
iter::repeat(0).take(4),
)
.chain(acd_iter)
.collect();
let verification_data: Vec<u8> = authdata
.iter()
.chain(client_data_json_hash.iter())
.copied()
.collect();
let mut signer = sign::Signer::new(hash::MessageDigest::sha256(), &self.intermediate_key)
.map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let signature = signer
.update(verification_data.as_slice())
.and_then(|_| signer.sign_to_vec())
.map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let mut attest_map = BTreeMap::new();
attest_map.insert(
Value::Text("fmt".to_string()),
Value::Text("packed".to_string()),
);
let mut att_stmt_map = BTreeMap::new();
att_stmt_map.insert(Value::Text("alg".to_string()), Value::Integer(-7));
let x509_bytes = Value::Bytes(self.intermediate_cert.to_der().map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?);
att_stmt_map.insert(
Value::Text("x5c".to_string()),
Value::Array(vec![x509_bytes]),
);
att_stmt_map.insert(Value::Text("sig".to_string()), Value::Bytes(signature));
attest_map.insert(Value::Text("attStmt".to_string()), Value::Map(att_stmt_map));
attest_map.insert(Value::Text("authData".to_string()), Value::Bytes(authdata));
let ao = Value::Map(attest_map);
let ao_bytes = serde_cbor::to_vec(&ao).map_err(|e| {
error!("AO CBOR -> {:x?}", e);
WebauthnCError::Cbor
})?;
self.tokens.insert(key_handle.clone(), ecpriv_der);
let id: String = Base64UrlSafeData(key_handle.clone()).to_string();
let rego = RegisterPublicKeyCredential {
id,
raw_id: Base64UrlSafeData(key_handle),
response: AuthenticatorAttestationResponseRaw {
attestation_object: Base64UrlSafeData(ao_bytes),
client_data_json: Base64UrlSafeData(client_data_json.as_bytes().to_vec()),
transports: None,
},
type_: "public-key".to_string(),
extensions: RegistrationExtensionsClientOutputs::default(),
};
trace!("rego -> {:x?}", rego);
Ok(rego)
}
fn perform_auth(
&mut self,
origin: Url,
options: PublicKeyCredentialRequestOptions,
timeout_ms: u32,
) -> Result<PublicKeyCredential, WebauthnCError> {
let collected_client_data = CollectedClientData {
type_: "webauthn.get".to_string(),
challenge: options.challenge.clone(),
origin,
token_binding: None,
cross_origin: None,
unknown_keys: BTreeMap::new(),
};
let client_data_json =
serde_json::to_string(&collected_client_data).map_err(|_| WebauthnCError::Json)?;
let client_data_json_hash = compute_sha256(client_data_json.as_bytes()).to_vec();
trace!("client_data_json -> {:x?}", client_data_json);
trace!("client_data_json_hash -> {:x?}", client_data_json_hash);
let user_verification = options.user_verification == UserVerificationPolicy::Required;
let rp_id_hash = compute_sha256(options.rp_id.as_bytes()).to_vec();
let u2sd = self.perform_u2f_sign(
rp_id_hash.clone(),
client_data_json_hash,
timeout_ms.into(),
options.allow_credentials.as_slice(),
user_verification,
)?;
trace!("u2sd -> {:x?}", u2sd);
let authdata: Vec<u8> = rp_id_hash
.iter()
.copied()
.chain(iter::once(u2sd.flags))
.chain(
u2sd.counter.to_be_bytes().iter().copied(),
)
.collect();
let id: String = Base64UrlSafeData(u2sd.key_handle.clone()).to_string();
Ok(PublicKeyCredential {
id,
raw_id: Base64UrlSafeData(u2sd.key_handle.clone()),
response: AuthenticatorAssertionResponseRaw {
authenticator_data: Base64UrlSafeData(authdata),
client_data_json: Base64UrlSafeData(client_data_json.as_bytes().to_vec()),
signature: Base64UrlSafeData(u2sd.signature),
user_handle: None,
},
type_: "public-key".to_string(),
extensions: AuthenticationExtensionsClientOutputs::default(),
})
}
}
pub trait U2FToken {
fn perform_u2f_sign(
&mut self,
app_bytes: Vec<u8>,
chal_bytes: Vec<u8>,
timeout_ms: u64,
allowed_credentials: &[AllowCredentials],
user_verification: bool,
) -> Result<U2FSignData, WebauthnCError>;
}
impl U2FToken for SoftToken {
fn perform_u2f_sign(
&mut self,
app_bytes: Vec<u8>,
chal_bytes: Vec<u8>,
_timeout_ms: u64,
allowed_credentials: &[AllowCredentials],
user_verification: bool,
) -> Result<U2FSignData, WebauthnCError> {
if user_verification {
error!("User Verification not supported by softtoken");
return Err(WebauthnCError::NotSupported);
}
let cred = allowed_credentials
.iter()
.filter_map(|ac| {
self.tokens
.get(&ac.id.0)
.map(|v| (ac.id.0.clone(), v.clone()))
})
.take(1)
.next();
let (key_handle, pkder) = if let Some((key_handle, pkder)) = cred {
(key_handle, pkder)
} else {
error!("Credential ID not found");
return Err(WebauthnCError::Internal);
};
debug!("Using -> {:?}", key_handle);
let eckey = ec::EcKey::private_key_from_der(pkder.as_slice()).map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let pkey = pkey::PKey::from_ec_key(eckey).map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
let mut signer = sign::Signer::new(hash::MessageDigest::sha256(), &pkey).map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
self.counter += 1;
let counter = self.counter;
let flags = 0b00000101;
let verification_data: Vec<u8> = app_bytes
.iter()
.chain(iter::once(&flags))
.chain(counter.to_be_bytes().iter())
.chain(chal_bytes.iter())
.copied()
.collect();
let signature = signer
.update(verification_data.as_slice())
.and_then(|_| signer.sign_to_vec())
.map_err(|e| {
error!("OpenSSL Error -> {:?}", e);
WebauthnCError::OpenSSL
})?;
Ok(U2FSignData {
key_handle,
counter,
signature,
flags,
})
}
}
#[cfg(test)]
mod tests {
use super::SoftToken;
use crate::prelude::{Url, WebauthnAuthenticator};
use webauthn_rs_core::proto::{AttestationCa, AttestationCaList};
use webauthn_rs_core::WebauthnCore as Webauthn;
use webauthn_rs_proto::{
AttestationConveyancePreference, COSEAlgorithm, UserVerificationPolicy,
};
#[test]
fn webauthn_authenticator_wan_softtoken_direct_attest() {
let _ = tracing_subscriber::fmt::try_init();
let wan = Webauthn::new_unsafe_experts_only(
"https://localhost:8080/auth",
"localhost",
vec![url::Url::parse("https://localhost:8080").unwrap()],
None,
None,
None,
);
let (soft_token, ca_root) = SoftToken::new().unwrap();
let mut wa = WebauthnAuthenticator::new(soft_token);
let unique_id = [
158, 170, 228, 89, 68, 28, 73, 194, 134, 19, 227, 153, 107, 220, 150, 238,
];
let name = "william";
let (chal, reg_state) = wan
.generate_challenge_register_options(
&unique_id,
name,
name,
AttestationConveyancePreference::Direct,
Some(UserVerificationPolicy::Preferred),
None,
None,
COSEAlgorithm::secure_algs(),
false,
None,
false,
)
.unwrap();
info!("🍿 challenge -> {:x?}", chal);
let r = wa
.do_registration(Url::parse("https://localhost:8080").unwrap(), chal)
.map_err(|e| {
error!("Error -> {:x?}", e);
e
})
.expect("Failed to register");
let cred = wan
.register_credential(
&r,
®_state,
Some(&AttestationCaList {
cas: vec![AttestationCa { ca: ca_root }],
}),
)
.unwrap();
info!("Credential -> {:?}", cred);
let (chal, auth_state) = wan
.generate_challenge_authenticate(vec![cred], None)
.unwrap();
let r = wa
.do_authentication(Url::parse("https://localhost:8080").unwrap(), chal)
.map_err(|e| {
error!("Error -> {:x?}", e);
e
})
.expect("Failed to auth");
let auth_res = wan
.authenticate_credential(&r, &auth_state)
.expect("webauth authentication denied");
info!("auth_res -> {:x?}", auth_res);
}
}