| 5 | const validPasswordTypes = ['PasswordDigest', 'PasswordText']; |
| 6 | |
| 7 | export interface IWSSecurityOptions { |
| 8 | passwordType?: string; |
| 9 | hasTimeStamp?: boolean; |
| 10 | hasNonce?: boolean; |
| 11 | hasTokenCreated?: boolean; |
| 12 | actor?: string; |
| 13 | mustUnderstand?; |
| 14 | envelopeKey?: string; |
| 15 | appendElement?: string; |
| 16 | } |
| 17 | |
| 18 | export class WSSecurity implements ISecurity { |
| 19 | private _username: string; |
nothing calls this directly
no outgoing calls
no test coverage detected