()
| 8 | return subtle; |
| 9 | } |
| 10 | randomUUID() { |
| 11 | if (__ANDROID__) { |
| 12 | return (<any>org).nativescript.winter_tc.Crypto.randomUUID(); |
| 13 | } |
| 14 | if (__IOS__) { |
| 15 | return NSCCrypto.randomUUID(); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | getRandomValues(typedArray: Exclude<TypedArray, Float32Array | Float64Array>) { |
| 20 | if (__ANDROID__) { |