1
//----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation. All rights reserved.
3 //----------------------------------------------------------------
8 namespace Microsoft
.Samples
.ExtendedProtectionPolicy
10 public class GetKey
: IGetKey
12 public string GetKeyFromPasscode(string passCode
)
14 // Gets a key from the input passcode string
15 return Convert
.ToBase64String(Encoding
.UTF8
.GetBytes(passCode
));